/* === clients.css === */

/* -----------------------------------------------
   Clients Page
   ----------------------------------------------- */
.clients-page {
    color: var(--color-black);
}

.clients-page__hero {
    padding-top: 0.25rem;
}

.clients-page__hero-image {
    background-color: #191a15;
}

.clients-page__hero-image img {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
}

.clients-page__hero-body {
    gap: 1.3125rem;
}

.clients-page__hero-heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.clients-page__hero-body .ip-hero__label {
    padding-left: 0.3125rem;
    font-size: 1.125rem;
    line-height: 1.3;
}

.clients-page__hero-body .ip-hero__title {
    font-size: clamp(2.25rem, 4vw, 3.875rem);
    font-weight: 500;
    line-height: 1.06;
}

.clients-page__hero-body .ip-hero__intro {
    max-width: 42rem;
}

.clients-page__hero-body .ip-hero__lead,
.clients-page__hero-body .ip-hero__desc {
    letter-spacing: -0.03em;
}

.clients-page__hero-body .ip-hero__cta {
    min-height: 3.75rem;
    padding: 1.125rem 2rem;
    border-width: 2px;
    border-radius: 0.375rem;
    font-size: 1.125rem;
}

.clients-page__list {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
}

.clients-page__list-title {
    margin: 0 0 2rem;
    font-family: var(--font-heading);
    font-size: clamp(2.125rem, 3vw, 3.375rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.clients-page__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.clients-page__column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.clients-page__item {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.clients-page__item-rule {
    display: block;
    width: 10rem;
    height: 4px;
    background-color: var(--color-black);
}

.clients-page__item-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.clients-page__item-subtitle {
    display: block;
    color: rgba(0, 0, 0, 0.58);
}

.clients-page__item-copy {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.clients-page__projects .image-strip-section {
    background-color: #f7f7f7;
}

.clients-page__projects .image-strip-section__inner.container {
    padding-top: 3.875rem;
    padding-bottom: 3.8125rem;
}

.clients-page__projects .image-strip-section__header {
    gap: 0.75rem;
    max-width: 47.6875rem;
}

.clients-page__projects .image-strip-section__rule {
    width: 13.625rem;
    height: 4px;
}

.clients-page__projects .image-strip-section__title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.23;
    letter-spacing: -0.03em;
}

.clients-page__projects .image-strip-section__track {
    gap: 1rem;
}

.clients-page__projects .image-strip-section__item {
    width: 20rem;
}

.clients-page__projects .image-strip-section__image {
    height: 12.5rem;
}

.clients-page__projects .image-strip-section__cta {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
}

.clients-page__projects .image-strip-section__button {
    min-height: 3.75rem;
    padding: 1.125rem 2rem;
    border-radius: 0.375rem;
    background-color: #ca161e;
    border-color: rgba(0, 0, 0, 0.22);
    color: var(--color-white);
}

/* -----------------------------------------------
   Clients section
   ----------------------------------------------- */
.clients {
    padding-top: 1.5rem;
    padding-bottom: 0;
}

.clients__inner.container {
    overflow: hidden;
}

.clients__heading {
    margin: 0 0 0.875rem;
    font-family: var(--font-heading);
    font-size: 1.5625rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.clients__scroller {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    padding-bottom: 0;
}

.clients__scroller:active {
    cursor: grabbing;
}

.clients__scroller::-webkit-scrollbar {
    display: none;
}

.clients__track {
    display: inline-flex;
    align-items: center;
    gap: 1.8125rem;
    flex-wrap: nowrap;
    min-width: max-content;
}

.clients__logos-img {
    display: block;
    flex: 0 0 auto;
    width: 19.1278rem;
    height: auto;
    min-width: 19.1278rem;
}

.clients__rule {
    display: block;
    width: 9.5625rem;
    height: 0.135625rem;
    margin-top: 0.875rem;
    margin-bottom: 1.125rem;
    background-color: var(--color-black);
}

@media (min-width: 768px) {
    .clients-page__hero {
        gap: 2.75rem;
        padding-top: 2.25rem;
        padding-bottom: 3rem;
    }

    .clients-page__hero-image {
        flex: 0 0 52%;
        max-width: 52%;
    }

    .clients-page__hero-image img {
        min-height: 28rem;
    }

    .clients-page__list {
        padding-top: 3rem;
        padding-bottom: 5.5rem;
    }

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

    .clients-page__column {
        gap: 3rem;
    }

    .clients-page__projects .image-strip-section__item {
        width: 26rem;
    }

    .clients-page__projects .image-strip-section__image {
        height: 15rem;
    }

    .clients {
        padding-top: 3.75rem;
        padding-bottom: 1rem;
    }

    .clients__heading {
        margin-bottom: 2rem;
        font-size: 2.25rem;
        line-height: 1.1136;
    }

    .clients__track {
        gap: 1.25rem;
    }

    .clients__logos-img {
        width: 32rem;
        min-width: 32rem;
    }

    .clients__rule {
        display: none;
    }
}

@media (min-width: 992px) {
    .clients-page__hero {
        gap: 6.875rem;
        padding-top: 0;
        padding-bottom: 4.9375rem;
    }

    .clients-page__hero-image {
        flex: 0 0 49.44%;
        max-width: 49.44%;
    }

    .clients-page__hero-image img {
        min-height: 38.625rem;
    }

    .clients-page__hero-body {
        max-width: 44.125rem;
    }

    .clients-page__hero-body .ip-hero__label {
        font-size: 1.5rem;
        line-height: 1.58;
    }

    .clients-page__hero-body .ip-hero__title {
        font-size: 3.875rem;
    }

    .clients-page__hero-body .ip-hero__lead {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .clients-page__hero-body .ip-hero__desc {
        font-size: 1.125rem;
        line-height: 1.667;
    }

    .clients-page__list {
        padding-top: 1.875rem;
        padding-bottom: 6.0625rem;
    }

    .clients-page__list-title {
        margin-bottom: 3.625rem;
        font-size: 3.375rem;
    }

    .clients-page__columns {
        gap: 4.625rem;
    }

    .clients-page__column {
        gap: 4rem;
    }

    .clients-page__item {
        gap: 1rem;
    }

    .clients-page__item-title {
        font-size: 2.75rem;
        line-height: 0.98;
    }

    .clients-page__item-subtitle {
        font-size: 2.25rem;
        line-height: 1.05;
    }

    .clients-page__item-copy {
        font-size: 1.125rem;
        line-height: 1.72;
    }

    .clients-page__projects .image-strip-section__track {
        gap: 1.5rem;
    }

    .clients-page__projects .image-strip-section__item {
        width: 33.6875rem;
    }

    .clients-page__projects .image-strip-section__image {
        height: 19.5rem;
    }

    .clients {
        padding-top: 4.25rem;
        padding-bottom: 1.125rem;
    }

    .clients__heading {
        margin-bottom: 1.75rem;
        font-size: 2.75rem;
        line-height: 1.1136;
    }

    .clients__track {
        gap: 1.4375rem;
    }

    .clients__logos-img {
        width: 36.9375rem;
        min-width: 36.9375rem;
    }
}
