@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@500;700;800&family=Onest:wght@400;500;700&display=swap");

:root {
    --bg: #f4efe6;
    --card: rgba(255, 252, 247, 0.86);
    --card-strong: rgba(255, 255, 255, 0.82);
    --line: rgba(76, 53, 35, 0.14);
    --ink: #2b1d12;
    --muted: #6f5a4b;
    --accent: #b8572e;
    --accent-dark: #8c3e1d;
    --success: #d9f2e3;
    --error: #f7d8d3;
    --shadow: 0 24px 65px rgba(82, 52, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(184, 87, 46, 0.18), transparent 28%),
        radial-gradient(circle at right, rgba(188, 162, 116, 0.14), transparent 25%),
        linear-gradient(135deg, #f8f2e8 0%, #efe2d4 100%);
    min-height: 100vh;
    padding-top: 96px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(248, 242, 232, 0.82);
    border-bottom: 1px solid rgba(76, 53, 35, 0.08);
    box-shadow: 0 16px 40px rgba(82, 52, 31, 0.1);
}

.topbar-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
}

.brand {
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
}

.topnav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    padding: 4px 0;
}

.topnav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.topnav a:hover {
    background: rgba(184, 87, 46, 0.1);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.page-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0 64px;
}

.blog-page .hero-card {
    grid-template-columns: 1fr;
}

.hero-card,
.form-card,
.seo-section,
.benefit-card,
.trust-item {
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    padding: 36px;
    margin-bottom: 24px;
    overflow: hidden;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 14px;
    font-weight: 800;
    scroll-margin-top: 92px;
}

section[id],
#translate-heading,
#top,
#contacts {
    scroll-margin-top: 92px;
}

h1 {
    margin: 0;
    font-family: "Prata", serif;
    font-weight: 400;
    font-size: clamp(38px, 5.8vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    max-width: 10ch;
}

.blog-page .hero-copy h1 {
    max-width: none;
}

.hero-text {
    margin-top: 18px;
    max-width: 56ch;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 18px 28px rgba(140, 62, 29, 0.25);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border: 1px solid var(--line);
}

.primary-button:hover,
.secondary-button:hover,
.submit-button:hover {
    transform: translateY(-1px);
}

.trust-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
}

.trust-pills li {
    background: rgba(184, 87, 46, 0.08);
    color: var(--ink);
    border: 1px solid rgba(184, 87, 46, 0.12);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

.hero-panel {
    display: grid;
    gap: 14px;
    align-content: end;
}

.panel-item {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(76, 53, 35, 0.1);
}

.panel-highlight {
    background: linear-gradient(180deg, rgba(184, 87, 46, 0.07), rgba(255,255,255,0.8));
}

.panel-item span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
}

.panel-item strong {
    font-size: 18px;
    line-height: 1.4;
}

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

.trust-item {
    padding: 20px 22px;
    display: grid;
    gap: 8px;
}

.trust-item strong {
    font-size: 20px;
    line-height: 1.25;
}

.trust-item span {
    color: var(--muted);
    line-height: 1.6;
}

.benefits-section {
    margin-bottom: 24px;
}

.section-title {
    margin-bottom: 18px;
}

.section-title h2 {
    margin: 0;
    font-family: "Prata", serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

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

.benefit-card {
    padding: 24px 22px;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(184, 87, 46, 0.08);
    color: var(--accent-dark);
    font-weight: 800;
    margin-bottom: 18px;
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.blog-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.article-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.article-card-link:hover .article-card {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(82, 52, 31, 0.18);
    border-color: rgba(184, 87, 46, 0.35);
}

.article-card-link:focus-visible,
.topnav a:focus-visible,
.brand:focus-visible {
    outline: 3px solid rgba(184, 87, 46, 0.28);
    outline-offset: 3px;
}

.article-card-image {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #f0e5d8;
}

.article-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 22px;
}

.article-card .benefit-number {
    margin-bottom: 14px;
}

.article-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.75em;
}

.article-card p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.1em;
}

.article-card-cta {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    font-weight: 800;
    color: var(--accent-dark);
    text-decoration: none;
    border-bottom: 0;
}

.form-card {
    padding: 32px;
}

.form-card article {
    max-width: 860px;
    margin: 0 auto;
}

.form-card article header {
    margin-bottom: 22px;
}

.form-card article h2 {
    margin: 10px 0 0;
    font-family: "Prata", serif;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.18;
}

.form-card article p,
.form-card article li,
.form-card article figcaption {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.form-card article ul {
    margin: 18px 0;
    padding-left: 22px;
}

.form-card article figure {
    margin: 24px 0;
}

.article-media-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
    gap: 26px;
    align-items: start;
    margin: 24px 0;
}

.article-media-row > div {
    display: grid;
    align-content: center;
}

.article-media-row p {
    margin: 0;
}

.article-media-row figure {
    margin: 0;
}

