/* ========================================================
   MEETINGS SECTION
   ======================================================== */

.meetings-section {
    padding: 60px 40px;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.meetings-section .container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.meetings-section .section-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.meeting-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Card hover effect */
.meeting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(248, 186, 0, 0.15);
    border-color: #F8BA0099;
}

/* Decorative top bar for each card */
.meeting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #FDB913;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.meeting-card:hover::before {
    transform: scaleX(1);
}

/* Different accent colors for each card type */
.meeting-card.virtual::before {
    background: #FDB913;
}

.meeting-card.inperson::before {
    background: #F8BA00;
}

.meeting-card.clubhouse::before {
    background: #FDB913;
}

.meeting-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meeting-icon svg {
    width: 60px;
    height: 60px;
    stroke: #FDB913;
    transition: all 0.3s ease;
}

.meeting-card:hover .meeting-icon svg {
    stroke: #F8BA00;
    transform: scale(1.1);
}

.meeting-title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.meeting-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #FDB913;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.meeting-time {
    background: #f8f8f8;
    padding: 15px 10px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.day {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.frequency {
    font-size: 14px;
    color: #FDB913;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meeting-detail {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 25px 0;
}

.meeting-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(253, 185, 19, 0.1);
    color: #FDB913;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.meeting-card:hover .meeting-badge {
    background: #FDB913;
    color: white;
}

/* ========================================================
   RESPONSIVE BREAKPOINTS
   ======================================================== */

/* Extra Large Desktops */
@media (min-width: 1580px) {
    .meetings-section {
        padding: 80px 3.5rem;
    }

    .meetings-section .section-title {
        font-size: 3.5rem;
        margin-bottom: 60px;
    }

    .meeting-card {
        padding: 50px 35px;
    }

    .meeting-title {
        font-size: 28px;
    }

    .day {
        font-size: 22px;
    }
}

/* Large Desktops */
@media (max-width: 1400px) {
    .meetings-section {
        padding: 70px 3rem;
    }

    .meetings-section .section-title {
        font-size: 3rem;
    }
}

/* Medium Desktops */
@media (max-width: 1200px) {
    .meetings-section {
        padding: 60px 2.5rem;
    }

    .meetings-section .section-title {
        font-size: 2.8rem;
    }

    .meetings-grid {
        gap: 25px;
    }

    .meeting-title {
        font-size: 24px;
    }

    .day {
        font-size: 18px;
    }
}

/* Tablets - 3 cards become 2 + 1 */
@media (max-width: 992px) {
    .meetings-section {
        padding: 50px 2rem;
    }

    .meetings-section .section-title {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .meetings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Last card spans full width on tablet */
    .meeting-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Small Tablets */
@media (max-width: 768px) {
    .meetings-section {
        padding: 40px 1.5rem;
    }

    .meetings-section .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .meeting-card {
        padding: 35px 25px;
    }

    .meeting-title {
        font-size: 22px;
    }

    .day {
        font-size: 18px;
    }

    .frequency {
        font-size: 13px;
    }

    .meeting-detail {
        font-size: 14px;
    }
}

/* Mobile - Stack vertically */
@media (max-width: 640px) {
    .meetings-section {
        padding: 40px 1rem;
    }

    .meetings-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }

    /* Reset last card spanning */
    .meeting-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .meeting-card {
        padding: 35px 25px;
    }

    .meeting-icon svg {
        width: 50px;
        height: 50px;
    }

    .meeting-title {
        font-size: 24px;
    }

    .day {
        font-size: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .meetings-section .section-title {
        font-size: 1.8rem;
    }

    .meeting-card {
        padding: 30px 20px;
    }

    .meeting-title {
        font-size: 22px;
    }

    .day {
        font-size: 18px;
    }

    .meeting-detail {
        font-size: 13px;
    }
}