/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;
    width: 100%;

    background:
        linear-gradient(
            90deg,
            var(--color-white) 0%,
            var(--color-white) 34%,
            var(--color-background-soft) 72%,
            var(--color-white) 100%
        );
}


/* =========================================================
   INNER
========================================================= */

.about-hero__inner {
    position: relative;

    display: grid;
    grid-template-columns: 50% 50%;

    align-items: stretch;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-hero__content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 8px 75px;
}


/* =========================================================
   EYEBROW
========================================================= */

.about-hero__eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--color-primary);

    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);

    letter-spacing: 0.3px;
}


.about-hero__eyebrow-line {
    display: block;

    width: 48px;
    height: 3px;

    background: var(--color-secondary);

    border-radius: var(--radius-pill);
}


/* =========================================================
   TITLE
========================================================= */

.about-hero__title {
    max-width: 610px;

    margin: 0 0 25px;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: var(--font-weight-bold);

    line-height: 1.12;
    letter-spacing: -1.6px;
}


.about-hero__title span {
    color: var(--color-primary);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.about-hero__description {
    max-width: 570px;

    margin: 0;

    color: var(--color-text-light);

    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);

    line-height: 1.7;
}


/* =========================================================
   TRUST POINTS
========================================================= */

.about-hero__trust {
    display: flex;
    align-items: center;

    margin-top: 38px;
}


/* =========================================================
   TRUST ITEM
========================================================= */

.about-hero__trust-item {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-right: 28px;
}


.about-hero__trust-item + .about-hero__trust-item {
    padding-left: 28px;

    border-left: 1px solid var(--color-border-light);
}


/* =========================================================
   TRUST ICON
========================================================= */

.about-hero__trust-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(10, 8, 128, 0.12);

    border-radius: 50%;

    background: var(--color-white);

    color: var(--color-primary);

    box-shadow: 0 5px 18px rgba(10, 8, 128, 0.06);
}


