@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
  --bg: #faf8f4;
  --text: #1a1714;
  --muted: #6b6460;
  --accent: #b5470a;
  --accent-light: #f5ede6;
  --border: #e0dbd4;
  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.9;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-en {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.logo-ja {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .05em;
  line-height: 1;
}
.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header-nav a {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .05em;
  transition: color .2s;
}
.header-nav a:hover { color: var(--accent); }
.header-nav .cta {
  background: var(--accent);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  transition: opacity .2s;
}
.header-nav .cta:hover { opacity: .85; color: var(--white); }

/* ─── HERO ─── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 480px;
  align-items: center;
  gap: 0;
}
.hero-text {
  padding: 72px 56px 72px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-eyebrow span {
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 2px;
  letter-spacing: .06em;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }
.btn-primary::after { content: '→'; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 2px;
  border: 1px solid var(--border);
  letter-spacing: .06em;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.hero-visual {
  background: var(--accent-light);
  height: 100%;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
/* Decorative SVG illustration */
.hero-oven-icon {
  width: 180px;
  opacity: .18;
}
.hero-visual-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  line-height: 1.7;
  opacity: .7;
  font-weight: 600;
  letter-spacing: .06em;
}
/* Abstract lines decoration */
.hero-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 60px solid rgba(181,71,10,.07);
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 40px solid rgba(181,71,10,.06);
}

/* ─── TOPIC BAND ─── */
.topic-band {
  background: var(--text);
  padding: 0;
  overflow: hidden;
}
.topic-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}
.topic-band-label {
  background: var(--accent);
  color: var(--white);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 22px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.topic-list {
  display: flex;
  gap: 0;
  overflow: hidden;
}
.topic-item {
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 13px 22px;
}
.topic-item a {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
  white-space: nowrap;
  transition: color .2s;
}
.topic-item a:hover { color: var(--white); }

/* ─── SECTION WRAPPER ─── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--text);
}
.section-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title .en {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
}
.section-more {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.section-more:hover { gap: 8px; }
.section-more::after { content: '→'; }

/* ─── FEATURED ARTICLE (big card) ─── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.featured-main {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .2s;
  cursor: pointer;
}
.featured-main:hover { background: #fdfcfa; }
.featured-sub-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.featured-sub {
  background: var(--white);
  padding: 28px 32px;
  flex: 1;
  transition: background .2s;
  cursor: pointer;
}
.featured-sub:hover { background: #fdfcfa; }

.article-category {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent-light);
}
.article-title-lg {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .03em;
  margin-bottom: 16px;
  color: var(--text);
}
.article-title-md {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .02em;
  margin-bottom: 10px;
  color: var(--text);
}
.article-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
  flex: 1;
}
.article-excerpt-sm {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #aaa;
  letter-spacing: .05em;
}
.article-meta .tag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 10.5px;
  font-weight: 500;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: .06em;
  margin-top: auto;
  transition: gap .2s;
}
.read-more:hover { gap: 9px; }
.read-more::after { content: '→'; }

/* ─── ARTICLE CARD GRID ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.card {
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background .2s;
}
.card:hover { background: #fdfcfa; }
.card-number {
  font-size: 11px;
  color: var(--border);
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 16px;
  font-family: var(--sans);
}

/* ─── CATEGORY SECTION ─── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px 20px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.category-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(181,71,10,.08);
}
.category-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}
.category-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.category-count {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ─── DIVIDER ─── */
.section-divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-divider hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* ─── EDITORIAL BAND ─── */
.editorial-band {
  background: var(--text);
  padding: 64px 0;
}
.editorial-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.editorial-text .eyebrow {
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.editorial-text h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: .03em;
  margin-bottom: 18px;
}
.editorial-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 2;
  margin-bottom: 28px;
}
.editorial-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.editorial-list li {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  transition: opacity .2s;
}
.editorial-list li:hover { opacity: .75; }
.editorial-list li:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.list-num {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .1em;
  padding-top: 3px;
  flex-shrink: 0;
}
.list-title {
  font-family: var(--serif);
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.list-meta {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
  letter-spacing: .04em;
}

/* ─── NEWSLETTER / CTA BAND ─── */
.cta-band {
  background: var(--accent-light);
  border-top: 1px solid rgba(181,71,10,.15);
  border-bottom: 1px solid rgba(181,71,10,.15);
  padding: 52px 0;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text .eyebrow {
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}
.cta-text h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .03em;
}
.cta-text p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
}
.cta-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.cta-form input {
  border: 1px solid rgba(181,71,10,.25);
  border-right: none;
  background: var(--white);
  padding: 11px 18px;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--text);
  width: 260px;
  outline: none;
  border-radius: 2px 0 0 2px;
}
.cta-form input::placeholder { color: #bbb; }
.cta-form input:focus { border-color: var(--accent); }
.cta-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 11px 22px;
  font-size: 12.5px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: opacity .2s;
  white-space: nowrap;
}
.cta-form button:hover { opacity: .85; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--text);
  padding: 56px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-logo .logo-en {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-logo .logo-ja {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.footer-logo p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.85;
}
.footer-col h6 {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  padding: 5px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: color .2s;
}
.footer-col ul li:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  letter-spacing: .05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 200px; display: none; }
  .hero-text { padding: 48px 0; }
  .featured-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .header-inner { padding: 0 20px; }
  .header-nav { gap: 16px; }
  .header-nav a:not(.cta) { display: none; }
  .section { padding: 48px 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-list { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .cta-form input { width: 100%; border-right: 1px solid rgba(181,71,10,.25); border-radius: 2px; }
  .cta-form button { border-radius: 2px; }
}





/*article.html*/


@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
  --bg: #faf8f4;
  --text: #1a1714;
  --muted: #6b6460;
  --accent: #b5470a;
  --accent-light: #f5ede6;
  --border: #e0dbd4;
  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.9;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }

