/*
Theme Name: Mentorship
Theme URI:
Author: Digital Footprint
Description: Meleg, organikus magazin blog sablon – Café Nova stílusban. Instrument Serif + Inter fontok, erdei zöld akcent.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mentorship
*/

/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
  --cream:        #faf8f1;
  --dark:         #17191f;
  --primary:      #1f6f49;
  --primary-bg:   #e7efe2;
  --primary-muted:#b9d9ab;
  --sage:         #e9eadf;
  --sage-dark:    #dce5d6;
  --bg-alt:       #fbfbf8;
  --stat-bg:      #f7f7f3;
  --taupe:        #9d9283;
  --card-green:   #e8ebe3;
  --white:        #ffffff;
  --border:       rgba(0,0,0,.07);
  --border-md:    rgba(0,0,0,.12);
  --text-muted:   rgba(23,25,31,.62);
  --shadow-card:  0 0 0 1px rgba(0,0,0,.06), 0 1px 1px -0.5px rgba(0,0,0,.06), 0 3px 3px -1.5px rgba(0,0,0,.06), 0 6px 6px -3px rgba(0,0,0,.06), 0 12px 12px -6px rgba(0,0,0,.06), 0 24px 24px -12px rgba(0,0,0,.06);
  --shadow-sm:    0 2px 3px -1px rgba(0,0,0,.10), 0 1px 0 0 rgba(25,28,33,.02), 0 0 0 1px rgba(25,28,33,.08);
  --radius-card:  24px;
  --radius-lg:    32px;
  --radius-md:    16px;
  --radius-sm:    12px;
  --radius-pill:  999px;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* =============================================
   Container
   ============================================= */
.mnt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .mnt-container { padding: 0 20px; }
}

/* =============================================
   Card Image Base
   ============================================= */
.card-img {
  overflow: hidden;
  background: var(--sage);
  display: block;
  position: relative;
  border-radius: var(--radius-card);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  border-radius: var(--radius-card);
}
a:hover .card-img img { transform: scale(1.04); }

.card-img--hero    { height: 512px; }
.card-img--article { height: 220px; }
.card-img--banner  { height: 320px; }
.card-img--bento-tall { height: 340px; }
.card-img--bento-std  { height: 200px; }
.card-img--gallery-tall { height: auto; min-height: 520px; }
.card-img--gallery-std  { height: 260px; }
.card-img--related { height: 200px; }

/* =============================================
   Buttons
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-md);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: #f4f7ef;
  transform: translateY(-2px);
}

/* =============================================
   Section Badge
   ============================================= */
.mnt-section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .02em;
}

/* =============================================
   Category Badge (post cards)
   ============================================= */
.cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background .2s ease;
  letter-spacing: .01em;
}
.cat-badge:hover { background: #d4e8cc; }
.cat-badge--white {
  color: var(--white);
  background: rgba(255,255,255,.2);
}
.cat-badge--on-dark {
  color: var(--primary-muted);
  background: rgba(255,255,255,.1);
}
.cat-badge--on-dark:hover { background: rgba(255,255,255,.18); }

/* =============================================
   HEADER
   ============================================= */
.mnt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,241,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.mnt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.mnt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--dark);
  text-decoration: none;
  transition: opacity .2s ease;
  flex-shrink: 0;
}
.mnt-logo:hover { opacity: .8; }
.mnt-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.mnt-logo-text { font-size: 15px; font-weight: 700; letter-spacing: -.03em; }

.mnt-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mnt-nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(23,25,31,.6);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease;
}
.mnt-nav-links a:hover {
  background: var(--white);
  color: var(--dark);
}

.mnt-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border-md);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, transform .2s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  white-space: nowrap;
}
.mnt-nav-cta:hover { background: #f4f7ef; transform: translateY(-1px); }

/* Hamburger */
.mnt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.mnt-hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.mnt-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mnt-hamburger.is-open span:nth-child(2) { opacity: 0; }
.mnt-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mnt-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, opacity .35s ease;
  opacity: 0;
}
.mnt-mobile-nav.is-open {
  max-height: 400px;
  opacity: 1;
}
.mnt-mobile-nav a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s ease;
}
.mnt-mobile-nav a:last-child { border-bottom: none; }
.mnt-mobile-nav a:hover { color: var(--primary); }

