/* === HOLIDAY SHOWCASE === */
.holiday-showcase {
    /* Uses standardized spacing system */
}

/* Header uses standardized system */

/* === HOLIDAY GRID === */
.holiday-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 968px) {
    .holiday-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .holiday-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* === HOLIDAY CARDS === */
.holiday-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.15s ease;
    position: relative;
}

.holiday-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.holiday-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.holiday-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.holiday-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease;
}

.holiday-card:hover .holiday-image img {
    transform: scale(1.02);
}

.holiday-content {
    padding: 32px 24px;
}

.holiday-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.holiday-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.holiday-cta {
    color: #6366f1;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.15s ease;
}

.holiday-card:hover .holiday-cta {
    color: #4338ca;
}

/* === CTA === */
.holiday-cta-section {
    text-align: center;
}
