:root {
    --page-bg: #F9F6F1;
    --surface: #FFFFFF;
    --text: #1F1F1F;
    --muted: #5F5A54;
    --border: #D9D0C4;
    --border-strong: #B8A996;
    --logo-gold: #AC926D;
    --accent: #745432;
    --accent-hover: #5E4328;
    --accent-soft: #F1E9DF;
    --dark: #1F1F1F;
    --light: #FFFFFF;
    --error-bg: #1F1F1F;
    --error-text: #FFFFFF;
    --content-width: 700px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::selection {
    background: var(--dark);
    color: var(--light);
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 56px 20px;
    background: var(--page-bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.72;
    letter-spacing: 0.002em;
    overflow-wrap: break-word;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main:focus {
    outline: 3px solid var(--accent);
    outline-offset: 6px;
}

main:focus:not(:focus-visible) {
    outline: none;
}

h1,
h2,
h3 {
    color: var(--text);
    text-wrap: balance;
}

h1 {
    max-width: 15ch;
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 7vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h2 {
    margin: 64px 0 24px;
    font-size: clamp(1.65rem, 5vw, 2rem);
    font-weight: 760;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h3 {
    margin: 34px 0 14px;
    font-size: 1.25rem;
    font-weight: 740;
    line-height: 1.35;
}

p {
    margin-bottom: 24px;
}

ul,
ol {
    margin: 0 0 24px 24px;
}

li {
    margin-bottom: 12px;
}

a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--dark);
    color: var(--light);
    font-weight: 700;
    transform: translateY(-180%);
}

.skip-link:focus {
    color: var(--light);
    transform: translateY(0);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.site-header {
    margin-bottom: 72px;
    text-align: center;
}

.logo-link {
    display: block;
    width: 80%;
    max-width: 528px;
    margin: 0 auto 34px;
}

.logo {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.main-nav a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 5px;
    color: var(--text);
    font-size: 14px;
    font-weight: 720;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.main-nav .phone-nav-link {
    padding: 0 14px;
    border: 1px solid var(--dark);
    border-radius: 4px;
    background: transparent;
    color: var(--dark);
}

.main-nav .phone-nav-link:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--light);
    text-decoration: none;
}

.hero {
    margin: 0 0 clamp(84px, 13vw, 112px);
}

.hero-kicker {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 62ch;
    margin-bottom: 32px;
    color: #3F3B36;
    font-size: clamp(1.08rem, 2.7vw, 1.25rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    align-items: center;
}

.hero-phone {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    color: var(--text);
    font-weight: 720;
    text-decoration-color: var(--accent);
}

.section-block {
    margin: 0 0 clamp(84px, 13vw, 112px);
}

.section-block > h2,
.faq-section > h2,
.contact-form-section > h2,
.cta > h2 {
    margin-top: 0;
}

.section-intro {
    max-width: 60ch;
    color: var(--muted);
}

.practice-list {
    margin: 0;
    list-style: none;
}

.practice-list li {
    margin: 0;
}

.practice-list li + li {
    border-top: 1px solid var(--border);
}

.practice-list a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 2px;
    color: var(--text);
    font-size: 17px;
    font-weight: 720;
    line-height: 1.4;
    text-decoration: none;
}

.practice-list a:hover {
    color: var(--accent);
}

.link-arrow {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 1.15em;
}

.principles-list {
    margin-left: 22px;
}

.cta {
    margin: clamp(84px, 13vw, 112px) 0 48px;
    padding: clamp(34px, 7vw, 48px);
    border: 1px solid var(--border);
    background: var(--surface);
    text-align: left;
}

.cta h2 {
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 4.5vw, 1.9rem);
}

.cta p {
    max-width: 52ch;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.06rem;
}

.btn,
button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    background: var(--accent);
    color: var(--light);
    font: inherit;
    font-size: 15px;
    font-weight: 780;
    letter-spacing: 0.045em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.btn:hover,
button:hover {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    color: var(--light);
}

.faq-details summary {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 20px 62px 20px 22px;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.faq-details summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--accent);
    content: "+";
    font-size: 28px;
    font-weight: 420;
    line-height: 1;
    transform: translateY(-50%);
}

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

.faq-content > :last-child {
    margin-bottom: 0;
}

.faq-section {
    margin: clamp(84px, 13vw, 112px) 0;
}

.faq-details {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.faq-details[open] {
    background: var(--accent-soft);
}

.faq-details summary {
    min-height: 64px;
    font-size: 18px;
    font-weight: 720;
}

.faq-content {
    padding: 0 22px 24px;
}

.steps-list-detailed li strong,
.steps-list-detailed li span {
    display: block;
}

.steps-list-detailed li strong {
    margin-bottom: 5px;
}

.steps-list-detailed li span {
    color: var(--muted);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    align-items: center;
}

.text-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    color: var(--text);
    font-weight: 720;
}

.urgent-contact-note {
    padding-left: 18px;
    border-left: 3px solid var(--logo-gold);
}

.service-guidance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    margin: 0 0 clamp(84px, 13vw, 112px);
    padding: 30px 0;
    border-top: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border);
}

