/* ===================================================================
   AI WORLD — Clean & soft magazine (Marveen-inspired)
   Schibsted Grotesk + Hanken Grotesk · warm cream · near-monochrome
   Soft borders · gentle shadows · two-tone headings · pill labels
   =================================================================== */

:root {
  --paper: #f2ede4;
  --card: #fbf9f4;
  --paper-2: #eae3d6;
  --ink: #1c1a16;
  --ink-soft: #6f6a60;       /* grey — two-tone headings + secondary */
  --muted: #9a9388;
  --line: #e4ddd0;
  --line-strong: #d3cabb;
  --accent: #5f8a76;         /* soft sage — sparse touches */
  --accent-dark: #4d7563;

  /* muted category colours */
  --c-news: #b5694a;
  --c-howto: #5f8a76;
  --c-business: #5b7a9d;
  --c-work: #8a6a93;
  --c-creative: #b08a3e;
  --c-other: #746e64;

  --maxw: 1080px;
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hanken Grotesk', -apple-system, sans-serif;
  font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 80px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.navbar--scrolled { box-shadow: 0 1px 20px -10px rgba(0,0,0,0.25); }
.navbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 15px 24px;
  display: flex; align-items: center; gap: 24px;
}
.navbar__logo {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: 21px; letter-spacing: -0.02em; color: var(--ink);
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 9px;
}
.navbar__mark { width: 30px; height: 30px; display: block; }
.navbar__dot { color: var(--accent); }
.navbar__nav { display: flex; gap: 24px; margin-left: auto; }
.navbar__nav a {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  text-decoration: none; position: relative; padding: 4px 0;
  transition: color .15s ease;
}
.navbar__nav a::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px;
  background: var(--accent); transition: width .2s ease;
}
.navbar__nav a:hover { color: var(--ink); }
.navbar__nav a:hover::after, .navbar__nav a.nav--active::after { width: 100%; }
.navbar__nav a.nav--active { color: var(--ink); }

/* ---------- THEME TOGGLE ---------- */
.theme-toggle {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong); cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.theme-toggle:hover { background: var(--paper-2); transform: scale(1.06); }

/* ---------- PILL LABELS (section markers) ---------- */
.pill {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px;
}

/* ---------- INTRO (homepage hero strip) ---------- */
.intro { border-bottom: 1px solid var(--line); background: var(--paper); }
.intro__inner { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 52px; text-align: center; }
.intro__kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.intro__title {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(38px, 7vw, 78px); line-height: 1.0; letter-spacing: -0.03em;
  color: var(--ink); max-width: 18ch; margin: 0 auto;
}
.intro__title em { font-style: normal; color: var(--ink-soft); }   /* two-tone */
.intro__tagline { font-size: clamp(16px, 2vw, 20px); color: var(--ink-soft); margin-top: 18px; }

/* ---------- SECTION HEAD ---------- */
.section-head { text-align: center; margin-bottom: 36px; }
.section-title {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px); line-height: 1.05; letter-spacing: -0.025em;
  margin-top: 16px; color: var(--ink);
}
.muted-word { color: var(--ink-soft); }     /* two-tone heading */
.section-note { font-size: 15px; color: var(--ink-soft); max-width: 560px; margin: 12px auto 0; line-height: 1.5; }

/* ---------- HERO / COVER STORY ---------- */
.hero { margin-bottom: 64px; text-align: center; }
.hero .pill { margin-bottom: 20px; }

