*, *::before, *::after { box-sizing: border-box; }

:root {
    --ink: #2c2318;
    --ink-2: #55483a;
    --muted: #8a7a68;
    --line: #e6dccb;
    --line-2: #d4c8b3;
    --bg: #f9f5ec;
    --bg-2: #f2ebda;
    --card: #ffffff;
    --accent: #b56b3a;
    --accent-2: #8a4a1e;
    --accent-soft: #f7ebd8;
    --serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }

.an-header {
    background: var(--card);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}
.an-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.an-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.an-brand:hover { text-decoration: none; }
.an-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3a2e1f, #1e1810);
    color: var(--bg);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
}
.an-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.an-brand-text strong {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.an-brand-text em {
    font-style: italic;
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
    font-weight: 400;
}
.an-nav {
    display: flex;
    gap: 22px;
    align-items: center;
}
.an-nav a {
    color: var(--ink-2);
    font-size: 14.5px;
    font-weight: 500;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.an-nav a:hover {
    color: var(--accent-2);
    text-decoration: none;
    border-bottom-color: var(--accent);
}
.an-nav a.is-active {
    color: var(--accent-2);
    border-bottom-color: var(--accent);
}

.an-search {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    min-width: 220px;
    transition: border-color 0.15s;
}
.an-search:focus-within { border-color: var(--accent); background: var(--card); }
.an-search svg { color: var(--muted); flex-shrink: 0; }
.an-search input {
    background: transparent;
    border: 0;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--ink);
    width: 100%;
    padding: 2px 0;
}
.an-search input::placeholder { color: var(--muted); }

.an-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 22px;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(58, 46, 31, 0.04);
    flex-wrap: wrap;
}
.an-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 100px;
}
.an-stat strong {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--accent-2);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}
.an-stat span {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.01em;
}

.an-comments {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 2px solid var(--line);
}
.an-comments h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--serif);
    font-size: 20px;
    margin: 0 0 18px;
    color: var(--ink);
    font-weight: 700;
}
.an-comments h3 svg { color: var(--accent-2); }
.an-comments-list {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}
.an-comment {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
}
.an-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b56b3a, #8a4a1e);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(138, 74, 30, 0.2);
}
.an-comment-body { flex: 1; min-width: 0; }
.an-comment-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.an-comment-head strong {
    color: var(--ink);
    font-size: 14px;
    font-family: var(--serif);
}
.an-comment-head span {
    color: var(--muted);
    font-size: 12px;
}
.an-comment-body p {
    margin: 0;
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.55;
}
.an-comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px;
}
.an-comment-form textarea {
    padding: 10px 12px;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    background: var(--bg);
    color: var(--ink);
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
    resize: vertical;
    transition: border-color 0.15s;
}
.an-comment-form textarea:focus { border-color: var(--accent); background: var(--card); }
.an-comment-form button {
    align-self: flex-end;
    padding: 8px 16px;
    background: linear-gradient(135deg, #b56b3a, #8a4a1e);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.15s;
}
.an-comment-form button:hover { filter: brightness(1.1); }

.an-footer-brand { max-width: 300px; }
.an-footer-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #b56b3a, #8a4a1e);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.an-social-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}
.an-social-mini {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #cfc4b0;
    display: grid;
    place-items: center;
    cursor: default;
    transition: all 0.15s;
}
.an-social-mini:hover {
    background: var(--accent);
    color: #fff;
}
.an-footer-sep {
    opacity: 0.4;
    margin: 0 4px;
}
.an-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    align-items: center;
}
.an-footer-bottom a { color: #a89982; text-decoration: underline; }

.an-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.an-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #d97706);
    z-index: 100;
    transition: width 0.05s ease-out;
    box-shadow: 0 0 8px rgba(181, 107, 58, 0.4);
}

.an-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-on .an-reveal {
    opacity: 0;
    transform: translateY(20px);
}
.js-on .an-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.an-hero {
    max-width: 780px;
    margin: 12px 0 34px;
}
.an-hero h1 {
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1.12;
    margin: 0 0 16px;
    color: var(--ink);
    letter-spacing: -0.02em;
    font-weight: 700;
}
.an-hero-accent {
    background: linear-gradient(135deg, #b56b3a, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}
.an-hero p {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.6;
    margin: 0;
}

.an-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.an-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.01em;
    transition: all 0.15s;
    cursor: default;
}
.an-cat-pill:hover {
    border-color: var(--cat-color, var(--line-2));
    background: color-mix(in srgb, var(--cat-color, var(--line)) 8%, var(--card));
}
.an-cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cat-color, var(--muted));
    box-shadow: 0 0 6px currentColor;
    color: var(--cat-color, var(--muted));
    flex-shrink: 0;
}