.form-card article img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(76, 53, 35, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

.form-card article figcaption {
    margin-top: 10px;
}

.article-cta {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(184, 87, 46, 0.28);
    background:
        radial-gradient(circle at top right, rgba(194, 118, 66, 0.22), transparent 56%),
        linear-gradient(145deg, rgba(255, 246, 232, 0.94) 0%, rgba(255, 236, 212, 0.9) 100%);
}

.article-cta h2 {
    margin: 0 0 10px;
}

.article-cta p {
    margin: 0;
}

.article-cta-actions {
    margin-top: 18px;
}

.article-cta .secondary-button {
    border-radius: 12px;
}

.seo-section {
    padding: 28px 32px 20px;
    margin-top: 24px;
}

.seo-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    font-family: "Prata", serif;
}

.seo-copy p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.last-update-text {
    font-size: 12px;
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 18px;
}

.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.document-select-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
}

label,
.field-card {
    display: grid;
    gap: 8px;
}

label span,
.field-card span {
    font-size: 14px;
    font-weight: 700;
}

select,
input,
textarea {
    width: 100%;
    border: 1px solid rgba(76, 53, 35, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.92);
    font: inherit;
    color: var(--ink);
    line-height: 1.4;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%),
        linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.2));
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 13px) calc(50% - 3px),
        100% 0;
    background-size: 5px 5px, 5px 5px, 2.5em 100%;
    background-repeat: no-repeat;
}

input,
textarea {
    appearance: none;
    background-image: none;
}

select:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(184, 87, 46, 0.55);
    box-shadow: 0 0 0 4px rgba(184, 87, 46, 0.12);
    background-color: rgba(255, 255, 255, 1);
}

.doc-description {
    border: 1px dashed var(--line);
    border-radius: 18px;
    padding: 16px;
    color: var(--muted);
    background: rgba(255, 248, 240, 0.72);
}

.dynamic-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0 30px;
}

.field-card {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.field-card small {
    display: none;
}

.driver-template-series-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
    gap: 10px;
}

.driver-template-series-label {
    font-weight: 700;
    color: var(--ink);
}

.driver-template-series-value-row {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(120px, 200px) auto minmax(160px, 260px);
    align-items: center;
    justify-content: start;
    justify-items: start;
    gap: 10px;
    text-align: left;
}

.driver-template-series-prefix,
.driver-template-series-middle {
    font-weight: 700;
    color: var(--ink);
}

.driver-template-series-row input {
    min-width: 0;
}

.driver-categories-wrap {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.driver-categories-title {
    margin: 0;
    font-size: 18px;
}

.driver-categories-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(76, 53, 35, 0.18);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    overflow: hidden;
}

.driver-categories-table th,
.driver-categories-table td {
    border: 1px solid rgba(76, 53, 35, 0.14);
    padding: 8px;
    text-align: left;
    vertical-align: middle;
}

.driver-categories-table thead th {
    background: rgba(184, 87, 46, 0.08);
    font-size: 13px;
}

.driver-categories-table tbody th {
    width: 72px;
    font-size: 13px;
    background: rgba(255, 248, 240, 0.75);
}

.driver-categories-table input {
    min-width: 120px;
    border-radius: 10px;
    padding: 10px 12px;
}

.driver-categories-hint {
    color: var(--muted);
    font-size: 12px;
}

.submit-button {
    appearance: none;
    border: 0;
    border-radius: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
    box-shadow: 0 14px 24px rgba(140, 62, 29, 0.2);
}

.submit-button:hover {
    filter: brightness(1.02);
}

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

.text-link {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.text-link:hover {
    color: var(--accent);
}

.order-page {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 64px;
}

.order-page-static .order-page {
    width: min(1120px, calc(100% - 32px));
    padding-top: 40px;
}

.order-card {
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 32px;
}

.order-header {
    margin-bottom: 24px;
}

.order-header h1 {
    max-width: none;
    margin-bottom: 12px;
}

.order-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 26px;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 14px;
}

.contact-list li {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
}

.contact-list strong {
    display: block;
    margin-bottom: 6px;
}

.order-form {
    display: grid;
    gap: 18px;
}

.site-footer {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto 48px;
    padding: 32px 0 0;
    border-top: 1px solid rgba(76, 53, 35, 0.12);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 12px 0 18px;
}

.footer-block h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.footer-block a {
    color: var(--ink);
    text-decoration: none;
}

.footer-block a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(76, 53, 35, 0.1);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.flash-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.flash {
    padding: 14px 16px;
    border-radius: 16px;
}

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

    .topbar-inner {
        width: min(100% - 20px, 1120px);
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0 14px;
    }

    .topnav {
        width: 100%;
        gap: 8px;
        justify-content: flex-start;
    }

    .topnav a {
        padding: 10px 12px;
        border-radius: 8px;
    }

    body {
        padding-top: 132px;
    }

    .page-shell,
    .order-page,
    .order-page-static .order-page,
    .site-footer {
        width: min(100% - 20px, 1120px);
    }

    .hero-card,
    .form-card,
    .seo-section,
    .benefit-card,
    .trust-item,
    .order-card {
        padding: 20px;
        border-radius: 22px;
    }

    .article-card-body {
        padding: 18px;
    }

    .article-media-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .article-media-row.article-media-right figure {
        order: 1;
    }

    .article-media-row.article-media-right > div {
        order: 2;
    }

    .article-card h3 {
        font-size: 21px;
    }

    .form-card article h2 {
        font-size: clamp(22px, 7vw, 30px);
    }

    .article-cta {
        padding: 18px;
        border-radius: 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}

