/* ---------- COLOR THEMES ---------- */


.theme-light {

    /* text */
    --text-summary: white;
    --text-insight: white;
}

.theme-dark {

    /* backgrounds */
    --bg-summary: #202124;
    --bg-CTA: #000000;

    /* text */
    --text-summary: #FDF6EC;
    --text-insight: #333333;

    /* accents */
    --label: rgba(253, 246, 236, 0.7);
}


.theme-redcross {

    /* backgrounds */
    --bg-summary: #873835;
    --bg-insight: #F6F4F2;
    --bg-CTA: #612623;

    /* text */
    --text-summary: #FDF6EC;
    --text-insight: #333333;

    /* accents */
    --label: rgba(253, 246, 236, 0.7);

    /* image */
    --summary-banner: url("/summary/images/projects/redcross/summarybanner.png");
    --summary-banner-size: 42%;
}

.theme-att {

    /* backgrounds */
    --bg-summary: #2C92C1;
    --bg-insight: #EEF6FA;
    --bg-CTA: #1B5C78;

    /* text */
    --text-summary: #ECF5FD;
    --text-insight: #333333;

    /* accents */
    --label: rgba(253, 246, 236, 0.7);

    /* image */
    --summary-banner: url("/summary/images/projects/att/summarybanner.png");
    --summary-banner-size: 48%;
}

.theme-mind {

    /* backgrounds */
    --bg-summary: #236987;
    --bg-insight: #EDF4F7;
    --bg-CTA: #17475C;

    /* text */
    --text-summary: #F7F7FF;
    --text-insight: #333333;

    /* accents */
    --label: rgba(247, 247, 255, 0.7);

    /* image */
    --summary-banner: url("/summary/images/projects/mind/summarybanner.png");
    --summary-banner-size: 42%;
}

.theme-botw {

    /* backgrounds */
    --bg-summary: #77A592;
    --bg-insight: #F8FFFB;
    --bg-CTA: #3F5F53;

    /* text */
    --text-summary: #FAFCFB;
    --text-insight: #333333;

    /* accents */
    --label: rgba(250, 252, 251, 0.72);

    /* image */
    --summary-banner: url("/summary/images/projects/botw/summarybanner.png");
    --summary-banner-size: 50%;
}

.theme-disney {

    /* backgrounds */
    --bg-summary: #16456f;
    --bg-insight: #f5f9fc;
    --bg-CTA: #0D2F4D;

    /* text */
    --text-summary: #fafcfb;
    --text-insight: #333333;

    /* accents */
    --label: rgba(250, 252, 251, 0.72);

    /* image */
    --summary-banner: url("/summary/images/projects/disney/summarybanner.png");
    --summary-banner-size: 50%;
}


/* ---------- SUUMMARY INTRO ---------- */


.summarySection {
    background-color: var(--bg-summary);
    position: relative;
    overflow: hidden;
    color: var(--text-summary);

    padding: 140px 0px 140px 0px;

    /* IMAGE LAYER */
    background-image: var(--summary-banner);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: var(--summary-banner-size);
    width: 100%;
}



.summaryRow {
    min-height: 100vh;
    align-items: center;
    position: relative;

    margin-left: 0;
    margin-right: 0;
}

.summaryText,
.summaryImageWrapper {
    padding-left: 0;
    padding-right: 0;
}

/* ---------- LEFT TEXT ---------- */

.summaryText {
    position: relative;
    z-index: 2;

    margin-right: -6%;
}

/* ---------- TITLE ---------- */

.summaryTitle {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 1.4;
    color: var(--text-summary);

    max-width: 700px;

    margin-bottom: 12px;

    text-align: left;
}

/* ---------- SUBHEADER ---------- */

.summarySubheader {
    display: flex;
    align-items: center;
    gap: 16px;

    font-size: 18px;
    font-style: italic;
    opacity: 50%;

    text-align: left;
}

.projectLogo {
    width: 100px;
    height: auto;
}

/* ---------- SPACING ---------- */

.summarySpacer {
    height: 80px;
}

.summarySpacerSmall {
    height: 50px;
}

/* ---------- BODY ---------- */

.summaryBody {
    font-size: 18px;
    line-height: 1.5;

    max-width: 480px;

    margin-bottom: 36px;

    text-align: left;
}

/* ---------- PILLS ---------- */

.pillContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.summaryPill {
    border: 2.5px solid rgba(255,255,255,0.7);

    border-radius: 999px;

        padding: 5px 22px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    background: transparent;

    color: var(--text-summary);
}

/* ---------- IMAGE ---------- */

.summaryMobileImage {
    display: none;
}

/* ---------- MOBILE ---------- */