@media (max-width: 767px) {
  .mnt-nav-links,
  .mnt-nav-cta { display: none; }
  .mnt-hamburger { display: flex; }
  .mnt-mobile-nav { display: flex; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.mnt-hero {
  background: var(--cream);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.mnt-hero-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.mnt-hero-glow-1 {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: rgba(31,111,73,.08);
  border-radius: 50%;
  filter: blur(80px);
}
.mnt-hero-glow-2 {
  position: absolute;
  top: 100px; right: -60px;
  width: 360px; height: 360px;
  background: rgba(216,180,139,.14);
  border-radius: 50%;
  filter: blur(80px);
}

.mnt-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

/* Left */
.mnt-hero-text { }
.mnt-hero-h1 {
  margin-top: 20px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--dark);
}
.mnt-hero-desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
}
.mnt-hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.mnt-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.mnt-stat-item {
  background: var(--stat-bg);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
}
.mnt-stat-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--dark);
}
.mnt-stat-label {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(23,25,31,.55);
}

/* Right (hero media) */
.mnt-hero-media {
  position: relative;
}
.mnt-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sage);
  padding: 10px;
  box-shadow: 0 2.8px 2.2px rgba(0,0,0,.034),
              0 6.7px 5.3px rgba(0,0,0,.048),
              0 12.5px 10px rgba(0,0,0,.06),
              0 22.3px 17.9px rgba(0,0,0,.072),
              0 41.8px 33.4px rgba(0,0,0,.086),
              0 100px 80px rgba(0,0,0,.12);
}
.mnt-hero-img-wrap .card-img--hero {
  border-radius: 22px;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.mnt-hero-img-wrap:hover .card-img--hero img { transform: scale(1.035); }

/* Floating category card (top-left) */
.mnt-hero-float-cat {
  display: none;
  position: absolute;
  top: -16px; left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  z-index: 10;
  gap: 12px;
  align-items: center;
}
.mnt-hero-float-cat-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.mnt-hero-float-cat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.mnt-hero-float-cat-sub {
  font-size: 11px;
  color: rgba(23,25,31,.5);
  margin-top: 2px;
}

/* Floating excerpt card (bottom-right) */
.mnt-hero-float-quote {
  position: absolute;
  bottom: -24px; right: 20px;
  max-width: 280px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}
.mnt-hero-float-quote-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.mnt-hero-float-quote-cat {
  font-size: 11px;
  color: rgba(23,25,31,.5);
  margin-top: 4px;
}

@media (max-width: 991px) {
  .mnt-hero-grid { grid-template-columns: 1fr; }
  .mnt-hero-float-quote { position: static; margin-top: 16px; max-width: 100%; }
  .mnt-hero-media { padding-bottom: 0; }
}
@media (max-width: 767px) {
  .mnt-hero { padding: 40px 0 60px; }
  .mnt-hero-ctas { flex-direction: column; }
  .mnt-hero-ctas .btn-primary,
  .mnt-hero-ctas .btn-secondary { justify-content: center; }
  .mnt-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   FEATURES SECTION ("Friss olvasnivaló")
   ============================================= */
.mnt-features {
  background: var(--sage);
  padding: 80px 0;
}
.mnt-section-header {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 48px;
}
.mnt-section-header--single { display: block; margin-bottom: 48px; }
.mnt-section-h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--dark);
  margin-top: 12px;
}
.mnt-section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  align-self: flex-end;
}

/* 4-col feature cards */
.mnt-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mnt-feature-card {
  background: rgba(255,255,255,.85);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform .45s cubic-bezier(.16,1,.3,1), background .25s ease;
  display: flex;
  flex-direction: column;
}
.mnt-feature-card:hover { transform: translateY(-8px); background: var(--white); }
.mnt-feature-card--dark {
  background: var(--dark);
  color: var(--white);
}
.mnt-feature-card--dark:hover { background: #1e211f; }

.mnt-feature-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.mnt-feature-card--dark .mnt-feature-card-icon {
  background: rgba(255,255,255,.1);
  color: var(--primary-muted);
}
.mnt-feature-card .cat-badge {
  align-self: flex-start;
}
.mnt-feature-card-title {
  margin-top: 20px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
}
.mnt-feature-card--dark .mnt-feature-card-title { color: var(--white); }
.mnt-feature-card-excerpt {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(23,25,31,.6);
  flex: 1;
}
.mnt-feature-card--dark .mnt-feature-card-excerpt { color: rgba(255,255,255,.6); }

/* Featured banner */
.mnt-featured-banner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 20px;
  margin-top: 40px;
  background: var(--sage-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.mnt-featured-banner-img {
  overflow: hidden;
  border-radius: var(--radius-card);
}
.mnt-featured-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-card);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  min-height: 300px;
}
.mnt-featured-banner-img:hover img { transform: scale(1.04); }
.mnt-featured-banner-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.mnt-featured-banner-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary);
}
.mnt-featured-banner-title {
  margin-top: 14px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
}
.mnt-featured-banner-excerpt {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}
.mnt-featured-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .mnt-feature-cards { grid-template-columns: repeat(2, 1fr); }
  .mnt-featured-banner { grid-template-columns: 1fr; }
  .mnt-section-header { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .mnt-features { padding: 60px 0; }
  .mnt-feature-cards { grid-template-columns: 1fr; }
}