.about-hero__trust-icon svg {
    width: 24px;
    height: 24px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   TRUST CONTENT
========================================================= */

.about-hero__trust-content {
    display: flex;
    flex-direction: column;

    font-family: var(--font-primary);
}


.about-hero__trust-content strong {
    color: var(--color-text);

    font-size: 16px;
    font-weight: var(--font-weight-bold);

    line-height: 1.4;
}


.about-hero__trust-content span {
    color: var(--color-text-light);

    font-size: 16px;
    font-weight: var(--font-weight-medium);

    line-height: 1.4;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.about-hero__visual {
    position: relative;

    min-width: 0;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.about-hero__image-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: visible;
}


/* =========================================================
   IMAGE
========================================================= */

.about-hero__image {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .about-hero__content {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .about-hero__title {
        font-size: 58px;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .about-hero__inner {
        grid-template-columns: 50% 50%;

    }

    .about-hero__content {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .about-hero__title {
        font-size: 43px;

        letter-spacing: -1.2px;
    }

    .about-hero__description {
        font-size: 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-hero__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero__content {
        padding: 45px 8px 55px;
    }

    .about-hero__eyebrow {
        margin-bottom: 18px;

        font-size: 14px;
    }

    .about-hero__eyebrow-line {
        width: 38px;
    }

    .about-hero__title {
        margin-bottom: 18px;

        font-size: 34px;

        letter-spacing: -0.8px;
    }

    .about-hero__description {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-hero__trust {
        margin-top: 25px;
    }

    .about-hero__trust-item {
        gap: 8px;

        padding-right: 15px;
    }

    .about-hero__trust-item + .about-hero__trust-item {
        padding-left: 15px;
    }

    .about-hero__trust-icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;
    }

    .about-hero__trust-icon svg {
        width: 20px;
        height: 20px;
    }

    .about-hero__trust-content strong,
    .about-hero__trust-content span {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-hero {
        background: var(--color-background-soft);
    }

    .about-hero__inner {
        display: flex;
        flex-direction: column;

        min-height: auto;
    }


    /* Content */

    .about-hero__content {
        order: 1;

        padding: 45px 8px 35px;
    }

    .about-hero__eyebrow {
        margin-bottom: 16px;

        font-size: 13px;
    }

    .about-hero__title {
        max-width: 600px;

        margin-bottom: 18px;

        font-size: var(--font-size-mob-section-heading);
        line-height: 1.25;

        letter-spacing: -0.4px;
    }

    .about-hero__description {
        max-width: 650px;

        font-size: 14px;

        line-height: 1.65;
    }


    /* Trust */

    .about-hero__trust {
        flex-wrap: wrap;

        gap: 15px;

        margin-top: 25px;
    }

    .about-hero__trust-item {
        padding-right: 0;
    }

    .about-hero__trust-item + .about-hero__trust-item {
        padding-left: 15px;
    }


    /* Image */

    .about-hero__visual {
        order: 2;
    }

    .about-hero__image {

        width: 100%;
        height: 100%;

        object-position: center center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-hero__content {
        padding-top: 35px;
        padding-bottom: 28px;
    }

    .about-hero__title {
        font-size: 25px;
    }

    .about-hero__trust {
        gap: 10px;
    }

    .about-hero__trust-item {
        gap: 8px;
    }

    .about-hero__trust-item + .about-hero__trust-item {
        padding-left: 10px;
    }

    .about-hero__trust-icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;
    }

    .about-hero__trust-icon svg {
        width: 18px;
        height: 18px;
    }

    .about-hero__trust-content strong, .about-hero__trust-content span{
        font-size: 12px;
    }
}


/* ==========================================About insuredx Css ============================================*/

/* =========================================
   ABOUT COMPANY SECTION
========================================= */

.about-company-section {
    position: relative;
    width: 100%;
    padding: 50px 8px;
    background: var(--color-background);
    overflow: hidden;
}

.about-company-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 70px;
}


/* =========================================
   IMAGE
========================================= */

.about-company-image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-large);
}

/*
   When you add the actual image, you can use:

   <img src="your-image.webp" alt="insuredX office">
*/

.about-company-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   CONTENT
========================================= */

.about-company-content {
    width: 100%;
    max-width: 650px;
}

.about-company-label {
    display: block;
    margin-bottom: 10px;

    color: var(--color-primary);

    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);

    line-height: 1.4;
}

.about-company-label-line {
    display: block;
    width: 48px;
    height: 3px;

    margin-bottom: 20px;

    background: var(--color-secondary);
    border-radius: var(--radius-pill);
}

.about-company-title {
    margin: 0 0 20px;

    color: var(--color-black);

    font-family: var(--font-primary);
    font-size: 34px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.25;
    letter-spacing: -0.6px;
}

.about-company-description {
    max-width: 610px;
}

.about-company-description p {
    margin: 0 0 16px;

    color: var(--color-text-light);

    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
}

.about-company-description p:last-child {
    margin-bottom: 0;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.about-company-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 30px;
}

.about-company-highlight {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.about-company-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-primary);

    background: var(--color-background-soft);
    border-radius: 50%;
}

.about-company-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.about-company-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;

    min-width: 0;
}

.about-company-highlight-text strong,
.about-company-highlight-text span {
    font-family: var(--font-primary);
    line-height: 1.35;
}

.about-company-highlight-text strong {
    color: var(--color-text);

    font-size: 13px;
    font-weight: var(--font-weight-semibold);
}

.about-company-highlight-text span {
    color: var(--color-text-light);

    font-size: 13px;
    font-weight: var(--font-weight-medium);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (max-width: 1199px) {

    .about-company-wrapper {
        gap: 50px;
    }

    .about-company-title {
        font-size: 30px;
    }

    .about-company-highlights {
        gap: 18px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .about-company-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-company-content {
        max-width: 750px;
    }

    .about-company-title {
        font-size: 30px;
    }

    .about-company-description {
        max-width: 700px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-company-section {
        padding: 40px 8px
    }

    .about-company-wrapper {
        gap: 30px;
    }

    .about-company-image {
        border-radius: var(--radius-medium);
        order: 1;
    }


    .about-company-title {
        margin-bottom: 16px;

        font-size: 26px;
        line-height: 1.3;
        letter-spacing: -0.3px;
    }

    .about-company-description p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 13px;
    }

    .about-company-highlights {
        grid-template-columns: 1fr;
        gap: 16px;

        margin-top: 25px;
    }

    .about-company-highlight {
        gap: 12px;
    }

    .about-company-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .about-company-icon svg {
        width: 40px;
        height: 40px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-company-label {
        font-size: 13px;
    }

    .about-company-label-line {
        width: 42px;
        height: 2px;
        margin-bottom: 16px;
    }

    .about-company-title {
        font-size: var(--font-size-mob-section-heading);
    }

    .about-company-description p {
        font-size: 14px;
    }

    .about-company-highlight-text strong,
    .about-company-highlight-text span {
        font-size: 12px;
    }

}

/* ==========================================Vision Mission Css ============================================*/

/* =========================================
   VISION & MISSION SECTION
========================================= */

.vision-mission-section {
    width: 100%;
    padding: 0px 8px 50px;
    background: var(--color-background);
}

.vision-mission-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    align-items: center;

    width: 100%;
    padding: 38px 48px;

    background: var(--color-background-soft);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-large);
}


/* =========================================
   ITEM
========================================= */

.vision-mission-item {
    display: flex;
    align-items: center;
    gap: 28px;

    min-width: 0;
}

.vision-mission-item:first-child {
    padding-right: 45px;
}

.vision-mission-item:last-child {
    padding-left: 45px;
}


/* =========================================
   ICON
========================================= */

.vision-mission-icon {
    flex: 0 0 96px;

    width: 96px;
    height: 96px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-primary);

    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 50%;

    box-shadow: var(--shadow-card);
}

.vision-mission-icon svg {
    width: 58px;
    height: 58px;

    display: block;
}


/* =========================================
   CONTENT
========================================= */

.vision-mission-content {
    min-width: 0;
    max-width: 430px;
}

.vision-mission-title {
    margin: 0 0 9px;

    color: var(--color-primary);

    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
}

.vision-mission-line {
    display: block;

    width: 26px;
    height: 2px;

    margin-bottom: 14px;

    background: var(--color-secondary);
    border-radius: var(--radius-pill);
}

.vision-mission-content p {
    margin: 0;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-regular);
    line-height: 1.65;
}


