.trust-main {
    display: grid;
    gap: 22px;
}

.trust-hero {
    position: relative;
    overflow: hidden;
    padding: 32px;
}

.trust-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 159, 88, 0.25), rgba(200, 159, 88, 0));
    pointer-events: none;
}

.trust-update {
    display: inline-flex;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #735528;
    background: rgba(200, 159, 88, 0.16);
}

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

.trust-section {
    padding: 28px;
}

.trust-section h2 {
    margin: 0 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.08;
}

.trust-section p,
.trust-section li {
    color: var(--store-muted);
    line-height: 1.75;
    font-size: 15px;
}

.trust-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.trust-list strong {
    color: var(--store-ink);
}

.trust-section a {
    color: var(--store-gold-deep);
    font-weight: 700;
}

@media (max-width: 980px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .trust-hero,
    .trust-section {
        padding: 22px;
    }

    .trust-section h2 {
        font-size: 30px;
    }
}