/* =============================================
   RECOMMENDED SECTION ("Ajánlott cikkek")
   ============================================= */
.mnt-recommended {
  background: var(--bg-alt);
  padding: 80px 0;
}
.mnt-recommended-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

/* 3-col article cards */
.mnt-article-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mnt-article-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.mnt-article-card:hover { transform: translateY(-8px); }
.mnt-article-card-img { margin-bottom: 20px; }
.mnt-article-card-cats { margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.mnt-article-card--green { background: var(--card-green); }

.mnt-article-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: rgba(23,25,31,.8);
  margin-top: 16px;
}
.mnt-article-card-excerpt {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(23,25,31,.6);
}
.mnt-article-card-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dark proof-point banner */
.mnt-dark-banner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  margin-top: 32px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: var(--white);
}
.mnt-dark-banner-img {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.mnt-dark-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}
.mnt-dark-banner-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-card);
  padding: 28px;
}
.mnt-dark-banner-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary-muted);
}
.mnt-dark-banner-stat {
  margin-top: 18px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -.025em;
  color: rgba(255,255,255,.88);
}
.mnt-dark-banner-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 480px;
}

@media (max-width: 991px) {
  .mnt-article-cards { grid-template-columns: repeat(2, 1fr); }
  .mnt-dark-banner { grid-template-columns: 1fr; }
  .mnt-recommended-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  .mnt-recommended { padding: 60px 0; }
  .mnt-article-cards { grid-template-columns: 1fr; }
}

/* =============================================
   TICKER / FUTÓSZALAG
   ============================================= */
.mnt-ticker-section {
  background: var(--stat-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.mnt-ticker-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(23,25,31,.45);
  margin-bottom: 32px;
}
.mnt-ticker-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.mnt-ticker-track {
  display: flex;
  width: max-content;
  animation: mnt-marquee 45s linear infinite;
}
.mnt-ticker-track:hover { animation-play-state: paused; }
.mnt-ticker-set {
  display: flex;
  gap: 24px;
  padding: 0 12px;
  flex-shrink: 0;
}

@keyframes mnt-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mnt-ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, color .2s ease;
  color: rgba(23,25,31,.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  max-width: 260px;
}
.mnt-ticker-item:hover { transform: translateY(-3px); color: var(--primary); }
.mnt-ticker-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}

@media (max-width: 767px) {
  .mnt-ticker-item { font-size: 14px; min-width: 180px; }
}

/* =============================================
   BENTO SECTION ("Fedezd fel")
   ============================================= */
.mnt-bento-section {
  background: var(--cream);
  padding: 80px 0;
}
.mnt-bento-outer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.mnt-bento-left-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--dark);
  margin-top: 12px;
}
.mnt-bento-left-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.mnt-benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.mnt-benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.mnt-benefit-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--dark);
}
.mnt-benefit-card-desc {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(23,25,31,.58);
}

/* Bento grid (right) */
.mnt-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mnt-bento-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  background: var(--sage);
  position: relative;
}
.mnt-bento-card:hover { transform: translateY(-6px); }
.mnt-bento-card-top {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
}
.mnt-bento-card-dark {
  background: var(--dark);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.mnt-bento-card-dark-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.88);
}
.mnt-bento-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary-muted);
  margin-bottom: 16px;
}
.mnt-bento-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.mnt-bento-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.mnt-bento-card:hover .mnt-bento-card-img-wrap img { transform: scale(1.04); }
.mnt-bento-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 12px 16px 4px;
  background: inherit;
}
.mnt-bento-card-sub {
  font-size: 11px;
  color: rgba(23,25,31,.5);
  padding: 0 16px 14px;
  background: inherit;
}