@media (min-width: 768px) and (max-width: 991px) {

    .summarySection {
        padding-top: 30px;
    }

    .summaryContainer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .summaryRow {
        min-height: auto;
    }

    .summaryText {
        margin-right: 0;

        padding: 80px 30px 40px 108px;
    }

    .summaryTitle {
        font-size: 24px;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: 1;
        max-width: 440px;
    }

    .summaryBody {
        font-size: 16px;
        margin-bottom: 28px;
        max-width: 380px;
    }

    .summarySubheader {
        flex-wrap: wrap;
        font-size: 16px;
    }

    .projectLogo {
    width: 80px;
    height: auto;
    }

    .summaryImage {
        width: 120%;
        transform: none;
        margin-top: 40px;
    }

    .summarySpacer {
    height: 40px;
}

.summarySpacerSmall {
    height: 30px;
}

.summaryPill {
    border: 2px solid rgba(255,255,255,0.7);

    padding: 2px 18px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    background: transparent;

    color: #FDF6EC;
}

}

@media (max-width: 767px) {

    .summaryMobileImage {
    display: block;

    width: 100vw;
    max-width: 100vw;

    margin-left: calc(50% - 50vw);

    margin-top: 50px;
}


.summarySection {
        background-image: none;
        padding-top: 30px;
    }

    .summaryContainer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .summaryRow {
        min-height: auto;
    }

    .summaryText {
        margin-right: 0;

        padding: 80px 30px 40px 24px;
    }

    .summaryTitle {
        font-size: 24px;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: 1;
        max-width: 440px;
    }

    .summaryBody {
        font-size: 16px;
        margin-bottom: 28px;
        max-width: 450px;
    }

    .summarySubheader {
        flex-wrap: wrap;
        font-size: 16px;
    }

    .projectLogo {
    width: 80px;
    height: auto;
    }

    .summaryImage {
        width: 120%;
        transform: none;
        margin-top: 40px;
    }

    .summarySpacer {
    height: 40px;
}

.summarySpacerSmall {
    height: 20px;
}

.summaryPill {
    border: 2px solid rgba(255,255,255,0.7);

    padding: 2px 18px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    background: transparent;

    color: #FDF6EC;
}


  }


/* ---------- INSIGHT SECTION ---------- */

.insightSection {
    position: relative;
    overflow: hidden;

    padding: 120px 0;

    color: var(--text-insight);

    background:
    /*    url("/summary/images/grain.png") repeat,   */
        var(--bg-insight);
}

.insightSection--conclusion {
    padding-bottom: 0;
}


.insightContainer {
    padding: 0 120px;
    max-width: 1200px;
}


.insightHeader {
    display: flex;
    color: var(--text-accent);

    gap: 80px;
    align-items: flex-start;
}

.insightLabel {
    flex: 0 0 220px;

    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--bg-summary);
}

.insightHeadline {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 300;

    color: inherit;
}

.insightBody {
    font-size: 18px;
    line-height: 1.6;

    max-width: 900px;

    margin-bottom: 80px;

    color: inherit;
}

.insightImage {
    width: 100vw;
    max-width: 100vw;

    margin-left: calc(50% - 50vw);

    display: block;
}

.insightImageContained {
    width: 100%;
    height: auto;

    display: block;

    margin: 0 auto;
}


.insightContent {
    flex: 1;

    max-width: 900px;
}

.insightSpacerSmall {
    height: 32px;
}



/* ---------- INSIGHT SECTION (MOBILE) ---------- */

@media (max-width: 991px) {

    .insightSection {
        padding: 80px 24px 40px 24px;
    }

    .insightSection--conclusion {
    padding-bottom: 0;
}

    .insightContainer {
        padding: 0 30px;
    }

    .insightHeader {
        flex-direction: column;
        gap: 10px;
    }

    .insightLabel {
        font-size: 20px;
        flex: none;
    }

    .insightHeadline {
        font-size: 20px;
    }

    .insightBody {
        font-size: 16px;
    }

    .insightSpacerSmall {
    height: 12px;
}

}

/* ---------- CTA ---------- */

.extendedSection {

    padding: 10px 0 40px 0;

    color: var(--text-summary);

    background:
        linear-gradient(
            to bottom,
            var(--bg-summary) 20%,
            var(--bg-CTA) 80%
        );

    position: relative;
    overflow: hidden;

    text-align: center;
}

.extendedInner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.extendedEyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    font-style: allcaps;

    opacity: 0.7;

    margin-bottom: 20px;
}

.extendedBody {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;

    max-width: 700px;

    opacity: 0.92;

    margin-bottom: 24px;
}

