/*
Theme Name: Yellowbird
Author: Digital Footprint
Description: Egyedi WordPress blog theme a yellowbird.hu számára
Version: 1.0.0
License: Proprietary
Text Domain: yellowbird
*/

/* ============================================================
   ROOT — CSS változók
   ============================================================ */
:root {
  --primary:       #F2B809;
  --dark:          #222222;
  --text:          #626262;
  --muted:         #919191;
  --border-light:  #cecece;
  --border:        #e9e9e9;
  --neutral-300:   #f1edde;
  --bg-alt:        #f9f8f4;
  --white:         #ffffff;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

body {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.667em;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 { font-size: 52px; line-height: 1.269em; margin-bottom: 14px; }
h2 { font-size: 38px; line-height: 1.289em; }
h3 { font-size: 24px; line-height: 1.417em; margin-bottom: 15px; }
h4 { font-size: 22px; line-height: 1.273em; }
h5 { font-size: 18px; }
h6 { font-size: 16px; font-weight: 700; }

p { margin-bottom: 0; }

a {
  color: var(--dark);
  text-decoration: underline;
  transition: color .35s;
}
a:hover { color: var(--primary); }

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

ul, ol { padding-left: 40px; margin-bottom: 10px; }
li { margin-bottom: 15px; line-height: 1.111em; }

strong { color: var(--dark); font-weight: 700; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: transparent;
  padding-top: 24px;
  position: relative;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: inline-block;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform .35s;
}
.site-logo:hover { transform: scale3d(.96, .96, 1.01); }

.site-logo img { width: 120px; height: auto; display: block; }

.site-logo__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  text-decoration: none;
}

/* Desktop nav */
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.site-nav ul li { margin: 0; line-height: 1; }

.site-nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color .35s;
}
.site-nav a:hover,
.site-nav a.current-menu-item { color: var(--primary); }

.header-divider {
  border: none;
  border-bottom: 1px solid var(--border);
  margin-top: 24px;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
}
.mobile-nav.is-open {
  display: block;
  max-height: 600px;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { margin-bottom: 14px; line-height: 1; }
.mobile-nav a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  transition: color .35s;
}
.mobile-nav a:hover { color: var(--primary); }

/* ============================================================
   ACCENT BAR (szekció jelölő)
   ============================================================ */
.accent-bar {
  background: var(--primary);
  width: 21px;
  height: 2.5px;
  margin-right: 10px;
  flex-shrink: 0;
}

.accent-bar--small {
  background: var(--primary);
  width: 13px;
  height: 1.5px;
  margin-right: 13px;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.125em;
  padding: 24px 40px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .35s;
}
.btn-primary:hover {
  color: var(--dark);
  transform: scale3d(.96, .96, 1.01);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.125em;
  padding: 24px 40px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .35s, border-color .35s, background-color .35s;
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--dark);
  transform: scale3d(.96, .96, 1.01);
}

/* ============================================================
   CATEGORY BADGE
   ============================================================ */
.cat-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .35s, color .35s;
  cursor: pointer;
}
.cat-badge:hover { background: var(--dark); color: var(--white); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding-top: 180px;
  padding-bottom: 180px;
}

.section--alt {
  background-color: var(--bg-alt);
  padding-top: 87px;
  padding-bottom: 87px;
}

.section-head { margin-bottom: 40px; }

.section-head--center {
  text-align: center;
  max-width: 592px;
  margin: 0 auto 40px;
}

/* ============================================================
   HERO — split layout (index.php)
   ============================================================ */
.section-hero {
  padding-top: 99px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 1;
  max-width: 54%;
  margin-right: 40px;
}

.hero-right {
  max-width: 473px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.hero-subtitle-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  line-height: 1.154em;
  color: var(--dark);
}

.hero-title { margin-bottom: 14px; }

.hero-paragraph {
  font-size: 22px;
  line-height: 1.545em;
  max-width: 532px;
  margin-bottom: 48px;
}

