:root {
    --bg: #0b0b0b;
    --bg-header: #111;
    --bg-card: #141414;
    --text: #f3f3f3;
    --muted: #9a9a9a;
    --accent: #c41e3a;
    --line: #222;
    --serif: "Times New Roman", Times, Georgia, serif;
    --sans: Georgia, "Times New Roman", Times, serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
    position: sticky; top: 0; z-index: 40;
    background: color-mix(in srgb, var(--bg-header) 96%, transparent);
    border-bottom: 3px solid var(--accent);
    backdrop-filter: blur(8px);
}
.header-inner, .wrap, .footer-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 16px;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 64px; gap: 16px;
}
.brand { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; letter-spacing: 0.02em; }
.brand span { color: var(--accent); }
.desktop-menu { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.92rem; }
.desktop-menu a:hover { color: var(--accent); }
.nav-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--line); padding: 6px 10px; }
.wrap { padding-top: 18px; padding-bottom: 48px; }
.idx-hero {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-bottom: 28px;
}
.idx-hero-main { position: relative; min-height: 320px; background: var(--bg-card); overflow: hidden; }
.idx-hero-main img { width: 100%; height: 320px; object-fit: cover; }
.idx-hero-copy {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 22px 20px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
}
.idx-hero-copy h1 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.8rem; line-height: 1.2; }
.idx-hero-side { display: flex; flex-direction: column; gap: 10px; }
.idx-hero-mini { display: grid; grid-template-columns: 128px 1fr; background: var(--bg-card); border: 1px solid var(--line); min-height: 88px; }
.idx-hero-mini img { width: 128px; height: 88px; object-fit: cover; }
.idx-hero-mini div { padding: 10px 12px; }
.idx-hero-mini h2 { margin: 0; font-size: 1rem; line-height: 1.3; font-family: var(--serif); }
.kicker { color: var(--accent); font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; }
time, .muted { color: var(--muted); font-size: 0.78rem; }
.idx-sec { margin: 8px 0 28px; }
.idx-sec-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); margin-bottom: 12px; padding-bottom: 6px; }
.idx-sec-title { margin: 0; font-size: 1.15rem; font-family: var(--serif); }
.idx-more { color: var(--accent); font-size: 0.85rem; }
.idx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.idx-card { background: var(--bg-card); border: 1px solid var(--line); }
.idx-card img { width: 100%; height: 150px; object-fit: cover; }
.idx-card-body { padding: 12px 14px 14px; }
.idx-card h3 { margin: 4px 0 6px; font-size: 1.02rem; line-height: 1.35; font-family: var(--serif); }
.idx-card h3 a:hover { color: var(--accent); }
.layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.article h1 { font-family: var(--serif); font-size: 2.1rem; line-height: 1.2; margin: 0 0 8px; }
.article .meta { color: var(--muted); margin-bottom: 16px; }
.article .lead-img { width: 100%; max-height: 420px; object-fit: cover; margin: 8px 0 18px; }
.article .body { font-size: 1.12rem; line-height: 1.7; }
.article .body p { margin: 0 0 1em; }
.article .body img { margin: 1em 0; }
.side-block { background: var(--bg-card); border: 1px solid var(--line); padding: 14px; margin-bottom: 16px; }
.side-block h3 { margin: 0 0 10px; font-size: 0.95rem; font-family: var(--serif); }
.side-item { display: grid; grid-template-columns: 72px 1fr; gap: 8px; margin-bottom: 10px; }
.side-item img { width: 72px; height: 54px; object-fit: cover; }
.side-item p { margin: 0; font-size: 0.9rem; line-height: 1.3; }
.pager { display: flex; gap: 12px; margin-top: 20px; }
.pager a { color: var(--accent); }
.site-footer { border-top: 1px solid var(--line); background: #111; padding: 28px 0; color: var(--muted); }
.footer-inner { display: grid; gap: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a:hover { color: var(--text); }
.copy { font-size: 0.8rem; }
@media (max-width: 860px) {
    .idx-hero, .layout, .idx-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .desktop-menu { display: none; }
    body.nav-open .desktop-menu {
        display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
        background: #111; padding: 12px 16px 18px; border-bottom: 1px solid var(--line);
    }
    .idx-hero-main, .idx-hero-main img { min-height: 210px; height: 210px; }
    .idx-hero-copy h1 { font-size: 1.25rem; }
    .article h1 { font-size: 1.55rem; }
}