.flash-error {
    background: var(--error);
    color: #6a2213;
}

.flash-success {
    background: var(--success);
    color: #194d2d;
}

@media (max-width: 860px) {
    .hero-card,
    .two-cols,
    .document-select-grid,
    .dynamic-fields,
    .trust-strip,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .driver-template-series-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .driver-template-series-value-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .article-card-image {
        height: 170px;
    }

    .page-shell {
        width: min(100% - 20px, 1120px);
        padding-top: 20px;
    }

    .hero-card,
    .form-card,
    .seo-section,
    .benefit-card,
    .trust-item {
        padding: 22px;
        border-radius: 24px;
    }

    h1 {
        max-width: none;
        font-size: clamp(26px, 8.8vw, 38px);
    }

    .topbar-inner {
        min-height: 62px;
    }
}

/* Relocation visual theme overrides for all pages using styles.css */
:root {
    --bg: #fffaf2;
    --card: rgba(255, 255, 255, 0.8);
    --card-strong: rgba(255, 255, 255, 0.88);
    --line: rgba(27, 26, 23, 0.12);
    --ink: #1b1a17;
    --muted: #5c5648;
    --accent: #e85d04;
    --accent-dark: #c44900;
    --success: #e6f4ea;
    --error: #fbe3de;
    --shadow: 0 20px 50px rgba(52, 28, 5, 0.14);
}

body {
    font-family: "Onest", "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, #ffe4c2 0%, transparent 45%),
        radial-gradient(circle at 90% 20%, #fdd8a4 0%, transparent 40%),
        var(--bg);
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 40vw;
    height: 40vw;
    border-radius: 999px;
    filter: blur(64px);
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}

body::before {
    left: -18vw;
    top: 10vh;
    background: #ffb347;
}

body::after {
    right: -15vw;
    top: 45vh;
    background: #ffd166;
}

.topbar {
    backdrop-filter: blur(16px);
    background: rgba(255, 250, 242, 0.82);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(52, 28, 5, 0.08);
}

.brand,
h1,
h2,
.section-title h2,
.form-card article h2,
.seo-copy h2 {
    font-family: "Unbounded", "Prata", serif;
}

h1 {
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.section-title h2,
.form-card article h2,
.seo-copy h2 {
    letter-spacing: -0.01em;
}

.topnav a {
    border-radius: 10px;
    font-weight: 600;
}

.topnav a:hover {
    background: rgba(232, 93, 4, 0.1);
    color: var(--accent-dark);
    transform: translateY(-2px);
}

.hero-card,
.form-card,
.seo-section,
.benefit-card,
.trust-item,
.order-card,
.article-card {
    border: 1px solid var(--line);
    background: var(--card);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.article-card {
    border-radius: 20px;
}

.hero-text,
.benefit-card p,
.trust-item span,
.seo-copy p,
.form-card article p,
.form-card article li,
.form-card article figcaption,
.footer-block ul,
.footer-bottom {
    color: var(--muted);
}

.benefit-number {
    background: rgba(232, 93, 4, 0.1);
    color: var(--accent-dark);
    border-radius: 14px;
}

.primary-button,
.submit-button {
    border-radius: 12px;
    background: var(--accent);
    box-shadow: 0 10px 30px rgba(232, 93, 4, 0.28);
}

.primary-button:hover,
.submit-button:hover {
    background: var(--accent-dark);
}

.secondary-button {
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.6);
}

select,
input,
textarea {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
}

select:focus,
input:focus,
textarea:focus {
    border-color: rgba(232, 93, 4, 0.55);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.12);
}

.doc-description,
.contact-list li,
.panel-item,
.driver-categories-table {
    background: rgba(255, 255, 255, 0.74);
    border-color: var(--line);
}

.driver-categories-table thead th {
    background: rgba(232, 93, 4, 0.09);
}

.driver-categories-table tbody th {
    background: rgba(255, 244, 230, 0.8);
}

.site-footer {
    border-top: 1px solid var(--line);
}

.footer-bottom {
    border-top: 1px solid var(--line);
}

.article-card-link:hover .article-card {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(52, 28, 5, 0.2);
    border-color: rgba(232, 93, 4, 0.32);
}

.article-card-link:focus-visible,
.topnav a:focus-visible,
.brand:focus-visible {
    outline: 3px solid rgba(232, 93, 4, 0.24);
    outline-offset: 3px;
}

@media (max-width: 860px) {
    h1 {
        font-size: clamp(24px, 7.1vw, 35px);
        line-height: 1.14;
        letter-spacing: -0.01em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(22px, 6.8vw, 30px);
    }
}
