.phlox-outdoor-callout {
    padding: 42px 24px 82px;
    background: #fff;
}

.phlox-outdoor-callout__inner {
    display: grid;
    grid-template-columns: 46% 54%;
    width: min(1180px, 100%);
    min-height: 440px;
    margin: 0 auto;
    overflow: hidden;
    background: #12391f;
}

.phlox-outdoor-callout__image {
    min-height: 440px;
    overflow: hidden;
}

.phlox-outdoor-callout__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: center 65%;
    transition: transform 500ms ease;
}

.phlox-outdoor-callout__inner:hover .phlox-outdoor-callout__image img {
    transform: scale(1.035);
}

.phlox-outdoor-callout__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px clamp(32px, 5vw, 76px);
    color: #fff;
    background: #12391f;
}

.phlox-outdoor-callout__eyebrow {
    margin: 0 0 12px;
    color: #a7d973;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.phlox-outdoor-callout__content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3.5vw, 47px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.06;
    text-transform: uppercase;
}

.phlox-outdoor-callout__intro {
    max-width: 31ch;
    margin: 16px 0 22px;
    color: #e3eee2;
    font-size: 17px;
    line-height: 1.45;
}

.phlox-outdoor-callout__services {
    display: grid;
    gap: 7px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.phlox-outdoor-callout__services li {
    position: relative;
    margin: 0;
    padding-left: 26px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.phlox-outdoor-callout__services li::before {
    position: absolute;
    left: 0;
    color: #a7d973;
    content: '\2713';
    font-weight: 800;
}

.phlox-outdoor-callout__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 12px;
    min-height: 48px;
    padding: 11px 20px;
    color: #12391f;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.phlox-outdoor-callout__link:hover,
.phlox-outdoor-callout__link:focus-visible {
    color: #12391f;
    background: #b8e183;
    text-decoration: none;
}

.phlox-outdoor-callout__link span {
    font-size: 21px;
    line-height: 1;
    transition: transform 180ms ease;
}

.phlox-outdoor-callout__link:hover span,
.phlox-outdoor-callout__link:focus-visible span {
    transform: translateX(4px);
}

@media (max-width: 760px) {
    .phlox-outdoor-callout {
        padding: 28px 18px 60px;
    }

    .phlox-outdoor-callout__inner {
        grid-template-columns: 1fr;
    }

    .phlox-outdoor-callout__image,
    .phlox-outdoor-callout__image img {
        height: 240px;
        min-height: 240px;
    }

    .phlox-outdoor-callout__content {
        padding: 34px 28px 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phlox-outdoor-callout__image img,
    .phlox-outdoor-callout__link,
    .phlox-outdoor-callout__link span {
        transition: none;
    }
}