.hero-image-wrap { width: 100%; }

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 34px rgba(0, 0, 0, .06);
  display: block;
}

/* ============================================================
   POST CARDS — közös stílusok
   ============================================================ */
.card-img--240 { height: 240px; overflow: hidden; }
.card-img--220 { height: 220px; overflow: hidden; }

.card-img--240 img,
.card-img--220 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.post-card__img-wrapper {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  text-decoration: none;
}
.post-card__img-wrapper:hover .card-img--240 img,
.post-card__img-wrapper:hover .card-img--220 img {
  transform: scale(1.04);
}

.post-card__meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375em;
}

.post-card__cat {
  color: var(--text);
  text-decoration: none;
  line-height: 1.375em;
  transition: color .35s;
}
.post-card__cat:hover { color: var(--primary); }

.post-card__content {
  color: var(--text);
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
}
.post-card__content:hover { color: var(--text); }

.post-card__title {
  font-size: 24px;
  line-height: 1.417em;
  margin-bottom: 12px;
  color: var(--dark);
  transition: color .35s;
}
.post-card__content:hover .post-card__title { color: var(--primary); }

.post-card__excerpt {
  line-height: 1.667em;
  margin-bottom: 28px;
}

.post-card__read-more {
  display: flex;
  align-items: center;
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375em;
  margin-top: auto;
}

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

/* ============================================================
   3-COL GRID (Legújabb cikkek)
   ============================================================ */
.posts-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 28px;
  row-gap: 60px;
}

/* ============================================================
   2-COL GRID (Kiemelt cikkek)
   ============================================================ */
.posts-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 56px;
}

/* ============================================================
   ARCHIVE GRID
   ============================================================ */
.archive-header {
  background: var(--bg-alt);
  padding-top: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.archive-title { margin: 0; }

.archive-body { padding: 80px 0 100px; }

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 28px;
  row-gap: 60px;
}

/* ============================================================
   SINGLE — Layout B (Szerkesztői hero, 560px)
   ============================================================ */
.single-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.single-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.08) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.single-hero__cats { margin-bottom: 16px; }

.single-hero__title {
  color: var(--white);
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  max-width: 820px;
}

/* Fallback header (nincs kiemelt kép) */
.single-fallback-header {
  background: var(--bg-alt);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

.single-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.single-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .35s;
}
.single-breadcrumb a:hover { color: var(--primary); }
.single-breadcrumb__sep { color: var(--border-light); }

.single-cats { margin-bottom: 16px; }

.single-title { margin: 0; }

/* Single tartalom */
.single-content-wrap {
  max-width: 720px;
  margin: 60px auto 80px;
  padding: 0 24px;
}

.entry-content {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}
.entry-content p { margin-bottom: 20px; }
.entry-content h2 { font-size: 28px; margin: 32px 0 16px; }
.entry-content h3 { font-size: 22px; margin: 28px 0 12px; }
.entry-content h4 { font-size: 20px; margin: 24px 0 10px; }
.entry-content a { color: var(--dark); }
.entry-content ul, .entry-content ol { margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; line-height: 1.6; }
.entry-content blockquote {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 32px 40px;
  margin: 28px 0;
  font-size: 20px;
}

.entry-content img {
  border-radius: 6px;
  margin: 24px 0;
  max-width: 100%;
}

/* Related posts — Style D (fehér, borderes kártyák) */
.related-section {
  background: var(--white);
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}

.related-section__title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .35s, transform .35s;
}
.related-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: scale(.99);
  color: inherit;
}

.related-card__img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.related-card:hover .related-card__img img { transform: scale(1.04); }

