:root {
    --color-ink: #172024;
    --color-ink-soft: #3f4a4f;
    --color-muted: #68757b;
    --color-line: #dbe3e1;
    --color-paper: #ffffff;
    --color-surface: #f3f6f2;
    --color-surface-strong: #e8efe8;
    --color-green: #1f5f4c;
    --color-green-dark: #143f34;
    --color-red: #bd2f2b;
    --color-gold: #c9a24c;
    --color-charcoal: #22282b;
    --shadow-soft: 0 18px 50px rgba(23, 32, 36, .12);
    --shadow-card: 0 10px 28px rgba(23, 32, 36, .09);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-red);
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 .75rem;
    color: var(--color-ink);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
}

h1 {
    font-size: clamp(2.35rem, 4.5vw, 4.85rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.9rem);
}

h3 {
    font-size: 1.2rem;
}

ul {
    margin-top: 0;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--color-paper);
    background: var(--color-red);
    border-radius: var(--radius);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(219, 227, 225, .82);
    backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 22px rgba(23, 32, 36, .08);
}

.topbar {
    color: #f8fbf8;
    background: var(--color-green-dark);
    font-size: .88rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 36px;
}

.topbar a {
    color: #f8fbf8;
    font-weight: 700;
}

.site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-ink);
    min-width: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}

.brand__icon {
    width: 52px;
    height: 52px;
    object-fit: cover;
}

.brand__text {
    display: grid;
    gap: 2px;
}

.brand__name {
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.1;
}

.brand__tagline {
    color: var(--color-muted);
    font-size: .82rem;
    font-weight: 700;
}

.site-nav {
    justify-self: end;
}

.site-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list a {
    color: var(--color-ink-soft);
    font-size: .95rem;
    font-weight: 800;
}

.header-call {
    display: grid;
    gap: 1px;
    min-width: 176px;
    padding: 10px 14px;
    color: var(--color-paper);
    background: var(--color-red);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(189, 47, 43, .2);
}

.header-call:hover {
    color: var(--color-paper);
    background: #9f2825;
}

.header-call__label {
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.header-call strong {
    font-size: 1rem;
    line-height: 1.2;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--color-ink);
}

.site-main {
    min-height: 55vh;
}

.hero {
    position: relative;
    display: grid;
    min-height: 660px;
    color: #fff;
    background-color: var(--color-charcoal);
    background-position: center;
    background-size: cover;
}

.hero--city {
    min-height: 560px;
}

.hero--city .hero__content {
    width: min(940px, 100%);
}

.hero--city h1 {
    max-width: 18ch;
    font-size: clamp(2.45rem, 4vw, 4.15rem);
    line-height: 1.14;
}

.hero__inner {
    display: flex;
    align-items: center;
    padding-block: 82px;
}

.hero__content {
    width: min(720px, 100%);
}

.hero h1,
.hero h2 {
    color: #fff;
}

.hero__lead {
    max-width: 680px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--color-red);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow {
    color: #f2c461;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: #fff;
    background: var(--color-red);
    box-shadow: 0 14px 30px rgba(189, 47, 43, .2);
}

.btn--primary:hover {
    color: #fff;
    background: #9f2825;
}

.btn--secondary {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .34);
}

.btn--secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, .22);
}

.btn--light {
    color: var(--color-red);
    background: #fff;
}

.btn--light:hover {
    color: #fff;
    background: var(--color-green-dark);
}

.btn--outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .62);
}

.btn--outline-light:hover {
    color: var(--color-red);
    background: #fff;
    border-color: #fff;
}

.btn--ghost {
    color: var(--color-green-dark);
    background: var(--color-surface);
    border-color: var(--color-line);
}

.btn--full {
    width: 100%;
}

.hero__actions,
.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .9);
    font-weight: 800;
}

.hero__checks li {
    position: relative;
    padding-left: 22px;
}

.hero__checks li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 10px;
    height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.trust-strip {
    background: var(--color-green-dark);
    color: #fff;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.trust-strip__grid div {
    padding: 22px 20px;
    background: rgba(255, 255, 255, .06);
}

.trust-strip strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1.02rem;
}

.trust-strip span {
    color: rgba(255, 255, 255, .76);
    font-size: .94rem;
}