.card--featured { text-align: left; }
.card--featured .card__link {
  display: grid; gap: 18px;
  padding: 46px 48px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card--featured .card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(28,26,22,0.4);
}
.card--featured .card__title {
  font-size: clamp(30px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.03em; max-width: 18ch;
}
.card--featured .card__subtitle { font-size: clamp(17px, 2.2vw, 21px); max-width: 60ch; }

/* ---------- GRID (clean cards) ---------- */
.grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.card { grid-column: span 2; }
.card:first-child { grid-column: span 3; }
.card:nth-child(2) { grid-column: span 3; }

.card__link {
  display: flex; flex-direction: column; gap: 14px; height: 100%;
  padding: 28px 28px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px -26px rgba(28,26,22,0.42);
  border-color: var(--line-strong);
}
/* ---------- BORÍTÓ (kép vagy gradiens) ---------- */
.card__cover {
  margin: -28px -28px 16px; height: 158px; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card--featured .card__cover { height: 260px; margin: -46px -48px 24px; border-radius: var(--radius) var(--radius) 0 0; }
.cover--gen { display: flex; align-items: center; justify-content: center; }
.cover__icon { font-size: 58px; filter: saturate(.7); opacity: .9; }
/* gradiens borítók kategória szerint (lágy) */
.cover--gen.cat-news { background: linear-gradient(135deg, #f3d9cd, #e8b79f); }
.cover--gen.cat-howto { background: linear-gradient(135deg, #d6e6dd, #a9cdb9); }
.cover--gen.cat-business { background: linear-gradient(135deg, #d4e0ec, #a7c0db); }
.cover--gen.cat-work { background: linear-gradient(135deg, #e6d8e6, #c8a9c8); }
.cover--gen.cat-creative { background: linear-gradient(135deg, #f0e3c4, #ddc488); }
.cover--gen.cat-other { background: linear-gradient(135deg, #e4ddd0, #cdc3b1); }
.article__cover {
  height: 340px; margin: 0 0 34px; border-radius: var(--radius); overflow: hidden;
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article__cover.cover--gen { display: flex; align-items: center; justify-content: center; }
.article__cover .cover__icon { font-size: 96px; }

.card__meta { display: flex; align-items: center; justify-content: space-between; }
.card__read { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.card__title {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700;
  font-size: 22px; line-height: 1.14; letter-spacing: -0.02em;
}
.card:first-child .card__title, .card:nth-child(2) .card__title { font-size: 28px; }
.card__subtitle { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; flex: 1; }
.card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted); font-weight: 600;
}
.card__arrow { color: var(--ink-soft); font-size: 18px; transition: transform .18s ease; }
.card__link:hover .card__arrow { transform: translateX(5px); color: var(--accent); }

/* ---------- CATEGORY TAGS (soft, muted) ---------- */
.tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; color: #fff;
}
.cat-news { background: var(--c-news); }
.cat-howto { background: var(--c-howto); }
.cat-business { background: var(--c-business); }
.cat-work { background: var(--c-work); }
.cat-creative { background: var(--c-creative); }
.cat-other { background: var(--c-other); }

/* ---------- AUDIENCE BADGE (célhasználat - a fő tengely) ---------- */
.aud {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.02em; padding: 5px 12px; border-radius: 100px;
  border: 1.5px solid var(--line-strong); color: var(--ink-soft);
  background: var(--card);
}
.aud-personal { border-color: var(--c-howto); color: var(--c-howto); }
.aud-business { border-color: var(--c-business); color: var(--c-business); }
.aud-both { border-color: var(--ink-soft); color: var(--ink-soft); }
.card--featured .aud { font-size: 13px; }

/* ---------- FILTER CHIPS ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; justify-content: center; }
.chip {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 100px; cursor: pointer;
  background: var(--card); color: var(--ink-soft); border: 1px solid var(--line-strong);
  transition: all .15s ease;
}
.chip:hover { color: var(--ink); border-color: var(--ink-soft); }
.chip--active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- ARTICLE PAGE ---------- */
.article { max-width: 700px; margin: 0 auto; }
.article__head { margin-bottom: 40px; text-align: center; }
.article__badges { display: flex; gap: 10px; justify-content: center; align-items: center; margin-bottom: 4px; }
.article__title {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(34px, 6vw, 60px); line-height: 1.03; letter-spacing: -0.03em;
  margin: 18px 0 16px;
}
.article__subtitle {
  font-size: clamp(18px, 2.6vw, 23px); color: var(--ink-soft); line-height: 1.4;
  max-width: 34ch; margin: 0 auto;
}
.article__meta {
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; justify-content: center;
  margin-top: 24px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em;
}
.article__meta .dot { color: var(--line-strong); }

.article__body { font-size: 18.5px; line-height: 1.78; color: var(--ink); }
.article__body > p:first-of-type::first-letter {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: 4.2em; line-height: 0.78; float: left; margin: 6px 12px 0 0; color: var(--ink);
}
.article__body h2 {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: 28px; line-height: 1.14; margin: 42px 0 14px; letter-spacing: -0.02em;
}
.article__body h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 22px; margin: 28px 0 10px; }
.article__body p { margin-bottom: 22px; }
.article__body ul, .article__body ol { margin: 0 0 22px 1.2em; }
.article__body li { margin-bottom: 10px; }
.article__body a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.article__body strong { font-weight: 700; }
.article__body blockquote {
  font-size: 24px; line-height: 1.35; font-weight: 500;
  margin: 32px 0; padding-left: 24px; border-left: 4px solid var(--accent); color: var(--ink);
}
.article__body hr { display: none; }

/* "What this means for you" — soft dark callout */
.impact {
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius); padding: 34px 36px; margin: 44px 0;
}
.impact__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; display: flex; align-items: center; gap: 9px;
}
.impact__label::before { content: "✦"; }
.impact ul { list-style: none; margin: 0; }
.impact li { margin-bottom: 14px; padding-left: 24px; position: relative; line-height: 1.6; }
.impact li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.impact strong { color: #fff; }
.impact p { margin-bottom: 12px; }
.impact p::first-letter { all: unset; }

/* tags + footer */
.article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0; justify-content: center; }
.minitag { font-size: 13px; color: var(--muted); background: var(--paper-2); padding: 5px 12px; border-radius: 100px; }
.article__foot { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line-strong); text-align: center; }
.source-link { display: inline-block; font-weight: 700; color: var(--accent-dark); text-decoration: none; margin-bottom: 18px; }
.source-link:hover { text-decoration: underline; }
.ai-disclosure {
  font-size: 14px; color: var(--muted);
  background: var(--paper-2); padding: 15px 20px; border-radius: var(--radius-sm);
  margin: 0 auto 22px; max-width: 60ch; text-align: left;
}
.back-link { display: inline-block; font-weight: 700; color: var(--ink); text-decoration: none; }
.back-link:hover { color: var(--accent-dark); }

/* ---------- EMPTY ---------- */
.empty { text-align: center; padding: 90px 20px; }
.empty__title { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 46px; margin-bottom: 12px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: var(--paper); margin-top: 80px; padding: 56px 0; }
.site-footer__brand { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 30px; }
.site-footer .navbar__dot { color: var(--accent); }
.site-footer__note { color: #c9c2b4; margin: 10px 0 20px; max-width: 50ch; }
.site-footer__fine { font-size: 13px; color: #948d80; }

/* ---------- DARK MODE ---------- */
[data-theme="dark"] {
  --paper: #17150f;
  --card: #201d16;
  --paper-2: #262219;
  --ink: #f0e9d8;
  --ink-soft: #b3aa97;
  --muted: #8b8373;
  --line: #322d24;
  --line-strong: #423b30;
}
[data-theme="dark"] .impact { background: #000; }
[data-theme="dark"] .site-footer { background: #000; }

/* ---------- ANIMATION ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.article { animation: rise .5s ease both; }

/* ---------- PROGRESS BAR ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--accent); z-index: 200; transition: width .1s linear;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .card, .card:first-child, .card:nth-child(2) { grid-column: span 1; }
  .card:first-child .card__title, .card:nth-child(2) .card__title { font-size: 22px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .card, .card:first-child, .card:nth-child(2) { grid-column: span 1; }
  .navbar__nav { gap: 16px; }
  .card--featured .card__link { padding: 32px 26px; }
  .impact { padding: 26px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== Support (támogatás) — navbar gomb, footer link, oldal ===== */
.navbar__nav a.navbar__support {
  padding: 9px 26px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: transparent;
  color: var(--ink); font-weight: 700; line-height: 1; white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.navbar__nav a.navbar__support::after { display: none; }
.navbar__nav a.navbar__support:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.site-footer__support { margin: 10px 0 4px; font-size: 14px; color: var(--ink-soft); }
.site-footer__support a { color: var(--accent-dark); font-weight: 700; }
.site-footer__support a:hover { text-decoration: underline; }

.support { max-width: 760px; margin: 0 auto; padding: 56px 0 24px; text-align: center; }
.support__title {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(30px, 5vw, 46px); letter-spacing: -0.02em; line-height: 1.08;
  margin: 16px 0 14px;
}
.support__title em { color: var(--accent); font-style: italic; }
.support__lead { font-size: 18px; color: var(--ink-soft); max-width: 620px; margin: 0 auto 28px; line-height: 1.6; }
.support__cta { margin: 6px 0 40px; text-align: center; }
.support__btn {
  display: inline-block; padding: 20px 54px; border-radius: 100px; text-align: center;
  background: var(--ink); color: var(--paper);
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
  box-shadow: 0 20px 42px -22px rgba(28,26,22,0.55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.support__btn:hover { transform: translateY(-2px); box-shadow: 0 26px 48px -22px rgba(28,26,22,0.62); }
.support__btn:active { transform: translateY(0); }
.support__btn--soon { background: transparent; color: var(--muted); box-shadow: none; cursor: default; border: 1px dashed var(--line-strong); font-weight: 700; }
.support__btn--soon:hover { transform: none; box-shadow: none; }
.support__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 8px 0 36px; text-align: left; }
.support__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 20px; }
.support__ico { font-size: 26px; }
.support__card h3 { font-family: 'Schibsted Grotesk', sans-serif; font-size: 16px; margin: 10px 0 6px; }
.support__card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.support__thanks {
  text-align: left; background: var(--card);
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px; max-width: 620px; margin: 0 auto 30px;
}
.support__thanks-h { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.support__thanks p:last-child { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.support__note { font-size: 14px; color: var(--muted); max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }
@media (max-width: 700px) {
  .support__cards { grid-template-columns: 1fr; }
  .support { padding-top: 36px; }
}

/* ===== Útmutató (step-by-step guide) ===== */
.cat-guide { background: #4f7a86; }
.g-tool, .g-level { display:inline-block; font-size:12px; font-weight:700; padding:4px 11px; border-radius:100px; }
.g-tool { background: color-mix(in srgb, #4f7a86 14%, var(--paper)); color:#3a5b65; border:1px solid color-mix(in srgb,#4f7a86 30%,transparent); }
.g-level { background: var(--paper-2); color: var(--ink-soft); text-transform: capitalize; }
.g-intro { font-size: 19px; line-height: 1.6; color: var(--ink); margin: 6px 0 30px; }
.g-intro strong { font-weight: 700; }
.g-steps { display: flex; flex-direction: column; gap: 16px; }
.g-step { display: flex; gap: 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.g-step__no { flex-shrink:0; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--paper);
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.g-step__grid { flex: 1; min-width: 0; display: grid; grid-template-columns: 1fr 190px; gap: 24px; align-items: center; }
.g-step__body { min-width: 0; }
.g-step__art { color: var(--gc, var(--accent)); align-self: center; }
.g-step__art .g-art__svg { display: block; width: 100%; height: auto; }
.g-step__h { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 19px; margin: 4px 0 8px; letter-spacing: -0.01em; }
.g-step__body p, .g-section p { margin: 8px 0; }
.g-example { background: color-mix(in srgb, var(--accent) 12%, var(--paper)); border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0; padding: 10px 14px; font-size: 14.5px; color: var(--ink); margin: 10px 0 !important; }
.g-prereq, .g-mistakes, .g-try { border-radius: var(--radius); padding: 18px 22px; margin: 16px 0; border: 1px solid var(--line); }
.g-prereq { background: color-mix(in srgb, var(--accent) 8%, var(--card)); }
.g-mistakes { background: color-mix(in srgb, var(--c-news) 8%, var(--card)); border-color: color-mix(in srgb, var(--c-news) 22%, var(--line)); }
.g-try { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.g-try a { color: var(--paper); text-decoration: underline; }
.g-block__h { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.g-prereq ul, .g-mistakes ul { margin: 4px 0 0; padding-left: 20px; }
.g-prereq li, .g-mistakes li { margin: 5px 0; }
.g-section { margin: 16px 0; }
@media (max-width: 760px){
  .g-step__grid { grid-template-columns: 1fr; gap: 14px; }
  .g-step__art { order: -1; max-width: 200px; margin: 0 auto; }
}
@media (max-width: 560px){ .g-step { padding: 16px; gap: 12px; } .g-step__no{ width:32px;height:32px;font-size:16px; } }

/* ===== Guides: home CTA + tiled browser ===== */
.guides-cta { display:flex; align-items:center; gap:16px; background:var(--card); border:1px solid var(--line); border-left:3px solid #4f7a86; border-radius:var(--radius); padding:18px 22px; margin:0 0 32px; text-decoration:none; color:var(--ink); transition:transform .15s ease, box-shadow .15s ease; }
.guides-cta:hover { transform:translateY(-2px); box-shadow:0 16px 36px -24px rgba(28,26,22,.4); }
.guides-cta__i { font-size:30px; line-height:1; }
.guides-cta__t { flex:1; font-size:14px; color:var(--ink-soft); line-height:1.5; }
.guides-cta__t strong { color:var(--ink); font-family:'Schibsted Grotesk',sans-serif; font-size:16px; }
.guides-cta__arrow { font-size:20px; color:#4f7a86; }
.guides-hero { padding: 8px 0 16px; }
.guides-hero__title { font-family:'Schibsted Grotesk',sans-serif; font-weight:800; font-size:clamp(32px,6vw,52px); letter-spacing:-.02em; line-height:1.05; margin:8px 0 10px; }
.guides-hero__title em { color:var(--accent); font-style:italic; }
.guides-hero__tag { font-size:18px; color:var(--ink-soft); max-width:640px; }
/* Útmutató fülek — Mindennapi (általános) vs. Eszközök szerint (céges) */
.gtabs { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin:6px 0 28px; }
.gtab { display:inline-flex; align-items:center; gap:8px; font-family:'Schibsted Grotesk',sans-serif; font-weight:800; font-size:15px; color:var(--ink-soft); background:var(--card); border:1px solid var(--line-strong); border-radius:100px; padding:10px 22px; cursor:pointer; text-decoration:none; transition:transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease; }
.gtab:hover { color:var(--ink); border-color:var(--ink-soft); }
.gtab--active { background:var(--ink); color:var(--paper); border-color:var(--ink); }
.gtab__c { font-size:12px; font-weight:700; opacity:.65; }
.gpanel { display:none; }
.gpanel--active { display:block; animation:gpanelIn .25s ease; }
.gpanel__note { text-align:center; margin:0 auto 18px; max-width:560px; }
@keyframes gpanelIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.gtiles { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; }
.gtile { flex:1 1 230px; max-width:300px; display:flex; flex-direction:column; background:var(--card); border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; min-height:178px; text-decoration:none; color:var(--ink); transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.gtile:hover { transform:translateY(-4px); box-shadow:0 20px 40px -24px rgba(28,26,22,.5); border-color:var(--line-strong); }
.gtile__head { position:relative; overflow:hidden; height:92px; display:flex; align-items:center; gap:12px; padding:0 16px;
  background:linear-gradient(145deg, color-mix(in srgb,var(--gc) 82%,#fff) 0%, var(--gc) 50%, color-mix(in srgb,var(--gc) 72%,#000) 100%); }
.gtile__rings { position:absolute; right:-46px; top:-46px; width:160px; height:160px; pointer-events:none;
  background:repeating-radial-gradient(circle at center, rgba(255,255,255,.13) 0 1.5px, transparent 1.5px 18px);
  -webkit-mask-image:radial-gradient(circle,#000 52%,transparent 70%); mask-image:radial-gradient(circle,#000 52%,transparent 70%); }
.gtile__chip { position:relative; z-index:1; flex-shrink:0; width:46px; height:46px; border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:24px;
  background:rgba(255,255,255,.17); border:1px solid rgba(255,255,255,.32); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); box-shadow:inset 0 1px 0 rgba(255,255,255,.38); }
.gtile__brand { position:relative; z-index:1; color:#fff; font-family:'Schibsted Grotesk',sans-serif; font-weight:800; font-size:14px; letter-spacing:-.01em; line-height:1.15; }
.gtile__body { display:flex; flex-direction:column; gap:8px; padding:14px 16px 16px; flex:1; }
.gtile__title { font-family:'Schibsted Grotesk',sans-serif; font-weight:700; font-size:15.5px; line-height:1.25; }
.gtile__meta { display:flex; flex-wrap:wrap; gap:6px; margin-top:auto; align-items:center; }
.gtile__tool { font-size:11px; font-weight:700; color:#3a5b65; background:color-mix(in srgb,#4f7a86 12%,var(--paper)); padding:3px 9px; border-radius:100px; }
.gtile__aud { font-size:11px; font-weight:700; color:var(--ink-soft); background:var(--paper-2); padding:3px 9px; border-radius:100px; }
.gtile__lvl { font-size:11px; color:var(--muted); text-transform:capitalize; }
/* Általános zóna (felül) — vizuálisan elválik a cég-specifikus résztől */
.grid-section--general { padding-bottom: 40px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.grid-section--general + .brandpick { padding-top: 8px; }
/* Cég-csempék (by tool) */
.brandpick { margin-bottom: 30px; }
.brandtiles { display:grid; grid-template-columns:repeat(auto-fill,minmax(135px,1fr)); gap:12px; }
.brandtile { display:flex; flex-direction:column; align-items:center; text-align:center; gap:9px; background:var(--card); border:1px solid var(--line); border-top:3px solid var(--gc); border-radius:var(--radius-sm); padding:18px 12px 15px; text-decoration:none; color:var(--ink); transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.brandtile:hover { transform:translateY(-4px); box-shadow:0 18px 36px -22px color-mix(in srgb,var(--gc) 55%, rgba(28,26,22,.5)); }
.brandtile__i { width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:30px; line-height:1;
  background:linear-gradient(135deg, color-mix(in srgb,var(--gc) 22%, #fff), color-mix(in srgb,var(--gc) 42%, #fff));
  border:1px solid color-mix(in srgb,var(--gc) 40%, transparent); box-shadow:0 8px 18px -10px color-mix(in srgb,var(--gc) 65%, transparent); }
.brandtile__n { font-family:'Schibsted Grotesk',sans-serif; font-weight:800; font-size:14px; }
.brandtile__c { font-size:11px; font-weight:700; color:var(--gc); }
@media(max-width:560px){ .gtiles{ grid-template-columns:repeat(2,1fr); } .guides-cta{ flex-wrap:wrap; } .brandtiles{ grid-template-columns:repeat(3,1fr); } }

/* ===== Kereszthivatkozás (hír ↔ útmutató) ===== */
.xref { display:block; margin:26px 0 8px; padding:16px 18px; border:1px solid var(--line-strong); border-radius:14px; background:var(--paper-2); }
.xref--guide { background:color-mix(in srgb,var(--accent) 9%,var(--paper)); border-color:color-mix(in srgb,var(--accent) 30%,var(--line)); }
.xref__lbl { display:block; font-size:11.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--muted); margin-bottom:7px; }
.xref__link { display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink); }
.xref__t { flex:1; font-family:'Schibsted Grotesk',sans-serif; font-weight:700; font-size:16px; line-height:1.3; }
.xref__arrow { font-size:18px; color:var(--accent); flex-shrink:0; }
.xref__link:hover .xref__t { text-decoration:underline; }

/* ===== Táblázatok (cikkekben + útmutatókban) ===== */
.table-wrap { overflow-x:auto; margin:22px 0; border:1px solid var(--line); border-radius:12px; -webkit-overflow-scrolling:touch; }
.table-wrap table { width:100%; border-collapse:collapse; font-size:14.5px; min-width:480px; }
.table-wrap th, .table-wrap td { text-align:left; padding:12px 16px; border-bottom:1px solid var(--line); vertical-align:top; line-height:1.5; }
.table-wrap thead th { background:var(--paper-2); font-family:'Schibsted Grotesk',sans-serif; font-weight:800; font-size:12.5px; letter-spacing:.01em; color:var(--ink); border-bottom:2px solid var(--line-strong); }
.table-wrap tbody tr:last-child td { border-bottom:none; }
.table-wrap tbody tr:nth-child(even) { background:color-mix(in srgb,var(--paper-2) 35%,transparent); }
.table-wrap td:first-child { font-weight:700; color:var(--ink); }

/* ===== Útmutató borító (megtervezett, nem AI-fotó) ===== */
/* Útmutató-borító — szerkesztőségi sáv: bal-igazított, gyűrű-aláírással */
.guide-cover { position:relative; display:flex; align-items:flex-end; overflow:hidden;
  background:linear-gradient(145deg, color-mix(in srgb,var(--gc) 84%,#fff) 0%, var(--gc) 44%, color-mix(in srgb,var(--gc) 70%,#000) 100%); }
.guide-cover__rings { position:absolute; right:-90px; top:-90px; width:360px; height:360px; pointer-events:none;
  background:repeating-radial-gradient(circle at center, rgba(255,255,255,.11) 0 1.5px, transparent 1.5px 30px);
  -webkit-mask-image:radial-gradient(circle at center,#000 58%,transparent 72%); mask-image:radial-gradient(circle at center,#000 58%,transparent 72%); }
.guide-cover__inner { position:relative; z-index:1; padding:34px 36px; }
.guide-cover__eyebrow { display:inline-block; font-size:11.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.80); }
.guide-cover__row { display:flex; align-items:center; gap:18px; margin-top:16px; }
.guide-cover__chip { flex-shrink:0; width:62px; height:62px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:33px;
  background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.32); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.38), 0 12px 30px -14px rgba(0,0,0,.45); }
.guide-cover__focal { font-family:'Schibsted Grotesk',sans-serif; font-weight:800; font-size:clamp(28px,5vw,44px); line-height:1; letter-spacing:-.025em; color:#fff; }
.guide-cover__sub { display:block; margin-top:13px; font-size:13.5px; font-weight:600; color:rgba(255,255,255,.74); }
@media (max-width:560px){ .guide-cover__inner{ padding:22px 22px; } .guide-cover__chip{ width:50px;height:50px;font-size:26px;border-radius:14px; } }

/* Lépések a márka színével (cég-szín az <article>-ön: --gc) */
.guide .g-step__no { background: var(--gc, var(--ink)); }
.guide .g-step { border-left: 3px solid color-mix(in srgb, var(--gc, var(--accent)) 55%, var(--line)); }

/* 💬 példa = chat-input mockup ("így írd be") — vizuális használat-bemutatás */
.g-prompt { margin: 16px 0; }
.g-prompt__lbl { display:block; font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--muted); margin-bottom:7px; }
.g-prompt__box { display:block; position:relative; background:var(--paper); border:1px solid var(--line-strong); border-radius:16px; padding:14px 50px 14px 16px; font-size:14.5px; color:var(--ink); line-height:1.5; box-shadow:0 8px 20px -14px rgba(28,26,22,.45); }
.g-prompt__send { position:absolute; right:11px; top:50%; transform:translateY(-50%); width:30px; height:30px; border-radius:50%; background:var(--gc, var(--accent)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; }
