.rs-buyer-information {
    margin: 0 auto;
    padding: 0 0 4rem;
}

.rs-buyer-information__header {
    margin-bottom: clamp(1.75rem, 4vw, 3rem);
    width: 100%;
}

.rs-buyer-information__header h1 {
    color: #17211f;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.08;
    margin: 0 0 1rem;
}

.rs-buyer-information__header p {
    color: #59636d;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.65;
    margin: 0;
}

.rs-buyer-information__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs-buyer-information-card {
    background: #fff;
    border: 1px solid #e1e6ea;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 53, 104, .06);
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.rs-buyer-information-card:hover {
    border-color: rgba(0, 53, 104, .32);
    box-shadow: 0 14px 36px rgba(0, 53, 104, .1);
    transform: translateY(-2px);
}

.rs-buyer-information-card h2 {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    letter-spacing: -.02em;
    line-height: 1.25;
    margin: 0 0 .8rem;
}

.rs-buyer-information-card h2 a {
    color: #003568;
    text-decoration: none;
}

.rs-buyer-information-card__summary {
    color: #59636d;
    line-height: 1.65;
}

.rs-buyer-information-card__summary > :first-child {
    margin-top: 0;
}

.rs-buyer-information-card__summary > :last-child {
    margin-bottom: 0;
}

.rs-buyer-information-card__link {
    align-items: center;
    color: #003568;
    display: inline-flex;
    font-weight: 750;
    gap: .45rem;
    margin-top: auto;
    padding-top: 1.25rem;
    text-decoration: none;
}

.rs-buyer-information-card__link span {
    transition: transform .2s ease;
}

.rs-buyer-information-card__link:hover span {
    transform: translateX(3px);
}

.rs-buyer-information__empty {
    background: #f4f7fa;
    border-radius: 18px;
    color: #59636d;
    padding: 1.25rem;
}

@media (max-width: 720px) {
    .rs-buyer-information {
        padding-bottom: 2.5rem;
    }

    .rs-buyer-information__grid {
        grid-template-columns: 1fr;
    }
}
