/*
 * [charter_intro] shortcode — Figma "Frame 211".
 * 2-column layout: cream text card + rounded image card.
 */

.charter-intro {
    padding: 120px 100px;
}

.charter-intro__container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.charter-intro__card {
    flex: 1 1 0;
    min-width: 0;
    border-radius: 32px;
    box-sizing: border-box;
}

.charter-intro__card--text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 32px;
    background: #F6F4EE;
    min-height: 490px;
}

.charter-intro__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 0 24px;
}

.charter-intro__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.charter-intro__suptitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-transform: uppercase;
    color: #B83440;
}

/* Compound selector bumps specificity to (0,2,0) so it beats the global
   `.wws-custom-style h2` (0,1,1) rule in custom.css that would otherwise
   force this title down to 36px. */
.charter-intro .charter-intro__title {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 130%;
    color: #1E1F2E;
    text-transform: none;
}

.charter-intro__description,
.charter-intro__description p {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1E1F2E;
}

.charter-intro__description p {
    margin: 0 0 16px;
}

.charter-intro__description p:last-child {
    margin-bottom: 0;
}

.charter-intro__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.charter-intro__call {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.charter-intro__call-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-transform: capitalize;
    color: #1E1F2E;
}

/* Compound selector bumps specificity to (0,2,0) so it beats the global
   `a[href^="tel"] { font-size: inherit; color: inherit }` rule in style.css
   (specificity 0,1,1) that otherwise faded this to 14px / gray. */
.charter-intro .charter-intro__call-phone,
.charter-intro .charter-intro__call-phone:link,
.charter-intro .charter-intro__call-phone:visited {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-transform: uppercase;
    color: #B83440;
    text-decoration: none;
    transition: color .2s ease;
}

.charter-intro .charter-intro__call-phone:hover,
.charter-intro .charter-intro__call-phone:focus {
    color: #1E1F2E;
}

.charter-intro__cta {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: #D7C09B;
    border-radius: 64px;
    color: #1E1F2E;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.charter-intro__cta:hover {
    background: #1E1F2E;
    color: #D7C09B;
}

.charter-intro__cta-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.charter-intro__cta-arrow {
    width: 16px;
    height: 14px;
    flex: none;
}

.charter-intro__card--image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 490px;
}

/* Responsive */
@media (max-width: 1199px) {
    .charter-intro {
        padding: 80px 40px;
    }
    .charter-intro .charter-intro__title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .charter-intro__container {
        flex-direction: column-reverse;
    }
    .charter-intro__card {
        width: 100%;
    }
    .charter-intro__card--image {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .charter-intro {
        padding: 56px 16px;
    }
    .charter-intro__card--text {
        padding: 24px;
        min-height: 0;
    }
    .charter-intro .charter-intro__title {
        font-size: 32px;
    }
    .charter-intro__footer {
        gap: 16px;
    }
    .charter-intro__cta {
        width: 100%;
        justify-content: center;
    }
}