@media (max-width: 991px) {
  .mnt-bento-outer { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .mnt-bento-section { padding: 60px 0; }
  .mnt-bento-grid { grid-template-columns: 1fr; }
  .mnt-benefit-cards { grid-template-columns: 1fr; }
}

/* =============================================
   GALLERY SECTION ("Képes cikkek")
   ============================================= */
.mnt-gallery-section {
  background: var(--sage);
  padding: 80px 0;
}
.mnt-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.mnt-gallery-header-desc {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  align-self: flex-end;
}

.mnt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.mnt-gallery-item {
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mnt-gallery-item:hover { transform: translateY(-4px); }
.mnt-gallery-item--tall {
  grid-column: span 2;
  grid-row: span 2;
}
.mnt-gallery-item--wide {
  grid-column: span 2;
}

.mnt-gallery-item-img {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.mnt-gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.mnt-gallery-item:hover .mnt-gallery-item-img img { transform: scale(1.04); }
.mnt-gallery-item-title {
  padding: 10px 14px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  flex-shrink: 0;
  height: 58px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mnt-gallery-item--tall { min-height: 520px; }
.mnt-gallery-item--wide { height: 260px; }

@media (max-width: 991px) {
  .mnt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .mnt-gallery-item--tall,
  .mnt-gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .mnt-gallery-item--tall { min-height: 300px; }
  .mnt-gallery-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  .mnt-gallery-section { padding: 60px 0; }
  .mnt-gallery-grid { grid-template-columns: 1fr; }
  .mnt-gallery-item--wide { height: 300px; }
}

/* =============================================
   ARCHIVE / INDEX GRID
   ============================================= */
.mnt-archive-section { padding: 60px 0; }
.mnt-prev-next {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  gap: 16px;
}
.mnt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mnt-archive-card {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.mnt-archive-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.mnt-archive-card-body { padding: 20px; }
.mnt-archive-card-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 10px;
}
.mnt-archive-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--dark);
  margin-top: 10px;
}

@media (max-width: 991px) { .mnt-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .mnt-archive-grid { grid-template-columns: 1fr; } }

/* =============================================
   SINGLE.PHP — Layout B (Szerkesztői hero)
   ============================================= */
.single-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--dark);
}
.single-hero-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.single-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.single-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
}
.single-hero-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.single-hero-h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--white);
  max-width: 800px;
}

/* No-image fallback */
.single-header {
  background: var(--sage);
  padding: 48px 0 36px;
}
.single-header-inner { max-width: 720px; margin: 0 auto; }
.single-breadcrumb {
  font-size: 12px;
  color: rgba(23,25,31,.5);
  margin-bottom: 14px;
  display: flex; gap: 6px; align-items: center;
}
.single-breadcrumb a { color: var(--primary); }
.single-header-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.single-header-h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--dark);
}

/* 2-col layout: cikk + sticky sidebar */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  padding-top: 52px;
  padding-bottom: 80px;
  align-items: start;
}
.single-article-col { min-width: 0; }

.single-sidebar {}
.single-sidebar-inner {
  position: sticky;
  top: 92px;
}
.single-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23,25,31,.1);
}
.single-sidebar-cards {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.single-sidebar-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: var(--radius-md);
  padding: 10px;
  transition: background .2s ease;
}
.single-sidebar-card:hover { background: var(--sage); }
.single-sidebar-card-img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.single-sidebar-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.single-sidebar-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
}
.single-sidebar-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: var(--dark);
  margin-top: 4px;
}

/* Article content */
.entry-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
}
.entry-content p { margin-bottom: 24px; }
.entry-content h2, .entry-content h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  margin-top: 40px; margin-bottom: 16px;
  letter-spacing: -.02em;
  color: var(--dark);
}
.entry-content h2 { font-size: 30px; }
.entry-content h3 { font-size: 24px; }
.entry-content img {
  border-radius: var(--radius-card);
  margin: 32px 0;
  width: 100%;
  height: auto;
}
.entry-content a { color: var(--primary); text-decoration: underline; }
.entry-content ul, .entry-content ol {
  margin: 20px 0 24px 24px;
  list-style: disc;
}
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 12px 20px;
  margin: 28px 0;
  background: var(--primary-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 18px;
  color: var(--dark);
}

/* Related posts — magazin-stílusú grid */
.related-posts-section {
  background: var(--bg-alt);
  padding: 80px 0;
}
.related-posts-header { margin-bottom: 36px; }
.related-posts-h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.025em;
  color: var(--dark);
  margin-top: 8px;
}

.related-mag-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.related-mag-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.related-mag-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.related-mag-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.related-mag-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; flex-direction: row; }
.related-mag-card:nth-child(4) .related-mag-card-img { width: 220px; height: auto; flex-shrink: 0; }