.an-section-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    letter-spacing: -0.01em;
}

.an-grid { margin-bottom: 44px; }

.an-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.an-cards-small {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.an-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    color: var(--ink);
    display: flex;
    flex-direction: column;
}
.an-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(58, 46, 31, 0.14);
    border-color: var(--line-2);
}
.an-card:hover .an-card-img svg {
    transform: scale(1.08);
}
.an-card-img svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.an-card-img {
    position: relative;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}
.an-card-img svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.an-watermark {
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: rgba(255,255,255,0.55);
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.an-cards-small .an-card-img { aspect-ratio: 2.4 / 1; }

.an-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.an-card-cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--cat-color, var(--accent-2));
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.an-card-cat .an-cat-dot {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 5px currentColor;
}

.an-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
    font-size: 12px;
    color: var(--muted);
}
.an-card-meta .an-card-more {
    color: var(--accent-2);
    font-weight: 600;
    padding-top: 0;
}
.an-card-body h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.an-card-body p {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.5;
}
.an-card-more {
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
    padding-top: 8px;
}
.an-cards-small .an-card-body h3 { font-size: 16px; }
.an-cards-small .an-card-body { padding: 12px 14px 14px; gap: 6px; }

.an-newsletter {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fbf7ec, #f2ead5);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin: 20px 0 34px;
    box-shadow: 0 4px 14px rgba(58, 46, 31, 0.05);
}
.an-nl-body {
    display: flex;
    align-items: center;
    gap: 16px;
}
.an-nl-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #b56b3a, #8a4a1e);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(138, 74, 30, 0.3);
}
.an-newsletter h3 {
    font-family: var(--serif);
    font-size: 18px;
    margin: 0 0 4px;
    color: var(--ink);
    font-weight: 700;
}
.an-newsletter p {
    font-size: 13px;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.5;
}
.an-nl-form {
    display: flex;
    gap: 8px;
    max-width: 100%;
}
.an-nl-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 13px;
    color: var(--ink);
    outline: none;
    min-width: 0;
    transition: border-color 0.15s;
}
.an-nl-form input:focus { border-color: var(--accent); }
.an-nl-form button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #b56b3a, #8a4a1e);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.15s;
}
.an-nl-form button:hover { filter: brightness(1.1); }

.an-article-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}
.an-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}
.an-meta-item svg { color: var(--accent-2); }

.an-share {
    padding: 12px 14px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.an-share-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-right: auto;
}
.an-share-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--bg-2);
    color: var(--muted);
    display: grid;
    place-items: center;
    cursor: default;
    transition: all 0.15s;
}
.an-share-btn:hover {
    background: var(--accent);
    color: #fff;
}

.an-people-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a2e1f, #1e1810);
    color: var(--bg);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(58, 46, 31, 0.2);
}
.an-people-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.an-people-info span {
    color: var(--muted);
    font-size: 12.5px;
}

.an-updates {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px 28px;
}
.an-updates ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.an-updates li {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14.5px;
}
.an-updates li:last-child { border-bottom: 0; }
.an-updates .an-date {
    color: var(--muted);
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
}
.an-updates .an-cat {
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.an-updates li a {
    color: var(--ink);
    font-weight: 600;
    font-family: var(--serif);
}
.an-updates li a:hover { color: var(--accent-2); }

.an-breadcrumb {
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--muted);
}
.an-breadcrumb a { color: var(--accent-2); }
.an-breadcrumb span { color: var(--ink); font-weight: 600; }

