  /* =========================================================
       BUSINESS SUPPORT - MEET THE TEAM PAGE
       Bootstrap 5.3.8
       White page design
    ========================================================= */

    #main {
        background-color: #fff;
    }

    .business-team-page {
        max-width: 1180px;
        margin: 0 auto;
        padding-bottom: 3rem;
        color: #34312d;
        background: #fff;
    }

    .business-team-page * {
        box-sizing: border-box;
    }


    /* =========================================================
       PAGE TITLE
    ========================================================= */

    .business-team-page-header {
        margin: 2rem 0 1.5rem;
    }


    /* =========================================================
       INTRO
    ========================================================= */

    .business-team-intro {
        max-width: 940px;
        margin-bottom: 3.5rem;
        padding: 2rem;
        border: 1px solid #e7e7e7;
        border-radius: 16px;
        background: #fff;
        box-shadow:
            0 16px 40px rgba(0, 0, 0, .055),
            0 3px 10px rgba(0, 0, 0, .035);
    }

    .business-team-intro p {
        margin-bottom: 1rem;
        color: #4b4743;
        line-height: 1.65;
    }

    .business-team-intro p:first-child {
        color: #34312d;
        font-size: 1.18rem;
        line-height: 1.7;
    }

    .business-team-intro p:last-child {
        margin-bottom: 0;
    }

    .business-team-intro a {
        color: #b00060;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .business-team-intro a:hover,
    .business-team-intro a:focus {
        color: #e0007a;
    }


    /* =========================================================
       SECTION HEADING
    ========================================================= */

    .business-team-section {
        margin: 3.5rem 0;
    }

    .business-team-section-header {
        margin-bottom: 1.5rem;
    }

    .business-team-section-header h2 {
        margin: 0 0 .35rem;
        color: #25221f;
        font-size: 1.7rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .business-team-section-header p {
        max-width: 760px;
        margin: 0;
        color: #66615c;
        line-height: 1.55;
    }

    .business-team-section-header::after {
        content: "";
        display: block;
        width: 55px;
        height: 4px;
        margin-top: .9rem;
        background: #e0007a;
        border-radius: 10px;
    }


    /* =========================================================
       TEAM GRID
    ========================================================= */

    .business-team-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .business-team-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid #e6e6e6;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .035);
        transition:
            border-color .2s ease,
            box-shadow .2s ease,
            transform .2s ease;
    }

    .business-team-card:hover {
        border-color: #d0d0d0;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
        transform: translateY(-2px);
    }

    .business-team-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        background: #f7f7f7;
    }

    .business-team-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        aspect-ratio: 1 / 1;
        background: #f7f7f7;
    }

    .business-team-placeholder i {
        font-size: clamp(4rem, 9vw, 7rem);
        line-height: 1;
    }

    .business-team-card-content {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 1.1rem;
    }

    .business-team-card h3 {
        margin: 0 0 .45rem;
        color: #25221f;
        font-size: 1.12rem;
        font-weight: 800;
        line-height: 1.25;
    }

    .business-team-role,
    .business-team-specialism {
        margin: 0 0 .55rem;
        color: #4b4743;
        font-size: .95rem;
        line-height: 1.45;
    }

    .business-team-role {
        font-weight: 700;
    }

    .business-team-specialism {
        color: #66615c;
    }

    .business-team-contact {
        display: flex;
        flex-direction: column;
        gap: .25rem;
        margin-top: auto;
        padding-top: .75rem;
        border-top: 1px solid #ececec;
    }

    .business-team-contact a {
        color: #b00060;
        font-size: .92rem;
        font-weight: 700;
        line-height: 1.35;
        overflow-wrap: anywhere;
        text-decoration: none;
    }

    .business-team-contact a:hover,
    .business-team-contact a:focus {
        color: #e0007a;
        text-decoration: underline;
        text-underline-offset: 3px;
    }


    /* =========================================================
       TABLET
    ========================================================= */

    @media (max-width: 991px) {

        .business-team-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }


    /* =========================================================
       MOBILE
    ========================================================= */

    @media (max-width: 767px) {

        .business-team-page {
            padding-bottom: 2rem;
        }

        .business-team-page-header {
            margin-top: 1.5rem;
        }

        .business-team-intro {
            margin-bottom: 2.75rem;
            padding: 1.4rem;
            border-radius: 10px;
        }

        .business-team-intro p:first-child {
            font-size: 1.08rem;
        }

        .business-team-section {
            margin: 2.75rem 0;
        }

        .business-team-section-header h2 {
            font-size: 1.45rem;
        }

        .business-team-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }
    }

    @media (max-width: 520px) {

        .business-team-grid {
            grid-template-columns: 1fr;
        }
    }