.related-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-card__cat {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.related-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   PAGE
   ============================================================ */
.page-header {
  background: var(--bg-alt);
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-title { margin: 0; }

.page-content-wrap {
  max-width: 800px;
  margin: 60px auto 80px;
  padding: 0 24px;
}

.page-content {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}
.page-content p { margin-bottom: 20px; }
.page-content img { border-radius: 6px; margin: 16px 0; }

/* ============================================================
   404
   ============================================================ */
.page-404 {
  background: var(--bg-alt);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.page-404__inner { max-width: 600px; }

.page-404__number {
  font-family: 'Manrope', sans-serif;
  font-size: 180px;
  font-weight: 700;
  line-height: .9;
  color: var(--primary);
  margin-bottom: 24px;
}

.page-404__title { margin-bottom: 16px; }

.page-404__text {
  font-size: 22px;
  line-height: 1.545em;
  max-width: 500px;
  margin: 0 auto 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 120px;
  padding-bottom: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  min-width: 200px;
  max-width: 332px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform .35s;
}
.footer-logo-link:hover { transform: scale3d(.96, .96, 1.01); }
.footer-logo-link img { width: 145px; height: auto; }
.footer-logo-link span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
}

.footer-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-nav-title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.429em;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav-list li { margin: 0; line-height: 1; }

.footer-nav-list a {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.111em;
  transition: color .35s;
}
.footer-nav-list a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap {
  margin-top: 60px;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 3px;
  text-decoration: none;
  transition: background .3s, border-color .3s, color .3s;
}
.pagination a:hover,
.pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}
.pagination .current { cursor: default; }

/* ============================================================
   RESPONSIVE — 991px (tablet)
   ============================================================ */
@media (max-width: 991px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }

  .section { padding-top: 100px; padding-bottom: 100px; }
  .section--alt { padding-top: 60px; padding-bottom: 60px; }

  /* Hero */
  .section-hero { padding-top: 60px; padding-bottom: 80px; }
  .hero-wrapper { flex-direction: column; }
  .hero-left { max-width: 100%; margin-right: 0; margin-bottom: 48px; }
  .hero-right { max-width: 100%; }

  /* Grids */
  .posts-grid-3 { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Nav */
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================================================
   RESPONSIVE — 767px (mobil)
   ============================================================ */
@media (max-width: 767px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .section { padding-top: 60px; padding-bottom: 60px; }
  .section-hero { padding-top: 48px; padding-bottom: 60px; }

  /* Grids — KIZÁRÓLAG 1 oszlop mobilon */
  .posts-grid-3 { grid-template-columns: 1fr; row-gap: 48px; }
  .posts-grid-2 { grid-template-columns: 1fr; row-gap: 48px; }
  .archive-grid { grid-template-columns: 1fr; row-gap: 48px; }
  .related-grid { grid-template-columns: 1fr; }

  /* Egységes mobilkép-magasság: 300px */
  .card-img--240,
  .card-img--220 { height: 300px; }
  .related-card__img { height: 300px; }

  /* Single */
  .single-hero { height: 320px; }
  .single-hero__title { font-size: 26px; }
  .single-hero__overlay { padding: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Hero */
  .hero-paragraph { font-size: 18px; }
  .btn-primary, .btn-secondary { padding: 18px 28px; }

  /* 404 */
  .page-404__number { font-size: 120px; }
}

/* ============================================================
   TRUST SÁV — 4 kártya, keret, thumbnail nélkül
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .35s, transform .35s;
}
.trust-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-4px);
  color: inherit;
}

.trust-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.trust-card__title {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color .35s;
}
.trust-card:hover .trust-card__title { color: var(--primary); }

.trust-card__excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ============================================================
   KIEMELT CIKK — split kép bal / szöveg jobb
   ============================================================ */
.featured-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.featured-left {
  flex: 1;
  min-width: 0;
}

.featured-img-link { display: block; }
.featured-img-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform .5s;
}
.featured-img-link:hover img { transform: scale(1.03); }

.featured-right {
  max-width: 467px;
  flex-shrink: 0;
}

.featured-cat-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.featured-cat {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.featured-title {
  font-size: 38px;
  line-height: 1.289em;
  margin-bottom: 20px;
}
.featured-title a {
  text-decoration: none;
  color: var(--dark);
  transition: color .35s;
}
.featured-title a:hover { color: var(--primary); }

.featured-excerpt {
  font-size: 18px;
  line-height: 1.667em;
  margin-bottom: 40px;
}

/* ============================================================
   FEJEZETEK — számozott 4 poszt, sárga pöttyök
   ============================================================ */
.chapters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.chapter-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border-radius: 6px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .35s, transform .35s;
}
.chapter-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
  color: inherit;
}

.chapter-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chapter-body { flex: 1; min-width: 0; }

.chapter-title {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color .35s;
}
.chapter-item:hover .chapter-title { color: var(--primary); }

.chapter-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ============================================================
   OLVASÓI AJÁNLÓK — szöveg bal + 2×2 circular thumb jobb
   ============================================================ */
.readers-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.readers-left {
  max-width: 360px;
  flex-shrink: 0;
}

.readers-accent-bar {
  width: 21px;
  height: 2.5px;
  background: var(--primary);
  margin-bottom: 16px;
}

.readers-title { margin-bottom: 20px; }

.readers-desc {
  font-size: 18px;
  line-height: 1.667em;
  margin-bottom: 0;
}

.readers-cta { margin-top: 32px; }

.readers-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}

