/* ===================================================================
   ADEM ASLAN — Tasarım Sistemi
   Editöryal gayrimenkul otorite sitesi
   Fontlar: Newsreader (başlık serif) + Inter (gövde sans)
   Tema: açık (krem) / koyu  ·  Aksan: deniz mavisi / terracotta
   =================================================================== */

/* ---- Tokens: light theme, blue accent (defaults) ---- */
:root {
  /* Aksan — data-accent ile değişir */
  --accent: #1E3A5F;          /* deniz mavisi */
  --accent-ink: #FBFAF7;      /* aksan üstündeki metin */

  /* Zemin & yüzey */
  --bg:        #FBFAF7;       /* krem */
  --bg-sunken: #F3EFE7;       /* hafif çökük bölümler */
  --surface:   #FFFFFF;       /* kart yüzeyi */

  /* Metin */
  --ink:        #1A1A1A;      /* antrasit */
  --ink-soft:   #4A4843;
  --ink-muted:  #76736B;
  --ink-faint:  #A6A299;

  /* Çizgiler */
  --line:        color-mix(in srgb, var(--ink) 12%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 22%, transparent);

  /* Aksandan türetilmiş tonlar (tema + accent farkında) */
  --accent-tint:   color-mix(in srgb, var(--accent) 9%,  var(--surface));
  --accent-tint-2: color-mix(in srgb, var(--accent) 14%, var(--surface));
  --accent-line:   color-mix(in srgb, var(--accent) 35%, transparent);

  /* Tipografi */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --mono:  ui-monospace, "SFMono-Regular", "Menlo", monospace;

  /* Ölçü */
  --measure: 68ch;            /* okuma satırı genişliği */
  --radius:   10px;
  --radius-sm: 7px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,.05), 0 1px 3px rgba(26,26,26,.04);
  --shadow-md: 0 4px 14px rgba(26,26,26,.07), 0 1px 3px rgba(26,26,26,.05);
  --shadow-lg: 0 18px 50px rgba(26,26,26,.12), 0 4px 12px rgba(26,26,26,.06);

  --maxw: 1200px;
}

