/* ==========================================================================
   ŞİLE — Sade Modern Editoryal Tasarım Sistemi
   Tek stil dosyası. Token tabanlı. Konsept: geniş beyaz alan, güçlü serif
   başlık, fotoğraf öncelikli, sakin İsviçre ızgarası.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Inter:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap");

:root {
  --paper: #faf8f4;
  --paper-2: #f2efe9;
  --card: #ffffff;

  --ink: #15171a;
  --ink-2: #3a4046;
  --muted: #71767c;
  --line: rgba(21, 23, 26, 0.12);
  --line-strong: rgba(21, 23, 26, 0.28);

  --accent: #0a7d8f;
  --accent-ink: #0a7d8f;
  --brand: #c8a45c;
  --sea: #15171a;
  --foot-bg: #15171a;
  --foot-fg: #faf8f4;

  --wrap: 1536px;
  --wrap-wide: 1920px;
  --pad: 56px;
  --reading: 720px;
  --radius: 3px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --fast: 0.2s var(--ease);
  --med: 0.45s var(--ease);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1.1em;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

/* --- Layout ------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header ve footer 1920px; içerik alanları 1536px */
.topbar .wrap,
.site-head .wrap,
.ticker .wrap,
.site-foot .wrap {
  max-width: var(--wrap-wide);
}

.section {
  padding: clamp(56px, 9vw, 120px) 0;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* --- Typographic primitives -------------------------------------------- */

.kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 10px;
}

.section-head .more {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--fast);
}

.section-head .more:hover {
  color: var(--ink);
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform var(--fast),
    background var(--fast),
    color var(--fast),
    border-color var(--fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--ink);
  color: var(--paper);
}

.btn--solid:hover {
  background: var(--sea);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

/* --- Header ------------------------------------------------------------- */

.topbar {
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}

.topbar a:hover {
  color: var(--ink);
}

.topbar .dot {
  color: var(--accent-ink);
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand .bdot {
  color: var(--brand);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--fast);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.head-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang button {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 6px 11px;
  color: var(--muted);
  transition:
    background var(--fast),
    color var(--fast);
}

.lang button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.menu-btn {
  display: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

/* --- Category ticker (header strip) ------------------------------------ */

.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.ticker .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 46px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker .wrap::-webkit-scrollbar {
  display: none;
}

.ticker a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--fast);
}

.ticker a:hover {
  color: var(--ink);
}

.ticker a[aria-current="page"] {
  color: var(--accent-ink);
}

/* --- Lead grid (homepage magazine lead + aside) ------------------------ */

.leadgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(32px, 4vw, 72px);
  padding-top: clamp(40px, 6vw, 72px);
}

.leadgrid__main h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
}

.leadgrid__main h1 em {
  font-style: italic;
  color: var(--accent-ink);
}

.leadgrid__excerpt {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 0 18px;
}

.leadgrid__media {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.leadgrid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadgrid__aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 48px);
}

.hlist {
  display: flex;
  flex-direction: column;
}

.hlist__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.hlist__item:first-child {
  padding-top: 0;
}

.hlist__cat {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: block;
  margin-bottom: 8px;
}

.hlist__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.hlist__item:hover .hlist__title {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.hlist__meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

/* --- Hero (photo-forward) ---------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--sea);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 24, 0.15) 0%,
    rgba(10, 18, 24, 0.28) 42%,
    rgba(10, 18, 24, 0.82) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(40px, 6vw, 72px) 0 clamp(44px, 6vw, 76px);
  color: #fdfdfb;
}

.hero .kicker {
  color: #f0dcae;
}

.hero .kicker::before {
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  font-weight: 400;
  max-width: 16ch;
  margin: 18px 0 22px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.28);
}

.hero h1 em {
  font-style: italic;
  color: #f0dcae;
}

.hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: rgba(253, 253, 251, 0.88);
  max-width: 56ch;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fdfdfb;
}

.hero .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero__meta {
  position: absolute;
  right: 24px;
  bottom: clamp(44px, 6vw, 76px);
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(253, 253, 251, 0.7);
  text-align: right;
  line-height: 1.9;
}

/* --- Contents / numbered index ----------------------------------------- */

.contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
  border-top: 1px solid var(--line);
}

.contents__item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding var(--fast);
}

.contents__item:hover {
  padding-left: 8px;
}

.contents__no {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-ink);
}

.contents__title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 500;
}

.contents__cat {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Story grid --------------------------------------------------------- */

.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}

.card {
  display: flex;
  flex-direction: column;
}

.card__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--med);
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__cat {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 20px 0 10px;
}

.card__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.16;
  margin-bottom: 10px;
}

.card:hover .card__title {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
}