.an-article {
    max-width: 900px;
}
.an-article-head {
    margin-bottom: 22px;
}
.an-article-head h1 {
    font-family: var(--serif);
    font-size: 40px;
    line-height: 1.15;
    margin: 8px 0 12px;
    color: var(--ink);
    letter-spacing: -0.02em;
    font-weight: 700;
}
.an-lede {
    font-size: 17.5px;
    color: var(--ink-2);
    line-height: 1.55;
    margin: 0 0 10px;
    font-style: italic;
}
.an-meta {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

.an-article-hero {
    aspect-ratio: 3.5 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
}
.an-article-hero svg {
    width: 100%;
    height: 100%;
    display: block;
}

.an-article-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

.an-infobox {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.an-infobox-title {
    background: var(--bg-2);
    padding: 12px 16px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}
.an-infobox table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.an-infobox th, .an-infobox td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}
.an-infobox th {
    color: var(--muted);
    font-weight: 600;
    font-size: 12px;
    width: 40%;
}
.an-infobox td { color: var(--ink); }
.an-infobox tr:last-child th, .an-infobox tr:last-child td { border-bottom: 0; }

.an-article-content {
    min-width: 0;
}
.an-article-content h2 {
    font-family: var(--serif);
    font-size: 26px;
    margin: 28px 0 12px;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.an-article-content h2:first-child { margin-top: 0; }
.an-article-content p {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--ink);
    line-height: 1.72;
}

.an-related {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 2px solid var(--line);
}
.an-related h3 {
    font-family: var(--serif);
    font-size: 20px;
    margin: 0 0 16px;
    color: var(--ink);
    font-weight: 700;
}

.an-static {
    max-width: 720px;
}
.an-static h1 {
    font-family: var(--serif);
    font-size: 38px;
    margin: 0 0 12px;
    color: var(--ink);
    letter-spacing: -0.02em;
    font-weight: 700;
}
.an-static h2 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--ink);
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line);
}
.an-static p {
    margin: 0 0 14px;
    color: var(--ink);
    line-height: 1.7;
}
.an-people {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 4px;
}
.an-people li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.an-people li:last-child { border-bottom: 0; }
.an-people li strong { color: var(--ink); font-family: var(--serif); font-size: 16px; display: block; }

.an-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.an-nav a svg {
    color: var(--muted);
    transition: color 0.15s;
}
.an-nav a:hover svg, .an-nav a.is-active svg { color: var(--accent); }

.an-form label {
    position: relative;
    padding-left: 22px;
}
.an-form label svg {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--muted);
}

.an-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    padding: 22px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
}
.an-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}
.an-form input, .an-form textarea {
    padding: 10px 12px;
    border: 1px solid var(--line-2);
    border-radius: 6px;
    background: var(--bg);
    color: var(--ink);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s;
}
.an-form input:focus, .an-form textarea:focus {
    border-color: var(--accent);
    background: var(--card);
}
.an-form textarea { resize: vertical; }
.an-form button {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 11px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}
.an-form button:hover { background: var(--accent-2); }
.an-form-hint {
    font-size: 12.5px;
    color: var(--muted);
    margin: 4px 0 0;
    text-align: center;
}
.an-form-hint span {
    font-family: "SF Mono", Consolas, monospace;
    color: var(--ink-2);
    background: var(--bg-2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.an-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}
.an-social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-2);
    color: var(--muted);
    display: grid;
    place-items: center;
    transition: all 0.15s;
    cursor: default;
}
.an-social-item svg { width: 18px; height: 18px; }
.an-social-item:hover { background: var(--accent-soft); color: var(--accent-2); }

.an-footer {
    background: #1e1810;
    color: #cfc4b0;
    margin-top: 60px;
    padding: 40px 24px 20px;
}
.an-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 30px;
    border-bottom: 1px solid #3a2e1f;
}
.an-footer strong {
    font-family: var(--serif);
    font-size: 18px;
    color: #f9f5ec;
    display: block;
    margin-bottom: 8px;
}
.an-footer p {
    font-size: 13px;
    color: #a89982;
    margin: 0;
    line-height: 1.55;
}
.an-footer h4 {
    font-family: var(--serif);
    font-size: 14px;
    color: #f9f5ec;
    margin: 0 0 10px;
    font-weight: 700;
}
.an-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.an-footer li a {
    color: #a89982;
    font-size: 13px;
    line-height: 2;
}
.an-footer li a:hover { color: var(--accent); }
.an-footer-bottom {
    max-width: 1120px;
    margin: 16px auto 0;
    text-align: center;
    font-size: 12px;
    color: #756855;
}

@media (max-width: 780px) {
    .an-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .an-nav {
        gap: 14px;
        flex-wrap: wrap;
        font-size: 13px;
    }
    .an-hero h1 { font-size: 30px; }
    .an-cards, .an-cards-small { grid-template-columns: 1fr; }
    .an-article-body { grid-template-columns: 1fr; }
    .an-infobox { position: static; }
    .an-article-head h1 { font-size: 28px; }
    .an-updates li { grid-template-columns: 1fr; gap: 4px; }
    .an-footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .an-newsletter { grid-template-columns: 1fr; padding: 20px; }
    .an-nl-form { flex-direction: column; }
    .an-article-meta { gap: 10px; }
    .an-search { min-width: 0; width: 100%; }
    .an-stats-row { gap: 12px; padding: 14px; }
    .an-stat strong { font-size: 20px; }
}