.section {
    padding-block: 86px;
}

.section--muted {
    background: var(--color-surface);
}

.section--dark {
    color: #fff;
    background: var(--color-charcoal);
}

.section--dark h2,
.section--dark h3 {
    color: #fff;
}

.section--dark p {
    color: rgba(255, 255, 255, .84);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
    text-align: left;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    align-items: center;
    gap: 48px;
}

.split-grid--reverse {
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
}

.section-copy {
    max-width: 650px;
}

.section-copy p {
    color: var(--color-ink-soft);
    font-size: 1.05rem;
}

.section--dark .section-copy p {
    color: rgba(255, 255, 255, .84);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 800;
}

.check-list li::before {
    color: var(--color-green);
    top: .5em;
}

.image-panel {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    background: var(--color-line);
}

.image-panel__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card,
.overview-card,
.sidebar-cta,
.post-card,
.empty-state {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.service-card {
    padding: 26px;
}

.service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card h3::before {
    content: "";
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: var(--color-red);
}

.service-card p {
    color: var(--color-muted);
}

.section--proof {
    background: linear-gradient(180deg, #fff 0%, #f7faf7 100%);
}

.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: 38px;
}

.proof-media {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.proof-media__main {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.proof-card {
    padding: 32px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.proof-card__badge {
    width: 120px;
    height: 120px;
    margin-bottom: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.rating-box {
    display: inline-flex;
    align-items: center;
    max-width: 280px;
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
}

.rating-box__img {
    max-height: 58px;
    width: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-grid article {
    padding: 24px;
    border-top: 4px solid var(--color-red);
    border-radius: var(--radius);
    background: var(--color-surface);
}

.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    color: #fff;
    background: var(--color-green);
    border-radius: 50%;
    font-weight: 900;
}

.process-grid p {
    color: var(--color-muted);
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 20px rgba(23, 32, 36, .05);
}

.faq-item summary {
    position: relative;
    cursor: pointer;
    padding: 20px 56px 20px 22px;
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    color: #fff;
    background: var(--color-green);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--color-muted);
}

.text-link {
    color: var(--color-red);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-card {
    overflow: hidden;
}

.post-card__media {
    display: block;
    overflow: hidden;
    background: var(--color-line);
}

.post-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.post-card__body {
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.post-card__meta {
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: .88rem;
    font-weight: 800;
}

.post-card h3 a {
    color: var(--color-ink);
}

.post-card p {
    color: var(--color-muted);
}

.post-card__excerpt {
    display: -webkit-box;
    min-height: 3.05em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-hero {
    padding-block: 86px 64px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-charcoal), var(--color-green-dark));
}

.page-hero h1,
.page-hero h2 {
    color: #fff;
}

.page-hero .hero__lead {
    color: rgba(255, 255, 255, .86);
}

.page-hero--post h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 5vw, 4.55rem);
}

.post-meta {
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-main > *:first-child {
    margin-top: 0;
}

.content-main a {
    color: var(--color-red);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-main img,
.single-post__image {
    border-radius: var(--radius);
}

.single-post__image {
    width: 100%;
    margin-bottom: 28px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.sidebar-cta {
    padding: 24px;
}

.sidebar-cta--sticky {
    position: sticky;
    top: 122px;
}

.sidebar-cta p {
    color: var(--color-muted);
}

.sidebar-cta__badge {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.legal-content {
    max-width: 860px;
}

.legal-content h2 {
    margin-top: 34px;
    font-size: 1.45rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    color: var(--color-red);
    font-weight: 800;
}

.city-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.city-main {
    display: grid;
    gap: 34px;
}

.overview-card {
    padding: 30px;
}

.generated-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-line);
}

.neighborhoods {
    display: grid;
    gap: 6px;
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--color-surface);
}

.city-section {
    padding: 34px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-list div {
    padding: 18px;
    border-left: 4px solid var(--color-red);
    border-radius: var(--radius);
    background: var(--color-surface);
}

.feature-list p {
    color: var(--color-muted);
}

.process-grid--compact {
    grid-template-columns: repeat(2, 1fr);
}

.footer-service-cta {
    padding-block: 54px;
    background: var(--color-green-dark);
}

.footer-service-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
}

.footer-service-cta h2 {
    color: #fff;
}

.site-footer {
    color: #dce7e3;
    background: #101719;
}

.footer-cta {
    background: var(--color-red);
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 48px;
    color: #fff;
}

.footer-cta h2 {
    color: #fff;
}

.footer-cta p {
    max-width: 620px;
    color: rgba(255, 255, 255, .86);
}

.footer-cta .eyebrow {
    color: #ffe7a3;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) 1fr 1fr;
    gap: 36px;
    padding-block: 52px;
}

.brand--footer {
    color: #fff;
    margin-bottom: 16px;
}

.brand--footer .brand__tagline,
.footer-brand p,
.footer-col p,
.footer-col li,
.footer-bottom {
    color: rgba(220, 231, 227, .74);
}

.footer-col h2 {
    color: #fff;
    font-size: 1.1rem;
}

.footer-col ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col a {
    color: #fff;
    font-weight: 800;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding-block: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    text-align: right;
}

.footer-legal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-legal a {
    color: #fff;
    font-weight: 900;
}

.footer-legal a:hover {
    color: #ffe7a3;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 720px;
    margin-bottom: 32px;
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
}

.search-submit {
    min-height: 48px;
    padding: 10px 18px;
    color: #fff;
    background: var(--color-red);
    border: 0;
    border-radius: var(--radius);
    font-weight: 900;
}

.empty-state {
    max-width: 720px;
    padding: 28px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding-inline: 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    font-weight: 800;
}

.nav-links .current {
    color: #fff;
    background: var(--color-green);
}

@media (max-width: 1080px) {
    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        z-index: 80;
        display: block;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav__list {
        display: grid;
        gap: 2px;
        padding: 8px;
        border: 1px solid var(--color-line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: 0 18px 44px rgba(23, 32, 36, .18);
    }

    .site-nav__list a {
        display: block;
        padding: 12px 14px;
        border-radius: 6px;
        text-align: left;
    }

    .site-nav__list a:hover {
        color: var(--color-red);
        background: var(--color-surface);
    }

    .header-call {
        display: none;
    }

    .trust-strip__grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-grid,
    .split-grid--reverse,
    .proof-grid,
    .content-layout,
    .city-layout {
        grid-template-columns: 1fr;
    }

    .city-sidebar {
        order: -1;
    }

    .sidebar-cta--sticky {
        position: static;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding-block: 8px;
    }

    .site-header__inner {
        min-height: 74px;
        gap: 14px;
    }

    .brand__mark {
        width: 46px;
        height: 46px;
    }

    .brand__icon {
        width: 46px;
        height: 46px;
    }

    .brand__name {
        font-size: 1rem;
    }

    .brand__tagline {
        font-size: .74rem;
    }

    h1 {
        font-size: clamp(2rem, 11vw, 3.25rem);
        max-width: 100%;
    }

    .hero--city h1 {
        font-size: clamp(2rem, 8.5vw, 2.9rem);
        line-height: 1.16;
        max-width: 100%;
    }

    .hero {
        min-height: auto;
        background-position: center right;
    }

    .hero__inner {
        padding-block: 74px;
    }

    .hero__content {
        padding: 0;
    }

    .hero__actions,
    .footer-cta__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding-block: 62px;
    }

    .section-heading--row,
    .footer-cta__inner,
    .footer-service-cta__inner,
    .footer-bottom {
        align-items: flex-start;
    }

    .section-heading--row,
    .footer-cta__inner,
    .footer-service-cta__inner {
        flex-direction: column;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .card-grid--3,
    .post-grid,
    .footer-main,
    .feature-list,
    .process-grid--compact {
        grid-template-columns: 1fr;
    }

    .proof-card,
    .overview-card,
    .city-section,
    .sidebar-cta {
        padding: 22px;
    }

    .page-hero {
        padding-block: 64px 46px;
    }

    .search-form {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__checks {
        display: grid;
    }

    .trust-strip__grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__grid div {
        padding: 18px 16px;
    }

    .rating-box {
        width: 100%;
        max-width: none;
    }

    .rating-box__img {
        width: 100%;
        max-height: none;
    }
}
