.hero-photograph {
    position: relative;
    min-width: 0;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #e8e6dc;
}
.hero-photograph > img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: 50% 56%;
}
.hero-photograph figcaption {
    position: absolute;
    inset: auto 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--lime);
    padding: 15px 19px;
    border-radius: 7px;
}
.hero-photograph figcaption span {
    font-size: 9px;
    letter-spacing: 1px;
}
.hero-photograph figcaption strong {
    font-size: 14px;
    font-weight: 500;
}
.brand-photograph {
    margin-top: 26px;
    overflow: hidden;
    border-radius: 9px;
}
.brand-photograph img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    object-position: 50% 60%;
}
.feature-card-large .feature-footnote {
    position: static;
    display: block;
    margin-top: 18px;
    text-align: center;
}
.industry-photograph {
    min-width: 0;
    border-radius: 15px;
    overflow: hidden;
    align-self: stretch;
}
.industry-photograph > img {
    width: 100%;
    height: 100%;
    max-height: 485px;
    min-height: 400px;
    object-fit: cover;
    object-position: 50% 58%;
}
@media (max-width: 1200px) {
    .hero-photograph > img {
        height: 510px;
    }
}
@media (max-width: 1060px) {
    .hero-photograph {
        width: min(100%, 520px);
        margin-inline: auto;
    }
    .hero-photograph > img {
        height: 520px;
    }
}
@media (max-width: 760px) {
    .feature-card-large {
        display: block;
    }
    .brand-photograph img {
        height: 350px;
    }
    .industry-photograph > img {
        height: 400px;
        min-height: 0;
    }
}
@media (max-width: 460px) {
    .hero-photograph > img {
        height: 420px;
    }
    .hero-photograph figcaption {
        inset: auto 14px 14px;
        padding: 13px 14px;
    }
    .hero-photograph figcaption span {
        font-size: 7px;
    }
    .hero-photograph figcaption strong {
        font-size: 12px;
    }
    .brand-photograph img {
        height: 330px;
    }
    .industry-photograph > img {
        height: 370px;
    }
}
