/* Event Showcase Section */
.event-showcase-section {
    width: 100%;
    color: rgb(var(--color-button-secondary-text));
    background: rgb(var(--color-button-secondary-background));
}

.event-showcase-wrapper {
    display: block;
}

.event-showcase-title {
    text-align: center;
    margin: 0 0 40px 0;
    color: currentColor;
}

/* Grid */
.event-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Event Card */
.event-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.event-card-image {
    width: 100%;
    height: 100%;
}

.event-card-image img,
.event-card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 24px;
}

.event-card-title {
    color: rgb(var(--color-button-text));
    margin: 0;
    text-align: center;
}

/* Footer Button */
.event-showcase-footer {
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .event-showcase-title {
        margin-bottom: 24px;
    }

    .event-showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .event-card {
        aspect-ratio: 16 / 12;
        border-radius: 12px;
    }

    .event-card-overlay {
        padding: 48px 16px 16px;
    }

}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .event-showcase-grid {
        gap: 20px;
    }

}