/* ---- Accent variants ---- */
:root[data-accent="terracotta"] { --accent: #B85C3F; }

/* Kapsam-içi aksan geçersiz kılma (style guide'da iki versiyonu yan yana göstermek için).
   Tint değişkenleri var(--accent) referansıyla burada yeniden hesaplanır. */
.accent-blue,
.accent-terracotta {
  --accent-tint:   color-mix(in srgb, var(--accent) 9%,  var(--surface));
  --accent-tint-2: color-mix(in srgb, var(--accent) 14%, var(--surface));
  --accent-line:   color-mix(in srgb, var(--accent) 35%, transparent);
}
.accent-blue       { --accent: #1E3A5F; }
.accent-terracotta { --accent: #B85C3F; }
:root[data-theme="dark"] .accent-blue,
:root[data-theme="dark"] .accent-terracotta {
  --accent-tint:   color-mix(in srgb, var(--accent) 16%, var(--surface));
  --accent-tint-2: color-mix(in srgb, var(--accent) 24%, var(--surface));
}
:root[data-theme="dark"] .accent-blue       { --accent: #6E9BD1; }
:root[data-theme="dark"] .accent-terracotta { --accent: #D98A6E; }

/* ---- Dark theme ---- */
:root[data-theme="dark"] {
  --accent: #6E9BD1;          /* açılmış mavi */
  --accent-ink: #11151B;
  --bg:        #14130F;
  --bg-sunken: #1A1813;
  --surface:   #1D1B15;
  --ink:        #ECEAE2;
  --ink-soft:   #C7C4B9;
  --ink-muted:  #948F82;
  --ink-faint:  #6E6A5F;
  --line:        color-mix(in srgb, #ECEAE2 14%, transparent);
  --line-strong: color-mix(in srgb, #ECEAE2 26%, transparent);
  --accent-tint:   color-mix(in srgb, var(--accent) 16%, var(--surface));
  --accent-tint-2: color-mix(in srgb, var(--accent) 24%, var(--surface));
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 6px 18px rgba(0,0,0,.45);
  --shadow-lg: 0 22px 55px rgba(0,0,0,.55);
}
:root[data-theme="dark"][data-accent="terracotta"] { --accent: #D98A6E; }

/* ===================================================================
   Reset & base
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .35s ease, color .35s ease;
}
/* Sabit zemin katmanı — host yakalama sırasında body'yi transparan yapsa bile
   krem/koyu zemin her zaman görünür kalır. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: -1;
  transition: background .35s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: color-mix(in srgb, var(--accent) 25%, transparent); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 480;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-wrap: balance;
  margin: 0;
}

/* ===================================================================
   Layout helpers
   =================================================================== */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }
.wrap-narrow { max-width: 760px; margin-inline: auto; padding-inline: 32px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(40px, 5vw, 64px); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.muted { color: var(--ink-muted); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-muted); margin: 8px 0 0; max-width: 46ch; }

.lead { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); }

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 540;
  line-height: 1; letter-spacing: .005em;
  padding: 14px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 86%, #000); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); background: color-mix(in srgb, var(--ink) 4%, transparent); }

.btn-ghost { background: transparent; color: var(--accent); padding-inline: 4px; }
.btn-ghost:hover { color: color-mix(in srgb, var(--accent) 80%, var(--ink)); }
.btn-ghost .arrow { transition: transform .2s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-wa { background: #25D366; color: #07261A; }
.btn-wa:hover { background: #20c15c; }

.btn-sm { padding: 10px 15px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* link with animated underline */
.link-u { color: var(--accent); background-image: linear-gradient(var(--accent),var(--accent));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .25s ease; padding-bottom: 1px; }
.link-u:hover { background-size: 100% 1px; }

/* ===================================================================
   Image placeholders (striped + mono label)
   =================================================================== */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(45deg,
      color-mix(in srgb, var(--ink) 6%, var(--bg-sunken)) 0 1px,
      transparent 1px 11px),
    var(--bg-sunken);
  border: 1px solid var(--line);
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0; margin: auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-faint);
  text-align: center; padding: 12px;
}
.ph.rounded { border-radius: var(--radius); }
/* Gerçek görsel .ph içine yerleştirilince çizgili placeholder'ı kapatır */
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph.has-img::after { content: none; }

/* Hero full-bleed medya + bilgi katmanı */
.hero-media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 21/8; border: 1px solid var(--line); background: var(--bg-sunken); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,12,0) 38%, rgba(20,18,12,.72) 100%); }
.hero-media .hm-inner { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(20px,3vw,34px); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hero-media .hm-cap { color: #fff; }
.hero-media .hm-cap .k { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; display: flex; align-items: center; gap: 7px; }
.hero-media .hm-cap .t { font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.6rem); margin-top: 8px; max-width: 22ch; line-height: 1.18; }
.hero-media .hm-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-media .hm-chip { background: color-mix(in srgb, var(--accent) 92%, #000); color: var(--accent-ink); border-radius: 999px; padding: 9px 16px; backdrop-filter: blur(6px); }
.hero-media .hm-chip b { display: block; font-family: var(--serif); font-size: 1.18rem; line-height: 1; white-space: nowrap; }
.hero-media .hm-chip span { font-size: 11.5px; letter-spacing: .04em; opacity: .82; white-space: nowrap; }

/* ===================================================================
   Cards — content (rehber / proje)
   =================================================================== */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
a.card, .card.clickable { cursor: pointer; }
a.card:hover, .card.clickable:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .ph { aspect-ratio: 16/10; border: 0; border-bottom: 1px solid var(--line); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.card-cat { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.card-title { font-family: var(--serif); font-size: 1.34rem; line-height: 1.2; }
.card-excerpt { color: var(--ink-muted); font-size: 15px; line-height: 1.6; }
.card-meta { margin-top: auto; padding-top: 6px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-faint); }
.card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

/* ===================================================================
   Listing cards (portföy)
   =================================================================== */
.listing { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.listing:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.listing .ph { aspect-ratio: 4/3; border: 0; }
.listing-media { position: relative; }
.listing-badge { position: absolute; top: 12px; left: 12px; font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); }
.listing-badge.rent { background: var(--ink); }
.listing-body { padding: 18px 18px 20px; }
.listing-price { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -.02em; }
.listing-price small { font-family: var(--sans); font-size: .82rem; color: var(--ink-muted); font-weight: 500; letter-spacing: .02em; }
.listing-title { font-size: 15.5px; font-weight: 540; margin-top: 4px; }
.listing-loc { font-size: 13.5px; color: var(--ink-muted); display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.listing-specs { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-soft); }
.listing-specs span { display: flex; align-items: center; gap: 6px; }
.listing-specs svg { width: 16px; height: 16px; color: var(--ink-faint); }

/* ===================================================================
   Form fields
   =================================================================== */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 540; color: var(--ink-soft); letter-spacing: .01em; }
.input, .select, textarea.input {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 13px 14px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input::placeholder { color: var(--ink-faint); }
.input:focus, .select:focus, textarea.input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.select {
  appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2376736B' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
}
textarea.input { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Search composite */
.search {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 0;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden;
}
.search > div { display: flex; flex-direction: column; padding: 13px 18px; border-right: 1px solid var(--line); }
.search label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2px; }
.search select, .search input { border: 0; background: transparent; font-family: var(--sans); font-size: 15px; color: var(--ink); padding: 2px 0; outline: none; cursor: pointer; appearance: none; }
.search .search-btn { display: flex; align-items: center; justify-content: center; padding: 0 26px; background: var(--accent); color: var(--accent-ink); border: 0; cursor: pointer; font-weight: 540; font-size: 15px; gap: 8px; transition: background .2s; }
.search .search-btn:hover { background: color-mix(in srgb, var(--accent) 86%, #000); }

/* ===================================================================
   Special editorial blocks
   =================================================================== */
/* Hızlı Cevap — AI snippet box */
.quick-answer {
  background: var(--accent-tint); border: 1px solid var(--accent-line);
  border-left: 4px solid var(--accent); border-radius: var(--radius);
  padding: 22px 26px;
}
.quick-answer .qa-label { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.quick-answer p { margin: 0; font-size: 1.06rem; line-height: 1.6; color: var(--ink); }
.quick-answer p + p { margin-top: 8px; }

/* TL;DR */
.tldr { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; background: var(--surface); }
.tldr h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
.tldr ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tldr li { display: flex; gap: 13px; font-size: 1.02rem; line-height: 1.55; color: var(--ink-soft); }
.tldr li .n { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint-2); color: var(--accent); display: grid; place-items: center; font-family: var(--serif); font-size: 14px; font-weight: 600; margin-top: 2px; }

/* Profil portresi: yuvarlak avatarlarda baş üstü kesilmesin (site geneli) */
img[src*="adem-aslan-portre"] { object-fit: cover; object-position: 50% 10%; }

/* "Adem'in görüşü" yorum kutusu */
.opinion { background: var(--accent-tint); border: 1px solid var(--accent-line); border-radius: var(--radius); padding: 26px 28px; display: flex; gap: 18px; }
.opinion .av { flex: none; width: 52px; height: 52px; border-radius: 50%; }
.opinion .o-name { font-weight: 600; font-size: 14px; }
.opinion .o-role { font-size: 12.5px; color: var(--ink-muted); }
.opinion .o-text { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; font-style: italic; color: var(--ink); margin-top: 8px; }

/* FAQ accordion */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); }
.faq-q .ic { flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s ease; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--accent); }
.faq-q .ic::before { width: 100%; height: 2px; }
.faq-q .ic::after { width: 2px; height: 100%; transition: transform .3s ease; }
.faq-item[open] .faq-q .ic::after { transform: rotate(90deg); }
.faq-a { overflow: hidden; }
.faq-a > div { padding: 0 4px 24px; color: var(--ink-muted); max-width: var(--measure); font-size: 1.02rem; }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* Stat strip */
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.02em; color: var(--ink); }
.stat-num .u { color: var(--accent); }
.stat-label { font-size: 14px; color: var(--ink-muted); margin-top: 10px; }

/* Author card */
.author { display: flex; gap: 26px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 32px; }
.author .av { flex: none; width: 96px; height: 96px; border-radius: 50%; }
.author .a-name { font-family: var(--serif); font-size: 1.4rem; }
.author .a-role { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
.author .a-bio { color: var(--ink-muted); margin: 10px 0 14px; font-size: 15px; }

/* Pill / tag */
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--ink-soft); background: var(--bg-sunken); border: 1px solid var(--line); padding: 7px 13px; border-radius: 999px; }
.pill.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ===================================================================
   Navigation
   =================================================================== */
.nav { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin-inline: auto; padding: 0 32px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 38px; width: auto; }
:root[data-theme="dark"] .nav-logo img { filter: invert(1) brightness(1.7); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color .18s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.icon-btn { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.icon-btn:hover { background: var(--bg-sunken); color: var(--ink); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-sun { display: none; }
:root[data-theme="dark"] .theme-sun { display: block; }
:root[data-theme="dark"] .theme-moon { display: none; }
.nav-toggle { display: none; }

/* ===================================================================
   Footer
   =================================================================== */
.footer { background: var(--bg-sunken); border-top: 1px solid var(--line); padding-block: 64px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h5 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a { font-size: 14.5px; color: var(--ink-soft); transition: color .18s; }
.footer a:hover { color: var(--accent); }
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; }
:root[data-theme="dark"] .footer-logo img { filter: invert(1) brightness(1.7); }
.footer-bottom { max-width: var(--maxw); margin: 48px auto 0; padding: 22px 32px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-faint); }

/* ===================================================================
   Reveal — taban GÖRÜNÜR ve animasyonsuz (önizleme iframe'inde belge
   zaman çizelgesi donabildiği için giriş animasyonu içeriği gizleyebiliyor).
   Brief "minimum animasyon" istiyor; içerik her koşulda görünür.
   =================================================================== */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .search { grid-template-columns: 1fr 1fr; }
  .search .search-btn { grid-column: 1 / -1; padding: 14px; }
}
@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding-inline: 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .author { flex-direction: column; text-align: center; align-items: center; }
  .search { grid-template-columns: 1fr; }
  .search > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
