/* ============================================================
   BLOQWAVE — Global Stylesheet
   Editorial · Premium · Content-First
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink:       #0f0f0f;
  --ink-light: #3a3a3a;
  --ink-muted: #767676;
  --rule:      #e2e2e2;
  --rule-light:#f0f0f0;
  --paper:     #fafaf8;
  --white:     #ffffff;
  --accent:    #1a1a1a;
  --red:       #c0392b;
  --blue:      #1a4a8a;
  --tag-bg:    #f4f4f2;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --max-w:   1200px;
  --col-gap: 2rem;
  --section-gap: 5rem;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-light); margin-bottom: 1.25rem; }

/* ── DIVIDER ── */
.rule { border: none; border-top: 1px solid var(--rule); margin: 2rem 0; }
.rule--thick { border-top: 2px solid var(--ink); }
.rule--double {
  border: none;
  border-top: 3px double var(--ink);
  margin: 2rem 0;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── CATEGORY TAG ── */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--tag-bg);
  color: var(--ink-muted);
  border: 1px solid var(--rule);
  transition: all 0.2s;
}
.tag:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tag--ai     { background: #eef2ff; color: #3730a3; border-color: #c7d2fe; }
.tag--crypto { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }
.tag--web3   { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.tag--future { background: #fdf4ff; color: #7e22ce; border-color: #e9d5ff; }
.tag--opinion{ background: #fff1f2; color: #be123c; border-color: #fecdd3; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.navbar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule-light);
}
.navbar__date {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.navbar__tagline {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.navbar__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}
.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.navbar__logo span { color: var(--red); }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar__nav a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.25s ease;
}
.navbar__nav a:hover { color: var(--ink); }
.navbar__nav a:hover::after { width: 100%; }
.navbar__nav a.active { color: var(--ink); font-weight: 500; }
.navbar__nav a.active::after { width: 100%; }
.navbar__actions { display: flex; align-items: center; gap: 1rem; }
.btn-subscribe {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 8px 18px;
  border: 1px solid var(--ink);
  transition: all 0.2s;
}
.btn-subscribe:hover { background: transparent; color: var(--ink); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  padding: 4rem 0 3rem;
  border-bottom: 2px solid var(--ink);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hero__featured { border-right: 1px solid var(--rule); padding-right: 3rem; }
.hero__featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 1.25rem;
  background: var(--rule-light);
}
.hero__featured-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f0f0ee 0%, #e4e4e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}
.hero__featured-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.hero__featured-title a:hover { text-decoration: underline; text-underline-offset: 4px; }
.hero__featured-excerpt { font-size: 1rem; line-height: 1.7; color: var(--ink-light); margin-bottom: 1rem; }
.hero__meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__meta-dot { width: 3px; height: 3px; background: var(--ink-muted); border-radius: 50%; }

.hero__sidebar { display: flex; flex-direction: column; gap: 0; }
.hero__side-post {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}
.hero__side-post:first-child { padding-top: 0; }
.hero__side-post:last-child { border-bottom: none; }
.hero__side-title {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.hero__side-title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.hero__side-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ink);
}
.section-header h2 {
  font-size: 1.1rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-header a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.section-header a:hover { color: var(--ink); }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: flex;
  flex-direction: column;
}
.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--rule-light);
  margin-bottom: 0.9rem;
}
.card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f5f5f3 0%, #eaeae6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}
.card__tag { margin-bottom: 0.6rem; }
.card__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.card__title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.card__excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  flex: 1;
}
.card__meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── LIST POST (horizontal) ── */
.post-list { display: flex; flex-direction: column; }
.post-list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}
.post-list-item:first-child { padding-top: 0; }
.post-list-item__img {
  width: 120px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--rule-light);
}
.post-list-item__img-placeholder {
  width: 120px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f5f5f3 0%, #eaeae6 100%);
  flex-shrink: 0;
}
.post-list-item__content { display: flex; flex-direction: column; justify-content: center; }
.post-list-item__title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.post-list-item__title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.post-list-item__meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem;
  margin: var(--section-gap) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter__desc { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.newsletter__form { display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter__input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter__btn {
  background: var(--white);
  color: var(--ink);
  padding: 13px 28px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  align-self: flex-start;
  transition: all 0.2s;
  cursor: pointer;
}
.newsletter__btn:hover { background: transparent; color: var(--white); }
.newsletter__note { font-family: var(--font-mono); font-size: 0.58rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

/* ── CATEGORIES STRIP ── */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border: 1px solid var(--rule);
  border-right: none;
}
.cat-strip__item {
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
  text-align: center;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.cat-strip__item:hover { background: var(--ink); color: var(--white); }
.cat-strip__item:hover .cat-strip__count { color: rgba(255,255,255,0.5); }
.cat-strip__icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.cat-strip__name { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 0.25rem; }
.cat-strip__count { font-family: var(--font-mono); font-size: 0.56rem; color: var(--ink-muted); display: block; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: var(--section-gap);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer__logo span { color: #e57373; }
.footer__desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  transition: all 0.2s;
}
.footer__social a:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.4); text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom a:hover { color: var(--white); }

/* ── SECTION SPACING ── */
.section { padding: var(--section-gap) 0; }
.section--sm { padding: 3rem 0; }
.section--top { padding-top: var(--section-gap); }
.section--bordered { border-bottom: 1px solid var(--rule); }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb__sep { color: var(--rule); }

/* ── UTILITY ── */
.text-muted { color: var(--ink-muted); }
.text-mono { font-family: var(--font-mono); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* ── READING PROGRESS ── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--ink);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SEARCH BAR ── */
.search-bar {
  display: flex;
  border: 1px solid var(--rule);
  overflow: hidden;
  margin-bottom: 2rem;
}
.search-bar input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: none;
  outline: none;
  color: var(--ink);
  background: var(--white);
}
.search-bar input::placeholder { color: var(--ink-muted); }
.search-bar button {
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--ink-light); }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-tab {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover, .filter-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; gap: 0.5rem; margin-top: 3rem; }
.page-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ── ARTICLE BODY ── */
.article-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink-light);
}
.article-body h2 { font-size: 1.65rem; margin: 2.5rem 0 1rem; color: var(--ink); }
.article-body h3 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--ink); }
.article-body p { margin-bottom: 1.5rem; }
.article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--ink); }
.article-body blockquote {
  border-left: 3px solid var(--ink);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--paper);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.article-body blockquote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: normal;
  color: var(--ink-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
}
.article-body ul, .article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; line-height: 1.75; }
.article-body code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--tag-bg);
  padding: 2px 6px;
  border: 1px solid var(--rule);
  color: var(--ink);
}
.article-body pre {
  background: #1a1a1a;
  color: #e8e8e8;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 0;
}
.article-body pre code {
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  font-size: 0.88rem;
}
.article-body img { width: 100%; margin: 2rem 0; }
.article-body figcaption {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--ink-muted);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}
.article-body hr { border: none; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

/* ── TABLE OF CONTENTS ── */
.toc {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.toc__title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.toc__list { list-style: none; padding: 0; }
.toc__list li { margin-bottom: 0.4rem; }
.toc__list a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-light);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color 0.2s;
}
.toc__list a::before { content: '—'; font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-muted); flex-shrink: 0; margin-top: 2px; }
.toc__list a:hover { color: var(--ink); }
.toc__list li.h3-item { padding-left: 1.25rem; }

