.rank-audit {
    margin: 0 0 70px;
    border: 1px solid var(--ink);
    background: var(--white);
}

.rank-audit > header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px 45px;
    padding: 34px;
    border-bottom: 1px solid var(--ink);
}

.rank-audit > header .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.rank-audit > header h2 {
    margin: 0;
    font: 800 34px var(--serif);
}

.rank-audit > header > p:last-child {
    margin: 0;
    color: var(--muted);
}

.rank-audit-table {
    overflow-x: auto;
}

.rank-audit-row {
    min-width: 820px;
    display: grid;
    grid-template-columns: .8fr 1.15fr 1.25fr 1.35fr;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.rank-audit-row > * {
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}

.rank-audit-row > *:last-child {
    border-right: 0;
}

.rank-audit-row:not(.rank-audit-head):hover {
    background: var(--lime);
}

.rank-audit-head {
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    letter-spacing: .08em;
}

.rank-audit-note {
    margin: 0;
    padding: 18px 24px;
    background: #fff2ec;
    border-left: 8px solid var(--orange);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .rank-audit > header {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

    .rank-audit > header .eyebrow {
        grid-column: auto;
    }
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 55px 0 90px;
}

.policy-grid article {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--ink);
    background: var(--white);
}

.policy-grid article:nth-child(2) {
    background: var(--lime);
}

.policy-grid h2 {
    margin: 0 0 18px;
    font: 800 27px var(--serif);
}

.policy-grid p {
    margin: 0;
    color: #3f474b;
}

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

    .policy-grid article {
        min-height: 0;
    }
}
