/*-- -------------------------- -->
<---      Open House Intro      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #open-house-intro {
        padding: var(--sectionPadding);
        background: var(--white);
    }

    #open-house-intro .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 1rem;
    }

    #open-house-intro .cs-inner {
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 5vw, 3.5rem);
    }

    #open-house-intro .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    #open-house-intro .cs-right {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    #open-house-intro .cs-stat {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        background: var(--white);
        border: 0.0625rem solid rgba(0, 0, 0, 0.08);
        border-radius: 0.75rem;
        padding: 1.25rem;
    }

    #open-house-intro .cs-stat-icon {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.5rem;
        background: rgba(212, 168, 67, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--signingGold);
    }

    #open-house-intro .cs-stat-icon svg {
        width: 1rem;
        height: 1rem;
        stroke: var(--signingGold);
    }

    #open-house-intro .cs-stat-body {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    #open-house-intro .cs-stat-label {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--navy);
        margin: 0;
    }

    #open-house-intro .cs-stat-sub {
        font-size: 0.8125rem;
        font-weight: 300;
        line-height: 1.6;
        color: var(--charcoal);
        margin: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #open-house-intro .cs-container {
        padding: 0 2.5rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #open-house-intro {
        padding: 2rem clamp(2rem, 4vw, 3.5rem) clamp(3rem, 5vw, 4.5rem);
    }

    #open-house-intro .cs-container {
        max-width: 100%;
        padding: 0;
    }

    #open-house-intro .cs-inner {
        flex-direction: row;
        align-items: center;
    }

    #open-house-intro .cs-left {
        flex: 1;
    }

    #open-house-intro .cs-right {
        flex: 1;
    }
}

/*-- -------------------------- -->
<---      Open House Dates      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #open-house-dates {
        padding: var(--sectionPadding);
        background: #f7f7f6;
    }

    #open-house-dates .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 4vw, 3rem);
    }

    #open-house-dates .cs-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    #open-house-dates .cs-cards {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    #open-house-dates .cs-card {
        background: var(--white);
        border: 0.0625rem solid rgba(0, 0, 0, 0.08);
        border-radius: 0.75rem;
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }

    #open-house-dates .cs-date-badge {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    #open-house-dates .cs-date-num {
        font-size: 2.25rem;
        font-weight: 900;
        color: var(--navy);
        line-height: 1;
    }

    #open-house-dates .cs-date-month-wrap {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }

    #open-house-dates .cs-date-month {
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--signingGold);
    }

    #open-house-dates .cs-date-year {
        font-size: 0.6875rem;
        color: var(--charcoal);
    }

    #open-house-dates .cs-divider {
        height: 0.0625rem;
        background: rgba(0, 0, 0, 0.07);
    }

    #open-house-dates .cs-meta {
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    #open-house-dates .cs-meta-row {
        display: flex;
        align-items: center;
        gap: 0.4375rem;
        font-size: 0.8125rem;
        font-weight: 300;
        color: var(--charcoal);
    }

    #open-house-dates .cs-meta-row svg {
        width: 0.8125rem;
        height: 0.8125rem;
        stroke: var(--signingGold);
        flex-shrink: 0;
    }

    #open-house-dates .cs-button-solid {
        align-self: flex-start;
        margin-top: 0.25rem;
    }
}

/* Tablet - 640px */
@media only screen and (min-width: 40rem) {
    #open-house-dates .cs-container {
        padding: 0 2.5rem;
    }

    #open-house-dates .cs-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #open-house-dates {
        padding: 2rem clamp(2rem, 4vw, 3.5rem) clamp(3rem, 5vw, 4.5rem);
    }

    #open-house-dates .cs-container {
        max-width: 100%;
        padding: 0;
    }

    #open-house-dates .cs-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*-- -------------------------- -->
<---    Open House Location     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #open-house-location {
        padding: var(--sectionPadding);
        background: var(--white);
    }

    #open-house-location .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 1rem;
    }

    #open-house-location .cs-body {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    #open-house-location .cs-left {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #open-house-location .cs-cards {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    #open-house-location .cs-card {
        background: #f7f7f6;
        border-radius: 0.625rem;
        padding: 1.125rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.3125rem;
    }

    #open-house-location .cs-card-label {
        font-size: 0.625rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--signingGold);
    }

    #open-house-location .cs-card-value {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.6;
        color: var(--navy);
    }

    #open-house-location .cs-card-value a {
        color: var(--brooklynBlue);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    #open-house-location .cs-card-value a:hover {
        color: var(--navy);
    }

    #open-house-location .cs-map {
        width: 100%;
        min-height: 17.5rem;
        border-radius: 0.625rem;
        overflow: hidden;
        border: 0.0625rem solid rgba(0, 0, 0, 0.08);
        background: #e4e4e2;
    }

    #open-house-location .cs-map iframe {
        width: 100%;
        height: 100%;
        min-height: 17.5rem;
        display: block;
        border: none;
    }
}

/* Tablet - 640px */
@media only screen and (min-width: 40rem) {
    #open-house-location .cs-container {
        padding: 0 2.5rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #open-house-location {
        padding: 2rem clamp(2rem, 4vw, 3.5rem) clamp(3rem, 5vw, 4.5rem);
    }

    #open-house-location .cs-container {
        max-width: 100%;
        padding: 0;
    }

    #open-house-location .cs-body {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 1.5rem;
        align-items: stretch;
    }

    #open-house-location .cs-left {
        min-height: 0;
    }

    #open-house-location .cs-map {
        min-height: unset;
        height: 100%;
    }

    #open-house-location .cs-map iframe {
        min-height: unset;
        height: 100%;
    }
}