/* ── AUTHOR BOX ── */
.author-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--rule);
  margin: 3rem 0;
  background: var(--paper);
}
.author-box__avatar {
  width: 70px;
  height: 70px;
  background: var(--rule);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-muted);
}
.author-box__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.author-box__title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}
.author-box__bio { font-size: 0.88rem; line-height: 1.65; color: var(--ink-light); margin: 0; }

/* ── SHARE BUTTONS ── */
.share-section { margin: 2.5rem 0; padding: 1.5rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.share-section__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}
.share-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.share-btn {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.share-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-input, .form-textarea {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--ink); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s;
}
.form-btn:hover { background: transparent; color: var(--ink); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 2.5rem; }
.sidebar__widget {}
.sidebar__widget-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 1.25rem;
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.value-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--rule); }
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ink-muted);
  width: 28px;
  flex-shrink: 0;
  padding-top: 3px;
}
.value-content h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.value-content p { font-size: 0.88rem; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 3rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__featured { border-right: none; padding-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 2rem; margin-bottom: 2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .navbar__nav { display: none; }
  .navbar__nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem; border-bottom: 1px solid var(--rule); z-index: 200; gap: 1rem; }
  .navbar__main { position: relative; }
  .nav-toggle { display: flex; }
  .mission-grid { grid-template-columns: 1fr; }
  .post-list-item { grid-template-columns: 90px 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .cat-strip { grid-template-columns: 1fr 1fr; }
  .newsletter { padding: 2rem 1.5rem; }
}
.tagline{
font-size:18px;
opacity:0.8;
margin-top:10px;
}

.subtitle{
font-size:14px;
opacity:0.6;
}