/* =========================================================
   ABOUT - INTRO
   ========================================================= */

.about-intro-section {
    padding: 45px 0 55px;

    color: var(--carpal-navy);
}


/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

.about-intro-title {
    margin: 0 0 12px;

    font-size: 36px;
    font-weight: 300;
    line-height: 1.1;

    letter-spacing: -0.025em;
}

.about-intro-title strong {
    font-weight: 700;
}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.about-intro-text {
    max-width: 540px;
}

.about-intro-text p {
    margin: 0 0 24px;

    font-size: 18px;
    line-height: 1.45;
}

.about-intro-text strong {
    font-weight: 700;
}

.about-intro-text em {
    font-style: italic;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.about-intro-image-wrapper {
    overflow: hidden;

    border-radius: 28px;
}

.about-intro-image {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1.08;

    object-fit: cover;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .about-intro-text {
        max-width: 100%;
    }

    .about-intro-image-wrapper {
        max-width: 600px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .about-intro-section {
        padding: 35px 0 45px;
    }

    .about-intro-title {
        font-size: 30px;
    }

    .about-intro-text p {
        margin-bottom: 20px;

        font-size: 16px;
    }

    .about-intro-image-wrapper {
        border-radius: 22px;
    }

}

/* =========================================================
   ABOUT - OLD DOG / NEW TRICKS
   ========================================================= */

.about-story-section {
    padding: 20px 0 60px;

    color: var(--carpal-navy);
}


/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

.about-story-title {
    margin: 0 0 22px;

    font-size: 32px;
    font-weight: 300;
    line-height: 1.1;

    letter-spacing: -0.025em;
}

.about-story-title strong {
    font-weight: 700;
}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.about-story-text {
    max-width: 1100px;
}

.about-story-text p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.45;
}

.about-story-text a {
    color: var(--carpal-navy);

    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ---------------------------------------------------------
   VIDEOS
   --------------------------------------------------------- */

.about-video-row {
    margin-top: 28px;
}


.about-video-card {
    overflow: hidden;

    border: 2px solid var(--carpal-navy);
    border-radius: 28px;
}


.about-video-card-white {
    background: #fff;
}


.about-video-card-green {
    background: var(--carpal-green);
}


.about-video-card iframe {
    border: 0;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .about-story-section {
        padding-bottom: 45px;
    }

    .about-story-title {
        font-size: 28px;
    }

    .about-story-text p {
        font-size: 15px;
    }

    .about-video-row {
        margin-top: 20px;
    }

    .about-video-card {
        border-radius: 22px;
    }

}