.service-guidance h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
}

.service-guidance ul {
    margin: 0 0 0 20px;
}

.service-guidance li {
    margin-bottom: 10px;
}

.service-guidance-label {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.service-guidance-note {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.legal-note {
    margin-bottom: 40px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.contact-details {
    margin: 40px 0 72px;
}

.contact-details p {
    margin-bottom: 16px;
}

.phone-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid var(--dark);
    border-radius: 4px;
    background: transparent;
    color: var(--dark);
    font-size: 17px;
    font-weight: 720;
    text-decoration: none;
}

.phone-link:hover {
    background: var(--dark);
    color: var(--light);
}

.contact-form-section {
    scroll-margin-top: 24px;
}

.form-group {
    margin-bottom: 26px;
}

label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 740;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 18px;
    appearance: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
select:hover,
textarea:hover {
    border-color: var(--text);
}

textarea {
    min-height: 190px;
    resize: vertical;
}

select {
    min-height: 56px;
    padding-right: 15px;
    appearance: auto;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: #8A2F23;
}

.field-error {
    margin-top: 8px;
    margin-bottom: 0;
    color: #7A241B;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.form-intro {
    margin-bottom: 30px;
    color: var(--muted);
}

.form-choice {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 4px 0 30px;
}

.form-choice input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-choice label {
    margin: 0;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

.field-help,
.form-note {
    margin-top: 8px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.form-note {
    margin-top: 16px;
}

.form-trap {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.success-message,
.error-message {
    margin: 0 0 30px;
    padding: 20px;
    border: 2px solid var(--dark);
    background: var(--surface);
    color: var(--text);
    font-size: 18px;
    font-weight: 720;
    text-align: center;
}

.error-message {
    background: var(--error-bg);
    color: var(--error-text);
}

.centered-link {
    text-align: center;
}

.document-meta {
    margin-top: 50px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer {
    margin-top: 96px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.site-footer p {
    margin-bottom: 12px;
    text-align: center;
}

.site-footer a {
    font-size: 14px;
}

.footer-phone {
    margin-bottom: 20px !important;
}

.footer-privacy-link {
    margin-top: 10px;
}

.privacy-info {
    margin-top: 12px;
    font-size: 12px;
}

@media (max-width: 600px) {
    body {
        padding: 30px 15px;
        font-size: 17px;
    }

    .site-header {
        margin-bottom: 56px;
    }

    .logo-link {
        width: 92%;
        max-width: 460px;
        margin-bottom: 28px;
    }

    .main-nav {
        gap: 7px 10px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .text-cta {
        justify-content: center;
    }

    .service-guidance-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-phone {
        justify-content: center;
    }

    .btn,
    button {
        width: 100%;
    }

    .practice-list a {
        min-height: 60px;
        padding: 15px 0;
        font-size: 16px;
    }

    .faq-details summary {
        padding-right: 54px;
        padding-left: 18px;
    }

    .faq-details summary::after {
        right: 18px;
    }

    .cta {
        padding: 30px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (forced-colors: active) {
    .main-nav .phone-nav-link,
    .phone-link,
    .btn,
    button,
    .faq-details,
    .success-message,
    .error-message {
        border: 2px solid ButtonText;
    }
}

/* ================================================================
   SEO i architektura treści — v1.6.0
   ================================================================ */

.breadcrumbs {
    margin: -40px 0 48px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: 8px;
    color: var(--border-strong);
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.page-intro {
    margin-bottom: clamp(72px, 11vw, 96px);
}

.page-intro h1 {
    max-width: 18ch;
}

.section-link {
    margin-top: 28px;
    font-weight: 700;
}

.scope-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}

.scope-item {
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.scope-item h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.scope-item p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
}

.steps-list {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: legal-steps;
}

.steps-list li {
    position: relative;
    min-height: 48px;
    margin: 0 0 22px;
    padding-left: 54px;
    counter-increment: legal-steps;
}

.steps-list li::before {
    content: counter(legal-steps);
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--logo-gold);
    background: var(--accent-soft);
    color: var(--accent-hover);
    font-weight: 800;
}

.related-services {
    margin-top: clamp(72px, 11vw, 96px);
}

.related-list {
    margin: 0;
    list-style: none;
    border-top: 1px solid var(--border);
}

.related-list li {
    margin: 0;
    border-bottom: 1px solid var(--border);
}

.related-list a {
    display: flex;
    min-height: 56px;
    align-items: center;
    color: var(--text);
    font-weight: 720;
    text-decoration: none;
}

.related-list a::after {
    content: "→";
    margin-left: auto;
    color: var(--accent);
}

.related-list a:hover {
    color: var(--accent);
}

.document-section + .document-section {
    margin-top: clamp(72px, 11vw, 96px);
}

.document-section > h2 {
    margin-top: 0;
}

.contact-preparation {
    margin: 64px 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-bottom: 32px;
}

.footer-nav a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.copyright {
    margin-top: 18px;
    font-size: 12px;
}

@media (max-width: 600px) {
    .breadcrumbs {
        margin-top: -20px;
        margin-bottom: 38px;
    }

    .steps-list li {
        padding-left: 48px;
    }
}

/* ================================================================
   Katalog obszarów praktyki — v1.6.3
   Jeden spójny układ dla wszystkich dziedzin prawa.
   ================================================================ */

.practice-directory {
    margin-top: 40px;
    border-top: 1px solid var(--border-strong);
}

.practice-directory-services {
    margin-top: 36px;
}

.practice-entry {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    gap: 18px;
    align-items: center;
    min-height: 150px;
    padding: 28px 6px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
}

.practice-entry:hover {
    background: var(--surface);
    color: var(--text);
}

.practice-entry-number {
    align-self: start;
    padding-top: 5px;
    color: var(--logo-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.practice-entry-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.practice-entry-label {
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.4;
    text-transform: uppercase;
}

.practice-entry-title {
    color: var(--text);
    font-size: clamp(1.3rem, 4vw, 1.55rem);
    font-weight: 780;
    letter-spacing: -0.018em;
    line-height: 1.25;
}

.practice-entry-description {
    max-width: 57ch;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.62;
}

.practice-entry-arrow {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1rem;
}

.practice-entry:hover .practice-entry-arrow {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--light);
}

@media (max-width: 600px) {
    .practice-entry {
        grid-template-columns: 30px minmax(0, 1fr) 26px;
        gap: 12px;
        min-height: 0;
        padding: 24px 0;
    }

    .practice-entry-number {
        font-size: 0.7rem;
    }

    .practice-entry-label {
        font-size: 0.66rem;
    }

    .practice-entry-description {
        font-size: 0.92rem;
    }

    .practice-entry-arrow {
        width: 26px;
        height: 26px;
    }
}

/* ================================================================
   Rozdzielenie ról strony głównej i katalogu usług — od v1.6.4
   Strona główna: zwięzły przegląd. /uslugi: pełny katalog 01–08.
   ================================================================ */

.practice-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    border-top: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border);
}

.practice-summary-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 16px;
    align-items: center;
    min-height: 116px;
    padding: 22px 22px 22px 0;
    color: var(--text);
    text-decoration: none;
}

.practice-summary-item:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid var(--border);
}

.practice-summary-item:nth-child(even) {
    padding-left: 28px;
}

.practice-summary-item:not(:nth-last-child(-n + 2)) {
    border-bottom: 1px solid var(--border);
}

.practice-summary-item:hover {
    background: var(--surface);
    color: var(--text);
}

.practice-summary-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.practice-summary-title {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 770;
    letter-spacing: -0.012em;
    line-height: 1.35;
}

.practice-summary-description {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.practice-summary-arrow {
    color: var(--accent);
    font-size: 1.05rem;
    line-height: 1;
    text-align: right;
}

.practice-summary-item:hover .practice-summary-title,
.practice-summary-item:hover .practice-summary-arrow {
    color: var(--accent);
}

.section-link-prominent {
    margin-top: 30px;
}

.section-link-prominent a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    font-weight: 760;
}

@media (max-width: 600px) {
    .practice-summary-grid {
        grid-template-columns: 1fr;
    }

    .practice-summary-item,
    .practice-summary-item:nth-child(odd),
    .practice-summary-item:nth-child(even) {
        min-height: 0;
        padding: 20px 2px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .practice-summary-item:last-child {
        border-bottom: 0;
    }

    .practice-summary-description {
        font-size: 0.9rem;
    }
}

/* ================================================================
   Blog Grav — roszczypala.pl v1.9.1
   Publiczna część bloga korzysta z tego samego arkusza co kancelaria.
   ================================================================ */

.blog-intro {
    margin-bottom: clamp(72px, 11vw, 96px);
}

.blog-page-copy {
    max-width: 62ch;
    color: var(--muted);
}

.article-list {
    border-top: 1px solid var(--border-strong);
}

.article-list-item {
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
}

.article-list-item h3 {
    margin: 8px 0 12px;
    font-size: clamp(1.35rem, 4vw, 1.7rem);
}

.article-list-item h3 a {
    color: var(--text);
    text-decoration: none;
}

.article-list-item h3 a:hover {
    color: var(--accent);
}

.article-list-item > p:not(.article-meta):not(.article-read-more) {
    color: var(--muted);
}

.article-meta,
.article-byline {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 0;
}

.article-read-more {
    margin-bottom: 0;
    font-weight: 720;
}

.article-header h1 {
    max-width: 19ch;
}

.article-byline {
    margin-top: 28px;
}

.article-hero {
    margin: -24px 0 52px;
}

.article-hero img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-content {
    font-size: 1rem;
}

.article-content h2 {
    margin-top: 64px;
}

.article-content h3 {
    margin-top: 42px;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

.article-content blockquote {
    margin: 36px 0;
    padding: 4px 0 4px 24px;
    border-left: 3px solid var(--logo-gold);
    color: var(--muted);
}

.article-content table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.article-content th,
.article-content td {
    padding: 12px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.article-content th {
    background: var(--accent-soft);
}

.article-tags {
    margin-top: 42px;
    color: var(--muted);
    font-size: 0.9rem;
}

.article-legal-note {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.article-cta {
    margin-top: 64px;
}

.back-to-blog {
    margin-top: 48px;
    font-weight: 720;
}

.blog-pagination {
    margin-top: 42px;
}

.blog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    list-style: none;
}

.blog-pagination .pagination li {
    margin: 0;
}

.blog-pagination .pagination a,
.blog-pagination .pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
}

.blog-pagination .pagination a:hover,
.blog-pagination .pagination .active > span,
.blog-pagination .pagination .current {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--light);
}

@media (max-width: 600px) {
    .article-list-item {
        padding: 28px 0;
    }

    .article-content table {
        display: block;
        overflow-x: auto;
    }
}