.reader-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: background .35s, transform .35s;
}
.reader-card:hover {
  background: var(--neutral-300);
  transform: translateY(-2px);
  color: inherit;
}

.reader-card__thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.reader-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reader-card__body { flex: 1; min-width: 0; }

.reader-card__cat {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.reader-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
  transition: color .35s;
}
.reader-card:hover .reader-card__title { color: var(--primary); }

/* ============================================================
   HIGHLIGHT — nagy kép + kártya jobb
   ============================================================ */
.highlight-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
}

.highlight-image-wrap {
  flex: 1;
  min-width: 0;
}
.highlight-image-wrap a { display: block; }
.highlight-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform .5s;
}
.highlight-image-wrap a:hover img { transform: scale(1.03); }

.highlight-card {
  width: 400px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 6px;
  padding: 48px 40px;
  box-shadow: 0 4px 34px rgba(0,0,0,.07);
}

.highlight-cat-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.highlight-cat {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.highlight-title {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.highlight-title a {
  text-decoration: none;
  color: var(--dark);
  transition: color .35s;
}
.highlight-title a:hover { color: var(--primary); }

.highlight-excerpt {
  font-size: 17px;
  line-height: 1.647em;
  margin-bottom: 36px;
}

/* ============================================================
   RESPONSIVE — 991px — új szekciók
   ============================================================ */
@media (max-width: 991px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }

  .featured-wrapper { flex-direction: column; gap: 40px; }
  .featured-right { max-width: 100%; }

  .readers-wrapper { flex-direction: column; gap: 48px; }
  .readers-left { max-width: 100%; }

  .highlight-wrapper { flex-direction: column; gap: 40px; }
  .highlight-card { width: 100%; }
}

/* ============================================================
   RESPONSIVE — 767px — új szekciók
   ============================================================ */
@media (max-width: 767px) {
  .trust-grid { grid-template-columns: 1fr; }
  .chapters-grid { grid-template-columns: 1fr; }
  .readers-grid { grid-template-columns: 1fr; }

  .featured-title { font-size: 28px; }
  .highlight-card { padding: 32px 24px; }
  .highlight-title { font-size: 24px; }
}

/* ============================================================
   GDPR gomb border-radius override (Moove GDPR plugin)
   ============================================================ */
#cookie-notice-accept-button,
.cn-button,
.cli-plugin-button,
.moove-gdpr-infobar-allow-btn,
.moove-gdpr-infobar-reject-btn,
.moove-gdpr-btn-wrap a,
.cmplz-btn,
.cc-btn {
  border-radius: 3px !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton {
  border-radius: 3px !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  border-radius: 3px !important;
  color: #222222 !important;
  font-weight: 800 !important;
  font-family: 'Manrope', sans-serif !important;
}