.related-mag-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease;
}
.related-mag-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.related-mag-card-img { overflow: hidden; }
.related-mag-card--featured .related-mag-card-img { height: 260px; }
.related-mag-card:nth-child(2) .related-mag-card-img,
.related-mag-card:nth-child(3) .related-mag-card-img { height: 160px; }
.related-mag-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.related-mag-card:hover .related-mag-card-img img { transform: scale(1.04); }
.related-mag-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-mag-card-body .cat-badge { align-self: flex-start; }
.related-mag-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--dark);
  margin-top: 10px;
}
.related-mag-card--featured .related-mag-card-title { font-size: 24px; }
.related-mag-card-excerpt {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .single-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 36px;
  }
  .single-sidebar-inner { position: static; }
  .single-sidebar-cards { display: grid; grid-template-columns: repeat(2, 1fr); }
  .related-mag-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .related-mag-card:nth-child(1),
  .related-mag-card:nth-child(2),
  .related-mag-card:nth-child(3),
  .related-mag-card:nth-child(4) {
    grid-column: auto; grid-row: auto; flex-direction: column;
  }
  .related-mag-card:nth-child(4) .related-mag-card-img { width: 100%; }
  .related-mag-card--featured .related-mag-card-img { height: 200px; }
}
@media (max-width: 767px) {
  .single-hero { height: 320px; }
  .single-hero-content { padding: 24px 20px; }
  .single-layout { padding-top: 28px; }
  .single-sidebar-cards { grid-template-columns: 1fr; }
  .related-mag-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE.PHP
   ============================================= */
.page-header {
  background: var(--sage);
  padding: 56px 0 40px;
}
.page-header-h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--dark);
}
.page-content-wrap {
  max-width: 820px;
  margin: 48px auto 80px;
  padding: 0 20px;
}
.page-content-wrap .entry-content { font-size: 15px; }

/* =============================================
   404 / SEARCH
   ============================================= */
.error-page {
  padding: 80px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-page-inner { max-width: 560px; margin: 0 auto; }
.error-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--primary);
  display: block;
}
.error-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 12px;
}
.error-desc { font-size: 15px; color: var(--text-muted); margin-top: 14px; line-height: 1.65; }
.error-back { margin-top: 28px; display: inline-flex; }

/* Search form */
.search-form-wrap {
  max-width: 560px;
  margin: 32px auto 0;
}
.search-form {
  display: flex;
  gap: 10px;
}
.search-input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-input:focus {
  border-color: rgba(31,111,73,.4);
  box-shadow: 0 0 0 3px rgba(31,111,73,.1);
}
.search-submit {
  padding: 12px 20px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s ease;
}
.search-submit:hover { background: var(--primary); }

/* =============================================
   FOOTER
   ============================================= */
.mnt-footer {
  background: var(--dark);
  padding: 40px 0;
  color: var(--white);
}
.mnt-footer-inner {
  background: #1e211f;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.mnt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.mnt-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 24px;
}
.mnt-footer-logo-mark {
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: -.05em;
  flex-shrink: 0;
}
.mnt-footer-logo-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--white);
}
.mnt-footer-tagline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: rgba(255,255,255,.88);
  margin-top: 0;
}
.mnt-footer-desc {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 340px;
}

.mnt-footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.mnt-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mnt-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s ease;
}
.mnt-footer-links a:hover { color: var(--white); }

.mnt-footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.42);
}
.mnt-footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mnt-footer-bottom-links a {
  color: rgba(255,255,255,.42);
  text-decoration: none;
  transition: color .2s ease;
}
.mnt-footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 767px) {
  .mnt-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mnt-footer-inner { padding: 24px; }
  .mnt-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination-wrap { text-align: center; margin-top: 48px; }
.pagination {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
  border: 1px solid var(--border-md);
  background: var(--white);
  color: var(--dark);
}
.pagination a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .current {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* =============================================
   MOBILE UNIFIED CARD IMG HEIGHT — 300px
   ============================================= */
@media (max-width: 767px) {
  .card-img--hero,
  .card-img--article,
  .card-img--banner,
  .card-img--bento-tall,
  .card-img--bento-std,
  .card-img--gallery-tall,
  .card-img--gallery-std,
  .card-img--related { height: 300px; }
  .mnt-gallery-item--tall { min-height: 300px; }
  .mnt-gallery-item--wide { height: 300px; }
}

/* =============================================
   ENTRY-CONTENT IMG border-radius (konzisztencia)
   ============================================= */
.entry-content img { border-radius: var(--radius-card); }

/* =============================================
   GDPR PLUGIN BUTTON OVERRIDE
   ============================================= */
#cookie-notice-accept-button,
.cn-button,
.cli-plugin-button,
.moove-gdpr-infobar-allow-btn,
.cmplz-btn,
.cc-btn,
.moove-gdpr-modal-allow-all,
.moove-gdpr-infobar-btn-wrap button,
#moove_gdpr_save_popup_settings_button {
  border-radius: 12px !important;
}
