@charset "utf-8";
/* Diamond Draft Weekend | Responsive: Event Details CSS | V1.0 */

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .event-hero,
    .event-layout {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .event-page {
        padding: 110px 20px 80px;
    }
    
    /* ===== HERO ===== */
    .event-hero {
        gap: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    /* NOTE: Places the event flyer on TOP -
    .event-info {
        order: 2;
    }

    .event-flyer {
        order: 1;
    }
    */
    
    .event-info h1 {
        line-height: .9;
        text-align: center;
        margin-bottom: 10px;
    }

    .event-subtitle {
        max-width: 360px;
        margin: 0 auto 28px;
        line-height: 1.15;
        letter-spacing: 2px;
    }
    
    .meta-row p {
        font-size: 14px;
    }

    .event-meta {
        gap: 16px;
        text-align: left;
        margin-bottom: 40px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .event-buttons {
        align-items: center;
        margin-top: -35px;
    }
    
    .event-buttons .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        justify-content: center;
    }
    
    .event-flyer {
        margin-top: 8px;
    }
    
    .event-status {
        position: absolute;
        bottom: 5px;
        right: 5px;
        padding: 12px 20px;
        font-size: 9px;
    }
    
    /* ===== HIGHLIGHTS ===== */
    .event-box,
    .sidebar-box {
        margin-bottom: 20px;
    }
    
    .event-layout {
        gap: 0;
    }

    /* ===== CTA ===== */
    .event-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 22px;
        padding: 28px 20px;
    }

    .cta-left {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .cta-icon img {
        width: 72px;
    }

    .cta-text h4 {
        font-size: 24px;
        line-height: 1.1;
    }

    .cta-text p {
        max-width: 100%;
    }

    .cta-right {
        width: 100%;
    }

    .cta-right .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}