/* =========================================================
   TRC Impact Stats Block
========================================================= */

.trc-impact-stats {
    width: 100%;
    margin: 0;
    background: #fff;
    color: #111;
}

.trc-impact-stats__inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding:
        clamp(70px, 7vw, 120px)
        clamp(28px, 6vw, 96px);
}

/* Header */

.trc-impact-stats__header {
    max-width: 1000px;
    margin: 0 0 clamp(44px, 5vw, 74px);
}

.trc-impact-stats__eyebrow {
    margin: 0 0 18px;
    color: #f05a28;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.trc-impact-stats__heading {
    margin: 0;
    font-family: "Knockout", serif;
    font-size: clamp(44px, 5vw, 78px);
    font-weight: normal;
    line-height: .96;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

/* Statistics */

.trc-impact-stats__stats {
    display: grid;
    grid-template-columns:
        repeat(
            var(--trc-impact-stat-count, 1),
            minmax(0, 1fr)
        );
    gap: 0 clamp(22px, 2.5vw, 42px);
    width: 100%;
}

.trc-impact-stats__stat {
    min-width: 0;
    padding-top: 24px;
    border-top: 1px solid #dedede;
}

.trc-impact-stats__value {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    color: #f05a28;
    font-family: "Simplon", sans-serif;
    font-size: clamp(44px, 4.5vw, 76px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.trc-impact-stats--count-5 .trc-impact-stats__value,
.trc-impact-stats--count-6 .trc-impact-stats__value {
    font-size: clamp(38px, 3.4vw, 58px);
}

.trc-impact-stats__prefix {
    margin-right: 2px;
}

.trc-impact-stats__suffix {
    margin-left: 2px;
    font-size: .68em;
}

.trc-impact-stats__description {
    max-width: 240px;
    margin: 14px 0 0;
    color: #262626;
    font-family: "Simplon", sans-serif;
    font-size: 15px;
    line-height: 1.45;
}

/* Supporting content */

.trc-impact-stats__supporting {
    max-width: 900px;
    margin-top: clamp(52px, 6vw, 84px);
    padding-top: 34px;
    border-top: 1px solid #dedede;
}

.trc-impact-stats__supporting-heading {
    max-width: 760px;
    margin: 0 0 16px;
    font-family: "Knockout", serif;
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: normal;
    line-height: 1.08;
    letter-spacing: -.01em;
    text-transform: uppercase;
}

.trc-impact-stats__supporting-content {
    max-width: 760px;
    color: #333;
    font-family: "Simplon", sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

.trc-impact-stats__supporting-content p {
    margin-top: 0;
    margin-bottom: 18px;
}

.trc-impact-stats__supporting-content p:last-child {
    margin-bottom: 0;
}

.trc-impact-stats__supporting-content ul,
.trc-impact-stats__supporting-content ol {
    margin-top: 0;
    margin-bottom: 18px;
    padding-left: 22px;
}

.trc-impact-stats__supporting-content a {
    color: #111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Button */

.trc-impact-stats__button-wrap {
    margin-top: 30px;
}

.trc-impact-stats__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 2px solid #f05a28;
    border-radius: 999px;
    background: #f05a28;
    color: #fff;
    font-family: "Simplon", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.trc-impact-stats__button:hover {
    border-color: #111;
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.trc-impact-stats__button:focus-visible {
    outline: 3px solid rgba(240, 90, 40, .35);
    outline-offset: 4px;
}

/* Smaller desktop */

@media (max-width: 1300px) {

    .trc-impact-stats__inner {
        padding:
            clamp(65px, 7vw, 95px)
            clamp(38px, 5vw, 70px);
    }

    .trc-impact-stats__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 46px 34px;
    }

    .trc-impact-stats__value,
    .trc-impact-stats--count-5 .trc-impact-stats__value,
    .trc-impact-stats--count-6 .trc-impact-stats__value {
        font-size: clamp(44px, 6vw, 68px);
    }

    .trc-impact-stats__description {
        max-width: 260px;
    }
}

/* Tablet */

@media (max-width: 900px) {

    .trc-impact-stats__inner {
        padding: 65px 45px;
    }

    .trc-impact-stats__header {
        margin-bottom: 48px;
    }

    .trc-impact-stats__heading {
        font-size: clamp(42px, 8vw, 66px);
    }

    .trc-impact-stats__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 30px;
    }

    .trc-impact-stats__value,
    .trc-impact-stats--count-5 .trc-impact-stats__value,
    .trc-impact-stats--count-6 .trc-impact-stats__value {
        font-size: clamp(42px, 8vw, 62px);
    }
}

/* Mobile */

@media (max-width: 600px) {

    .trc-impact-stats__inner {
        padding: 52px 28px 58px;
    }

    .trc-impact-stats__header {
        margin-bottom: 40px;
    }

    .trc-impact-stats__eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .trc-impact-stats__heading {
        font-size: clamp(38px, 12vw, 54px);
        line-height: .98;
    }

    .trc-impact-stats__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 20px;
    }

    .trc-impact-stats__stat {
        padding-top: 18px;
    }

    .trc-impact-stats__value,
    .trc-impact-stats--count-5 .trc-impact-stats__value,
    .trc-impact-stats--count-6 .trc-impact-stats__value {
        font-size: clamp(34px, 11vw, 48px);
    }

    .trc-impact-stats__description {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.4;
    }

    .trc-impact-stats__supporting {
        margin-top: 46px;
        padding-top: 28px;
    }

    .trc-impact-stats__supporting-heading {
        font-size: 26px;
    }

    .trc-impact-stats__supporting-content {
        font-size: 16px;
        line-height: 1.6;
    }

    .trc-impact-stats__button-wrap {
        margin-top: 26px;
    }

    .trc-impact-stats__button {
        min-height: 46px;
        padding: 14px 26px;
    }
}

/* Very small phones */

@media (max-width: 390px) {

    .trc-impact-stats__inner {
        padding-right: 22px;
        padding-left: 22px;
    }

    .trc-impact-stats__stats {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .trc-impact-stats__description {
        max-width: 280px;
    }
}