/* ─── HEADER (shared) ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-en { font-size: 10px; letter-spacing: .22em; color: var(--accent); text-transform: uppercase; font-weight: 500; }
.logo-ja { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: .05em; line-height: 1; }
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a { font-size: 12.5px; color: var(--muted); letter-spacing: .05em; transition: color .2s; }
.header-nav a:hover, .header-nav a.active { color: var(--accent); }
.header-nav .cta {
  background: var(--accent); color: var(--white);
  padding: 7px 16px; border-radius: 2px; font-size: 12px; font-weight: 500;
  letter-spacing: .06em; transition: opacity .2s;
}
.header-nav .cta:hover { opacity: .85; }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  padding: 44px 0 36px;
}
.page-header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--muted); margin-bottom: 16px; letter-spacing: .04em;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border); }
.page-header h1 {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  letter-spacing: .04em; margin-bottom: 8px; color: var(--text);
  display: flex; align-items: center; gap: 14px;
}
.page-header h1 .en {
  font-size: 11px; letter-spacing: .2em; color: var(--accent);
  text-transform: uppercase; font-family: var(--sans); font-weight: 500;
}
.page-header-desc { font-size: 13.5px; color: var(--muted); line-height: 1.85; }

/* ─── MAIN LAYOUT ─── */
.page-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 48px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
}
@media (max-width: 860px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

/* ─── FILTER BAR ─── */
.filter-bar {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
}
.filter-bar-label {
  font-size: 11px; letter-spacing: .14em;
  color: var(--muted); text-transform: uppercase;
  padding: 10px 16px; background: var(--bg);
  border-right: 1px solid var(--border);
  white-space: nowrap; font-weight: 500;
}
.filter-tags {
  display: flex; flex-wrap: wrap; gap: 0;
}
.filter-tag {
  padding: 10px 16px; font-size: 12.5px; color: var(--muted);
  cursor: pointer; border-right: 1px solid var(--border);
  transition: background .15s, color .15s; white-space: nowrap;
  letter-spacing: .03em;
}
.filter-tag:last-child { border-right: none; }
.filter-tag:hover { background: var(--accent-light); color: var(--accent); }
.filter-tag.active { background: var(--accent); color: var(--white); font-weight: 500; }

/* ─── SORT BAR ─── */
.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sort-bar .count { font-size: 12.5px; color: var(--muted); }
.sort-bar .count strong { color: var(--text); font-weight: 600; }
.sort-options { display: flex; gap: 0; }
.sort-btn {
  font-size: 12px; color: var(--muted); padding: 4px 12px;
  border: 1px solid var(--border); border-right: none;
  cursor: pointer; transition: background .15s, color .15s; letter-spacing: .04em;
}
.sort-btn:first-child { border-radius: 2px 0 0 2px; }
.sort-btn:last-child { border-right: 1px solid var(--border); border-radius: 0 2px 2px 0; }
.sort-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }
.sort-btn:hover:not(.active) { background: var(--bg); }

/* ─── ARTICLE LIST ─── */
.article-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }

