.eh-a4291648-wrapper {
    width: 100%;
    padding: 40px 0;
}
.eh-a4291648-headline {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.eh-a4291648-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.eh-a4291648-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.eh-a4291648-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.eh-a4291648-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.eh-a4291648-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.eh-a4291648-card:hover .eh-a4291648-img {
    transform: scale(1.05);
}
.eh-a4291648-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.eh-a4291648-event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #333;
}
.eh-a4291648-event-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}
.eh-a4291648-action {
    text-align: center;
}
.eh-a4291648-btn {
    display: inline-block;
    background-color: #FF5E10;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.eh-a4291648-btn:hover {
    background-color: #e5540e;
    color: #ffffff;
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .eh-a4291648-grid {
        grid-template-columns: 1fr;
    }
}