.card__excerpt {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.card__meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.card--soon {
  cursor: default;
}

.card--soon .card__media img {
  filter: saturate(0.6) brightness(1.02);
  opacity: 0.82;
}

.card--soon:hover .card__title {
  text-decoration: none;
}

.card--soon .card__cat,
.card--soon .card__title,
.card--soon .card__excerpt {
  color: var(--muted);
}

/* --- Feature (large split) --------------------------------------------- */

.feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.feature__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05;
  margin: 16px 0 18px;
}

/* --- Newsletter --------------------------------------------------------- */

.newsletter {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.newsletter .kicker {
  color: var(--accent);
}

.newsletter h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  margin-top: 12px;
}

.newsletter p {
  color: rgba(251, 251, 248, 0.72);
  font-size: 0.98rem;
  margin: 14px 0 0;
}

.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(251, 251, 248, 0.28);
  background: rgba(251, 251, 248, 0.06);
  color: var(--paper);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--fast);
}

.newsletter input[type="email"]::placeholder {
  color: rgba(251, 251, 248, 0.5);
}

.newsletter input[type="email"]:focus {
  border-color: var(--accent);
}

.newsletter .btn--solid {
  background: var(--accent);
  color: var(--ink);
}

.newsletter .btn--solid:hover {
  background: #fdfdfb;
}

.newsletter__status {
  flex-basis: 100%;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  min-height: 1.2em;
  color: rgba(251, 251, 248, 0.75);
}

.newsletter__status[data-state="ok"] {
  color: #b9e4b0;
}

.newsletter__status[data-state="err"] {
  color: #f2b8a8;
}

/* --- Footer ------------------------------------------------------------- */

.site-foot {
  background: var(--foot-bg);
  color: var(--foot-fg);
  padding: clamp(56px, 8vw, 104px) 0 40px;
  margin-top: clamp(56px, 9vw, 120px);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  font-weight: 600;
  margin-bottom: 16px;
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.78);
  transition: color var(--fast);
}

.foot-col a:hover {
  color: var(--foot-fg);
}

.foot-brand p {
  font-size: 0.92rem;
  color: rgba(250, 248, 244, 0.72);
  max-width: 34ch;
  margin: 14px 0 0;
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 248, 244, 0.16);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 244, 0.5);
}

/* --- Mobile menu -------------------------------------------------------- */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}

.drawer[data-open="true"] {
  transform: translateY(0);
  pointer-events: auto;
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer__list a {
  font-family: var(--serif);
  font-size: 1.7rem;
}

.drawer .btn {
  margin-top: 32px;
  align-self: flex-start;
}

/* --- Article ------------------------------------------------------------ */

.article-head {
  max-width: var(--reading);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 24px 0;
}

.article-head h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.04;
  font-weight: 400;
  margin: 18px 0 20px;
}

.article-head h1 em {
  font-style: italic;
  color: var(--accent-ink);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.article-hero {
  max-width: var(--wrap);
  margin: clamp(32px, 5vw, 56px) auto 0;
  padding: 0 24px;
}

.article-hero img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-hero figcaption {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.prose {
  max-width: var(--reading);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 24px 0;
  font-size: 1.14rem;
  line-height: 1.9;
  color: var(--ink-2);
}

.prose p {
  margin: 0 0 1.4em;
}

.prose > p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 4.2rem;
  line-height: 0.78;
  padding: 6px 16px 0 0;
  color: var(--accent-ink);
}

.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--ink);
  margin: 2.2em 0 0.6em;
  padding-top: 0.7em;
  border-top: 1px solid var(--line);
}

.prose h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 1.6em 0 0.5em;
}

.prose strong {
  color: var(--ink);
}

.prose a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose blockquote {
  margin: 2em 0;
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.prose blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.prose figure {
  margin: 2.4em 0;
}

.prose figure img {
  border-radius: var(--radius);
}

.prose figcaption {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.sources {
  max-width: var(--reading);
  margin: 2.6em auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.sources h2 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.sources ol {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
}

.sources a {
  color: var(--accent-ink);
}

/* --- Page header (inner pages) ----------------------------------------- */

.page-head {
  max-width: var(--reading);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 24px 0;
}

.page-head h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 16px 0 16px;
}

.page-body {
  max-width: var(--reading);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) 24px 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-2);
}

.page-body h2 {
  font-size: 1.7rem;
  color: var(--ink);
  margin: 2em 0 0.5em;
}

.page-body a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list {
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list a {
  font-size: 1.05rem;
}

/* --- Reading progress --------------------------------------------------- */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 300;
  transition: width 0.1s linear;
}

/* --- Reveal (JS varsa animasyon; yoksa içerik görünür kalır) ----------- */

.reveal {
  opacity: 1;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 1000px) {
  :root {
    --pad: 32px;
  }

  .nav,
  .head-tools .lang {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .contents {
    grid-template-columns: 1fr;
  }

  .stories {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .leadgrid {
    grid-template-columns: 1fr;
  }

  .leadgrid__aside {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__meta {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 20px;
  }

  .stories {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .contents__item {
    grid-template-columns: 40px 1fr;
  }

  .contents__cat {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