.homeSection {

    padding: 10px 0 40px 0;

    color: var(--text-summary);

    background:
        linear-gradient(
            to bottom,
            var(--bg-summary) 0%,
            var(--bg-CTA) 80%
        );

    position: relative;
    overflow: hidden;

    text-align: center;
}

.homeFooter {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;

    max-width: 700px;

    opacity: 0.92;

    margin-top: 48px;
}

.navCTA {

    display: inline-block;

    padding-bottom: 8px;

    border-bottom: 2px solid rgba(255,255,255,0.35);

    transition:
        opacity 0.2s ease,
        border-color 0.2s ease;

    cursor: pointer;
}

.extendedCTA {
    display: inline-block;

    text-decoration: underline;
text-underline-offset: 4px;

    transition:
        opacity 0.2s ease,
        border-color 0.2s ease;

    cursor: pointer;
}


.extendedCTA:hover {
    opacity: 0.75;
    border-color: rgba(255,255,255,0.7);
}

.navCTA:hover {
    opacity: 0.75;
    border-color: rgba(255,255,255,0.7);
}

.extendedDivider {
    display: flex;
    align-items: center;
    gap: 16px;

    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px auto;

    margin-bottom: 40px;

    opacity: 0.7;
}

.extendedDivider::before,
.extendedDivider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: rgba(255,255,255,0.2);
}

.extendedDivider span {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================
   TESTIMONIAL GRID
   ========================= */



.testimonialGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}

.testimonialCard {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonialQuote {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-insight);
}

.testimonialMeta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonialAvatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonialName {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-insight);
}

.testimonialTitle {
    font-size: 13px;
    opacity: 0.7;
    color: var(--text-insight);
}

@media (max-width: 991px) {
    .testimonialGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonialQuote {
        font-size: 18px;
        line-height: 1.5;
    }

    .testimonialAvatar {
        width: 52px;
        height: 52px;
    }

    .testimonialCard {
    text-align: left;
    }

    .testimonialMeta {
        gap: 12px;
    }

    .testimonialTitle {
        font-size: 12px;
    }
}

.card--light {
    background-color: rgba(0, 0, 0, .04);
    padding: 24px;
    border-radius: 16px;
}

.grid--light {
    gap: 30px;
}

@media (max-width: 991px) {

.card--light {
    background-color: #f0f0f0;
    padding: 12px;
    border-radius: 16px;
}

.grid--light {
    gap: 20px;
}

}


/* =========================
   ABOUT
   ========================= */

.aboutSection {
    padding: 140px 0;
    background: #1B1B1B;
    color: #E5E5E5;
}

.aboutTitle {
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 80px 0;
    text-align: center;
    color: #E5E5E5;
}

.aboutLayout {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.aboutImage {
    flex: 0 0 320px;
}

.aboutImage img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.aboutText {
    max-width: 760px;
}

.aboutText p {
    font-size: 20px;
    line-height: 1.8;
    margin: 0 0 28px 0;
}

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

@media (max-width: 991px) {

    .aboutSection {
        padding: 80px 0;
    }

    .aboutTitle {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .aboutLayout {
        flex-direction: column;
        gap: 40px;
    }

    .aboutImage {
        flex: none;
        width: 220px;
        margin: 0 auto;
    }

    .aboutText {
        max-width: none;
    }

    .aboutText p {
        font-size: 17px;
        line-height: 1.7;
    }
}




.contentSection {
    padding: 140px 0px 140px 0px;
    color: #E5E5E5;
}

.sectionTitle {
    text-align: center;

    margin: 0 0 80px 0;

    color: inherit;

    font-size: 36px;
    font-weight: 300;
    letter-spacing: 1px;

    color: #E5E5E5;
}


@media (max-width: 991px) {

    .sectionTitle {

    font-size: 22px;
    margin: 0 0 60px 0;
}

.contentSection {
    padding: 60px 0px 60px 0px;
}


}




/* ---------- HOW-I-WORK SECTION ---------- */

.workList {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.workItem {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.workLabel {
    flex: 0 0 220px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--bg-summary);
}

.workDescription {
    flex: 1;

    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;

    max-width: 900px;
}



/* ---------- HOW-I-WORK SECTION (MOBILE) ---------- */

@media (max-width: 991px) {

    .workItem {
        flex-direction: column;
        gap: 12px;
    }

    .workLabel {
        flex: none;
        font-size: 16px;
    }

    .workDescription {
        font-size: 17px;
    }

}

/* =========================
   BACKGROUNDS
   ========================= */

.bgWhite {
    background: #fafafa;
}

.bgDarker {
    background: #1B1B1B;
}

.bgLighter {
    background: #202124;
}



 /*

.sectionTitle {
    color: #E5E5E5;

    font-size: 44px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 1px;

    margin: 0;
}

*/