/* =========================================
   CENTER DIVIDER
========================================= */

.vision-mission-divider {
    width: 1px;
    height: 120px;

    background: var(--color-border);
    opacity: 0.65;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (max-width: 1199px) {

    .vision-mission-wrapper {
        padding: 35px 35px;
    }

    .vision-mission-item {
        gap: 22px;
    }

    .vision-mission-item:first-child {
        padding-right: 30px;
    }

    .vision-mission-item:last-child {
        padding-left: 30px;
    }

    .vision-mission-icon {
        flex-basis: 85px;
        width: 85px;
        height: 85px;
    }

    .vision-mission-icon svg {
        width: 52px;
        height: 52px;
    }

    .vision-mission-title {
        font-size: 19px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vision-mission-wrapper {
        grid-template-columns: 100%;
        gap: 30px;

        padding: 35px;
    }

    .vision-mission-item {
        align-items: flex-start;
    }

    .vision-mission-item:first-child,
    .vision-mission-item:last-child {
        padding: 0;
    }

    .vision-mission-divider {
        width: 100%;
        height: 1px;
    }

    .vision-mission-content {
        max-width: none;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .vision-mission-section {
        padding: 0px 8px 40px;
    }

    .vision-mission-wrapper {
        gap: 25px;
        padding: 28px 24px;

        border-radius: var(--radius-medium);
    }

    .vision-mission-item {
        gap: 18px;
    }

    .vision-mission-icon {
        flex: 0 0 70px;

        width: 70px;
        height: 70px;
    }

    .vision-mission-icon svg {
        width: 44px;
        height: 44px;
    }

    .vision-mission-title {
        margin-bottom: 7px;

        font-size: 18px;
    }

    .vision-mission-line {
        width: 24px;
        margin-bottom: 10px;
    }

    .vision-mission-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .vision-mission-divider {
        margin: 2px 0;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vision-mission-wrapper {
        padding: 25px 18px;
    }

    .vision-mission-item {
        gap: 15px;
    }

    .vision-mission-icon {
        flex-basis: 62px;

        width: 62px;
        height: 62px;
    }

    .vision-mission-icon svg {
        width: 38px;
        height: 38px;
    }

    .vision-mission-title {
        font-size: 17px;
    }

    .vision-mission-content p {
        font-size: 12px;
        line-height: 1.55;
    }
}

/*===================================================== Stats CSS start =====================================================*/

/* ==========================================
   STATS STRIP
========================================== */

.stats-strip {
    width: 100%;
    padding: 50px 8px;

    background: var(--color-background);
    font-family: var(--font-primary);

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.stats-strip__container {
    min-height: 96px;

    margin-inline: auto;
    padding: 16px 28px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    align-items: center;

    background: var(--color-primary);

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-card);
}


/* ==========================================
   STAT ITEM
========================================== */

.stats-strip__item {
    position: relative;

    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 4px 24px;
}


/*
 * Vertical separator
 * between the statistics.
 */

.stats-strip__item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 48px;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.25);
}


/* ==========================================
   ICON
========================================== */

.stats-strip__icon {
    width: 44px;
    height: 44px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.stats-strip__icon svg {
    width: 40px;
    height: 40px;

    fill: none;

    stroke: var(--color-white);

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================
   CONTENT
========================================== */

.stats-strip__content {
    min-width: 0;

    text-align: center;
}


/* ==========================================
   NUMBER
========================================== */

.stats-strip__number {
    color: var(--color-white);

    font-family: var(--font-primary);

    font-size: 24px;
    font-weight: 700;

    line-height: 1.2;

    white-space: nowrap;
}


.stats-strip__counter {
    display: inline-block;

    min-width: 1ch;
}


/* ==========================================
   DESCRIPTION
========================================== */

.stats-strip__content p {
    margin: 4px 0 0;

    color: rgba(255, 255, 255, 0.92);

    font-family: var(--font-primary);

    font-size: 10px;
    font-weight: 400;

    line-height: 1.3;

    white-space: nowrap;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .stats-strip__container {
        padding: 15px 12px;
    }

    .stats-strip__item {
        gap: 8px;

        padding-inline: 12px;
    }

    .stats-strip__number {
        font-size: 18px;
    }

    .stats-strip__content p {
        font-size: 8px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .stats-strip {
        padding: 40px 8px;
    }

    .stats-strip__container {
        min-height: auto;

        padding: 18px 10px;

        grid-template-columns: repeat(2, 1fr);

        row-gap: 18px;

        border-radius: var(--radius-medium);
    }

    .stats-strip__item:nth-child(2):after{
        display: none;
    }


    .stats-strip__item {
        padding: 4px 8px;

        gap: 7px;
    }


    /*
     * On mobile:
     * create vertical + horizontal grid separators.
     */

    .stats-strip__item:nth-child(1)::after,
    .stats-strip__item:nth-child(3)::after {
        right: 0;
        top: 50%;

        width: 1px;
        height: 42px;
    }


    .stats-strip__item:nth-child(1)::before,
    .stats-strip__item:nth-child(2)::before {
        content: "";

        position: absolute;

        left: 10%;
        right: 10%;
        bottom: -9px;

        height: 1px;

        background: rgba(255, 255, 255, 0.2);
    }


    .stats-strip__icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;
    }


    .stats-strip__icon svg {
        width: 25px;
        height: 25px;
    }


    .stats-strip__number {
        font-size: 16px;
    }


    .stats-strip__content p {
        margin-top: 3px;

        font-size: 7px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .stats-strip__container {
        padding: 16px 6px;

        row-gap: 16px;
    }


    .stats-strip__item {
        gap: 5px;

        padding-inline: 5px;
    }


    .stats-strip__number {
        font-size: 14px;
    }


    .stats-strip__content p {
        font-size: 6.5px;
    }

}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .stats-strip__counter {
        transition: none;
    }

}


/* ========================================== LEADERSHIP TEAM ========================================== */

.leadership-team {
    width: 100%;
    padding: 0px 8px 50px;

    background: var(--color-background);

    font-family: var(--font-primary);

    overflow: hidden;
}

/* ==========================================
   HEADING
========================================== */

.leadership-team__heading {
    text-align: center;
    margin-bottom: 25px;
}


.leadership-team__heading p {
    margin: 7px 0 0;

    color: var(--color-text-light);

    font-family: var(--font-primary);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.5;
}


/* ==========================================
   SWIPER
========================================== */

.leadership-team__slider {
    position: relative;

    width: 100%;

    overflow: visible;
}


.leadership-team__slider .swiper-wrapper {
    align-items: stretch;
}


/* ==========================================
   SLIDE
========================================== */

.leadership-team__slider .swiper-slide {
    height: auto;

    box-sizing: border-box;
}


/* ==========================================
   TEAM CARD
========================================== */

.leadership-team__card {
    width: 100%;
    height: 100%;

    min-height: 120px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 8px 15px 12px;

    background: var(--color-white);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-small);

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}


/* ==========================================
   CARD HOVER
========================================== */

.leadership-team__card:hover {
    transform: translateY(-3px);

    border-color: var(--color-primary);

    box-shadow: var(--shadow-card);
}


/* ==========================================
   IMAGE
========================================== */

.leadership-team__image {
    width: 100px;
    height: 100px;

    flex: 0 0 100px;

    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--color-background-soft);

    border: 1px solid var(--color-border);

    border-radius: 50%;
}


.leadership-team__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* ==========================================
   CONTENT
========================================== */

.leadership-team__content {
    width: 100%;

    text-align: center;
}


.leadership-team__content h3 {
    margin: 0;

    color: var(--color-primary);

    font-family: var(--font-primary);

    font-size: 18px;
    font-weight: 600;

    line-height: 1.35;
}


.leadership-team__content p {
    margin: 3px 0 0;

    color: var(--color-text-light);

    font-family: var(--font-primary);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.35;
}


/* ==========================================
   NAVIGATION
========================================== */

.leadership-team__arrow {
    position: absolute;

    top: 50%;
    z-index: 5;

    width: 34px;
    height: 34px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border);

    border-radius: 50%;

    background: var(--color-white);

    color: var(--color-primary);

    cursor: pointer;

    box-shadow: var(--shadow-card);

    transform: translateY(-50%);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}


.leadership-team__arrow:hover {
    color: var(--color-white);

    background: var(--color-primary);

    border-color: var(--color-primary);
}


.leadership-team__arrow svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.leadership-team__arrow--prev {
    left: -17px;
}


.leadership-team__arrow--next {
    right: -17px;
}


/* Hide arrows when slider is not active */

.leadership-team__slider:not(.is-slider) .leadership-team__arrow {
    display: none;
}


/* ==========================================
   DESKTOP — LESS THAN 4 MEMBERS
   NORMAL GRID
========================================== */

@media (min-width: 768px) {

    .leadership-team__slider:not(.is-slider) {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 14px;
    }


    .leadership-team__slider:not(.is-slider)
    .swiper-wrapper {
        display: contents;
    }


    .leadership-team__slider:not(.is-slider)
    .swiper-slide {
        width: 100% !important;

        margin: 0 !important;
    }


    /*
     * Center 1–3 cards
     */

    .leadership-team__slider:not(.is-slider)
    .swiper-slide:first-child:nth-last-child(1) {
        grid-column: 2;
    }


    .leadership-team__slider:not(.is-slider)
    .swiper-slide:first-child:nth-last-child(2) {
        grid-column: 1;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {


    .leadership-team__heading {
        margin-bottom: 22px;
    }


    .leadership-team__card {
        min-height: 115px;
    }


    .leadership-team__image {
        width: 64px;
        height: 64px;

        flex-basis: 64px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .leadership-team {
        padding: 0px 8px 40px;
    }


    .leadership-team__heading {
        margin-bottom: 20px;
    }


    .leadership-team__heading p {
        margin-top: 6px;

        font-size: 12px;
    }


    /*
     * Always one slide on mobile.
     */

    .leadership-team__slider {
        width: 100%;

        overflow: hidden;
    }


    .leadership-team__slider .swiper-slide {
        width: 100% !important;
    }


    .leadership-team__card {
        min-height: 150px;

        padding: 12px 15px 15px;
    }


    .leadership-team__image {
        width: 78px;
        height: 78px;

        flex-basis: 78px;

        margin-bottom: 9px;
    }


    .leadership-team__content h3 {
        font-size: 16px;
    }


    .leadership-team__content p {
        font-size: 12px;
    }


    /*
     * Mobile arrows
     */

    .leadership-team__arrow {
        width: 30px;
        height: 30px;
    }


    .leadership-team__arrow--prev {
        left: -15px;
    }


    .leadership-team__arrow--next {
        right: -15px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {


    .leadership-team__card {
        min-height: 145px;
    }


    .leadership-team__image {
        width: 74px;
        height: 74px;

        flex-basis: 74px;
    }

}