/* ============================================================
   CALENDAR PAGE STYLES
   ============================================================ */

.calendar-section {
    background-color: #f2efe9;
    padding: 50px 8%;
}

.calendar-heading {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    margin: 10px 0 40px;
}

/* Card wrapper around the embedded Google Calendar iframe — same gold
   accent bar + white card look used by the founder/advisor cards. */
.calendar-embed-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    overflow: hidden;
}

.calendar-embed-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #B8922A;
}

.calendar-embed {
    display: block;
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 700px) {
    .calendar-embed-wrapper {
        padding: 16px;
    }

    .calendar-embed {
        height: 500px;
    }
}

@media (max-width: 450px) {
    .calendar-embed {
        height: 420px;
    }
}

.calendar-list {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.calendar-item {
    display: flex;
    gap: 30px;
    border-top: 1px solid #d8d3c8;
    padding: 30px 0;
}

.calendar-list .calendar-item:last-child {
    border-bottom: 1px solid #d8d3c8;
}

/* Fixed-width gold date badge, same size on every item */
.calendar-date-block {
    flex: 0 0 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-sizing: border-box;
}

.calendar-month {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #B8922A;
}

.calendar-day {
    margin: 2px 0 0;
    font-size: 28px;
    font-weight: bold;
    color: #f0ede8;
}

.calendar-item-details {
    flex: 1;
}

.calendar-item-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 8px;
}

.calendar-item-meta {
    font-size: 14px;
    font-weight: bold;
    color: #B8922A;
    font-family: Calibri, sans-serif;
    margin: 0 0 10px;
}

.calendar-item-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: Calibri, sans-serif;
    margin: 0;
}

@media (max-width: 600px) {
    .calendar-item {
        flex-direction: column;
        gap: 16px;
    }

    .calendar-date-block {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
}