/* Featured row (first item) */
.article-row-featured {
  background: var(--white); padding: 36px 36px 32px;
  display: grid; grid-template-columns: 1fr 200px;
  gap: 32px; align-items: start;
  cursor: pointer; transition: background .2s;
}
.article-row-featured:hover { background: #fdfcfa; }
.featured-badge {
  display: inline-block; font-size: 9.5px; letter-spacing: .18em;
  text-transform: uppercase; background: var(--accent); color: var(--white);
  padding: 3px 9px; border-radius: 1px; font-weight: 500; margin-bottom: 12px;
}
.article-row-featured h2 {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  line-height: 1.55; letter-spacing: .02em; margin-bottom: 12px; color: var(--text);
}
.article-row-featured .excerpt {
  font-size: 13px; color: var(--muted); line-height: 1.9; margin-bottom: 18px;
}
.article-row-featured .meta {
  display: flex; align-items: center; gap: 10px; font-size: 11px; color: #aaa;
}
.featured-visual {
  background: var(--accent-light); border-radius: 3px;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.featured-visual svg { opacity: .2; }
.featured-visual .cat-label {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px; color: var(--accent); letter-spacing: .1em;
  text-transform: uppercase; font-weight: 500;
}

/* Normal rows */
.article-row {
  background: var(--white); padding: 22px 28px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 0 24px; align-items: center;
  cursor: pointer; transition: background .2s;
  border-left: 3px solid transparent;
}
.article-row:hover {
  background: #fdfcfa;
  border-left-color: var(--accent);
}
.row-index {
  font-size: 13px; color: var(--border); font-weight: 700;
  letter-spacing: .08em; width: 28px; text-align: right;
  flex-shrink: 0;
}
.row-main { min-width: 0; }
.row-category {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 5px;
}
.row-title {
  font-family: var(--serif); font-size: 15.5px; font-weight: 700;
  line-height: 1.55; letter-spacing: .02em; color: var(--text);
  margin-bottom: 5px;
  /* Clamp to 2 lines */
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.row-excerpt {
  font-size: 12px; color: var(--muted); line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.row-meta { text-align: right; flex-shrink: 0; }
.row-date { font-size: 11px; color: #aaa; letter-spacing: .05em; margin-bottom: 6px; }
.row-tag {
  display: inline-block; background: var(--accent-light); color: var(--accent);
  font-size: 10px; padding: 2px 8px; border-radius: 2px; font-weight: 500; letter-spacing: .06em;
  white-space: nowrap;
}

/* ─── PAGINATION ─── */
.pagination {
  display: flex; justify-content: center; gap: 0;
  margin-top: 40px;
}
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-right: none;
  font-size: 13px; color: var(--muted); cursor: pointer;
  transition: background .15s, color .15s; letter-spacing: .02em;
}
.page-btn:first-child { border-radius: 2px 0 0 2px; }
.page-btn:last-child { border-right: 1px solid var(--border); border-radius: 0 2px 2px 0; }
.page-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); font-weight: 600; }
.page-btn:hover:not(.active) { background: var(--bg); color: var(--text); }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 24px; }

.sidebar-block {
  background: var(--white); border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden;
}
.sidebar-block-header {
  padding: 12px 18px; background: var(--text);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 500;
}
.sidebar-block-body { padding: 4px 0; }

/* Search */
.sidebar-search { padding: 14px 16px; }
.sidebar-search-input {
  width: 100%; border: 1px solid var(--border);
  padding: 9px 14px; font-size: 13px; font-family: var(--sans);
  color: var(--text); outline: none; border-radius: 2px;
  transition: border-color .2s;
}
.sidebar-search-input:focus { border-color: var(--accent); }
.sidebar-search-input::placeholder { color: #bbb; }

/* Category list */
.sidebar-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px; border-bottom: 1px solid #f0ece6;
  cursor: pointer; transition: background .15s;
}
.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat:hover { background: var(--accent-light); }
.sidebar-cat-name { font-size: 13px; color: var(--text); letter-spacing: .03em; }
.sidebar-cat-count {
  font-size: 11px; color: var(--muted); background: var(--bg);
  padding: 1px 8px; border-radius: 10px; letter-spacing: .04em;
}
.sidebar-cat.active .sidebar-cat-name { color: var(--accent); font-weight: 500; }
.sidebar-cat.active { background: var(--accent-light); }

/* Popular tags */
.tag-cloud { padding: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.cloud-tag {
  display: inline-block; font-size: 11.5px; color: var(--muted);
  border: 1px solid var(--border); padding: 4px 11px; border-radius: 2px;
  cursor: pointer; transition: border-color .15s, color .15s;
}
.cloud-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Pick up article */
.sidebar-pickup {
  padding: 16px 18px; border-bottom: 1px solid #f0ece6;
  cursor: pointer; transition: background .15s;
}
.sidebar-pickup:last-child { border-bottom: none; }
.sidebar-pickup:hover { background: var(--accent-light); }
.pickup-cat { font-size: 10px; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; margin-bottom: 5px; }
.pickup-title { font-family: var(--serif); font-size: 13.5px; font-weight: 600; line-height: 1.55; color: var(--text); margin-bottom: 4px; }
.pickup-date { font-size: 10.5px; color: #aaa; letter-spacing: .04em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  .header-inner { padding: 0 20px; }
  .header-nav a:not(.cta) { display: none; }
  .page-layout { padding: 32px 20px 60px; }
  .article-row-featured { grid-template-columns: 1fr; }
  .featured-visual { display: none; }
  .article-row { grid-template-columns: 1fr; }
  .row-index { display: none; }
  .row-meta { text-align: left; }
  .filter-bar { flex-wrap: wrap; }
  .filter-bar-label { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
}















