/*
Theme Name: Elintezzuk
Theme URI:
Author: Digital Footprint
Description: Egyedi magazin blog theme – Homemag stílusban. Fraunces + DM Sans.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: elintezzuk
*/

/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
  --dark:           #262c29;
  --dark-secondary: #383A4D;
  --border:         #d0d6d3;
  --light:          #f5f6f5;
  --muted:          #758696;
  --white:          #ffffff;
  --primary:        #262c29;
  --radius-btn:     200px;
  --radius:         4px;
}

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

h1, h2, h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.2em;
}
h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

/* =============================================
   Container
   ============================================= */
.hm-container {
  max-width: 1452px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   Card Image Base
   ============================================= */
.card-img {
  overflow: hidden;
  background: var(--light);
  display: block;
  position: relative;
  flex-shrink: 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
a:hover .card-img img { transform: scale(1.04); }
.card-img--520 { height: 520px; }
.card-img--455 { height: 455px; }
.card-img--420 { height: 520px; }
.card-img--280 { height: 280px; }
.card-img--240 { height: 240px; }
.card-img--220 { height: 220px; }
.card-img--180 { height: 180px; }
.card-img--80  { width: 80px; height: 80px; flex-shrink: 0; }

/* =============================================
   Category Badge
   ============================================= */
.cat-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: opacity .2s;
}
.cat-badge--outline {
  border: 1px solid var(--dark);
  padding: 4px 14px;
  border-radius: var(--radius-btn);
}

/* =============================================
   Buttons
   ============================================= */
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 36px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-btn);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
  align-self: flex-start;
}
.hm-btn:hover {
  background: var(--dark);
  color: var(--white);
}
.hm-btn--white {
  border-color: var(--light);
  color: var(--light);
}
.hm-btn--white:hover {
  background: var(--light);
  color: var(--dark);
}
.hm-btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.hm-btn--dark:hover {
  background: var(--dark-secondary);
  border-color: var(--dark-secondary);
}

/* =============================================
   Horizontal Rule
   ============================================= */
.hm-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.hm-hr--light {
  border-color: rgba(213,214,211,.3);
}

/* =============================================
   Logo Wrapper (centered, above nav)
   ============================================= */
.hm-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.hm-logo-wrap img {
  height: 44px;
  width: auto;
}

/* =============================================
   Navigation
   ============================================= */
.hm-nav {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 0;
}
.hm-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hm-nav__links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark);
  transition: opacity .2s;
}
.hm-nav__links a:hover { opacity: .6; }
.hm-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.hm-nav__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: var(--dark);
  transition: opacity .2s;
}
.hm-nav__search-btn:hover { opacity: .6; }
.hm-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
}

/* Mobile menu */
.hm-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px;
  gap: 16px;
  transition: opacity .3s ease;
}
.hm-mobile-menu.is-open {
  display: flex;
}
.hm-mobile-menu__logo {
  display: block;
  margin-bottom: 8px;
}
.hm-mobile-menu__logo img {
  height: 32px;
  width: auto;
}
.hm-mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark);
  transition: opacity .2s;
}
.hm-mobile-menu a:hover { opacity: .6; }
.hm-mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
}

/* =============================================
   Section Base
   ============================================= */
.hm-section {
  padding-top: 48px;
  padding-bottom: 96px;
}
.hm-section--no-top { padding-top: 0; }
.hm-section--increased-top { padding-top: 96px; }

/* =============================================
   Section Label (uppercase small)
   ============================================= */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-label--light {
  color: rgba(245,246,245,.7);
}

/* =============================================
   Hero Section (2-col: 1fr .33fr)
   ============================================= */
.hm-hero-grid {
  display: grid;
  grid-template-columns: 1fr .33fr;
  column-gap: 36px;
  row-gap: 36px;
  align-items: start;
}

/* Main featured post */
.hm-hero__main .hm-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hm-hero__main .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hm-post-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2em;
  color: var(--dark);
  transition: opacity .2s;
}
a:hover .hm-post-title { opacity: .75; }

/* Hero sidebar posts */
.hm-hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hm-hero__sidebar .hm-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hm-hero__sidebar .card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.hm-post-title--compressed {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25em;
  color: var(--dark);
  transition: opacity .2s;
}
a:hover .hm-post-title--compressed { opacity: .75; }

/* =============================================
   Post Excerpt
   ============================================= */
.post-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  color: var(--dark);
  opacity: .75;
}

/* =============================================
   Featured Story Section
   ============================================= */
.hm-featured-story {
  background-color: var(--dark);
  min-height: 640px;
  color: var(--light);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}
.hm-featured-story__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
  z-index: 0;
}
.hm-featured-story__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.hm-featured-story__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 57px;
  line-height: 1.1em;
  color: var(--light);
  transition: opacity .2s;
}
.hm-featured-story__content a:hover .hm-featured-story__title { opacity: .85; }
.hm-featured-story__content .hm-btn { align-self: center; }

/* =============================================
   Main Section (Sidebar + Content)
   ============================================= */
.hm-sidebar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  column-gap: 36px;
  row-gap: 36px;
  align-items: start;
}

/* Sidebar */
.hm-sidebar {
  position: sticky;
  top: 86px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.hm-sidebar__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.hm-sidebar__cats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hm-sidebar__cats a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: opacity .2s;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.hm-sidebar__cats a:last-child { border-bottom: none; }
.hm-sidebar__cats a:hover { opacity: .6; }

.hm-sidebar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 10px;
}
.hm-sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
}
.hm-sidebar-search input::placeholder { color: var(--muted); }
.hm-sidebar-search button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--dark);
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.hm-sidebar-search button:hover { opacity: .6; }

/* Magazine Content Area */
.hm-content {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* Magazine Cluster (1 big full-width post) */
.hm-cluster .hm-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hm-cluster .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hm-post-title--medium {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--dark);
  transition: opacity .2s;
}
a:hover .hm-post-title--medium { opacity: .75; }

/* Magazine Grid (2-col, 8 posts) */
.hm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 36px;
}
.hm-grid .hm-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hm-grid .card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.hm-post-title--grid {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--dark);
  transition: opacity .2s;
}
a:hover .hm-post-title--grid { opacity: .75; }

/* =============================================
   Single Post — Layout C (Osztott fejléc)
   ============================================= */
.single-header-section {
  background: var(--light);
  padding: 48px 0;
}
.single-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.single-header__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.single-breadcrumb a {
  color: var(--muted);
  transition: color .2s;
}
.single-breadcrumb a:hover { color: var(--dark); }
.single-breadcrumb span { margin: 0 6px; }
.single-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.single-title {
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--dark);
}
.single-header__img {
  height: 420px;
  overflow: hidden;
}
.single-header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.single-content-wrap {
  padding: 64px 0 96px;
}
.single-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Entry content */
.entry-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7em;
  color: var(--dark);
}
.entry-content p { margin-bottom: 1.4em; }
.entry-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 1.8em 0 .8em;
}
.entry-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 1.4em 0 .6em;
}
.entry-content ul, .entry-content ol {
  padding-left: 1.6em;
  margin-bottom: 1.4em;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote {
  border-left: 3px solid var(--dark);
  padding: 16px 24px;
  margin: 2em 0;
  font-style: italic;
  opacity: .85;
}
.entry-content img {
  max-width: 100%;
  margin: 2em auto;
}

/* Related posts — Style D (Fehér, borderes kártyák) */
.related-posts-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
.related-posts-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.related-posts-title {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--dark);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.related-card {
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.related-card:hover { border-color: var(--dark); }
.related-card .card-img { height: 220px; }
.related-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: flex-start;
}
.related-card .hm-post-title--grid { font-size: 20px; }

/* =============================================
   Archive Page
   ============================================= */
.archive-header {
  background: var(--light);
  padding: 48px 0 36px;
  margin-bottom: 48px;
}
.archive-title {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}
.archive-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.archive-card .card-img { height: 240px; }
.archive-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.archive-card__title {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25em;
  color: var(--dark);
  transition: opacity .2s;
}
a:hover .archive-card__title { opacity: .75; }

/* =============================================
   Page Template
   ============================================= */
.page-header {
  background: var(--light);
  padding: 48px 0 36px;
  margin-bottom: 48px;
}
.page-title {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
}
.page-content-wrap {
  padding: 0 0 96px;
}
.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7em;
  color: var(--dark);
}
.page-content-inner p { margin-bottom: 1.2em; }
.page-content-inner h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 1.6em 0 .6em;
}
.page-content-inner h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 1.2em 0 .4em;
}

/* =============================================
   404 Page
   ============================================= */
.error-404-section {
  padding: 96px 0;
  text-align: center;
}
.error-404-label {
  font-family: 'Nunito', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}
.error-404-title {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.error-404-section p {
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  margin-bottom: 32px;
}

/* =============================================
   Search Results
   ============================================= */
.search-results-header {
  background: var(--light);
  padding: 36px 0;
  margin-bottom: 48px;
}
.search-results-title {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
}

/* =============================================
   Search Overlay
   ============================================= */
.hm-search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,44,41,.96);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.hm-search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.hm-search-overlay__inner {
  width: 90%;
  max-width: 600px;
  position: relative;
}
.hm-search-overlay form {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid rgba(245,246,245,.4);
  padding-bottom: 12px;
}
.hm-search-overlay input[type="search"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--light);
}
.hm-search-overlay input[type="search"]::placeholder {
  color: rgba(245,246,245,.4);
}
.hm-search-overlay__submit {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.hm-search-overlay__submit:hover { opacity: .6; }
.hm-search-overlay__close {
  position: absolute;
  top: -48px; right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.hm-search-overlay__close:hover { opacity: .6; }

/* =============================================
   Footer
   ============================================= */
.hm-footer {
  background: var(--dark-secondary);
  color: var(--light);
  padding: 64px 0 48px;
}
.hm-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hm-footer__top {
  display: flex;
  justify-content: center;
}
.hm-footer__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .8;
}
.hm-footer__logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: rgba(245,246,245,.8);
}
.hm-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.hm-footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,246,245,.5);
  margin-bottom: 16px;
}
.hm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hm-footer__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(245,246,245,.8);
  transition: color .2s;
}
.hm-footer__links a:hover { color: var(--light); }
.hm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(213,214,211,.2);
  padding-top: 24px;
}
.hm-footer__copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(245,246,245,.45);
}

/* =============================================
   Pagination
   ============================================= */
.pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.pagination-wrap a,
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  padding: 9px 24px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-btn);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.pagination-wrap a:hover,
.pagination-wrap .page-numbers:hover {
  background: var(--dark);
  color: var(--white);
}

/* =============================================
   Responsive — Tablet (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hm-hero-grid {
    grid-template-columns: 1fr;
  }
  .hm-hero__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .hm-sidebar-layout {
    grid-template-columns: 1fr;
  }
  .hm-sidebar {
    position: static;
    flex-direction: column;
    gap: 24px;
  }
  .single-header-grid {
    grid-template-columns: 1fr;
  }
  .single-header__img {
    height: 280px;
    order: -1;
  }
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   Responsive — Mobile (≤767px)
   ============================================= */
@media (max-width: 767px) {
  .hm-nav__links { display: none; }
  .hm-nav__hamburger { display: block; }
  .hm-nav__search-btn { display: none; }

  .hm-hero__sidebar {
    grid-template-columns: 1fr;
  }

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

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

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

  .hm-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hm-featured-story__title {
    font-size: 36px;
  }

  .single-title {
    font-size: 28px;
  }

  .hm-section {
    padding-top: 36px;
    padding-bottom: 60px;
  }
  .hm-section--adj {
    padding-bottom: 96px;
  }

  .hm-featured-story {
    min-height: 400px;
    padding: 48px 24px;
  }

  .archive-title {
    font-size: 30px;
  }

  .single-header-section {
    padding: 32px 0;
  }

  /* Egységes kép-magasság mobilon: 300px */
  .card-img--520,
  .card-img--455,
  .card-img--420,
  .card-img--280,
  .card-img--240,
  .card-img--220,
  .card-img--180,
  .related-card .card-img,
  .archive-card .card-img {
    height: 300px;
  }
}

/* =============================================
   Szerkesztői Ajánló szekció
   ============================================= */
.hm-adj-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  column-gap: 36px;
  align-items: start;
}
.hm-adj__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hm-adj__sidebar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hm-adj__heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1.1em;
  color: var(--dark);
}
.hm-adj__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .hm-adj__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hm-adj-layout {
    grid-template-columns: 1fr;
  }
  .hm-adj__sidebar {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  .hm-adj__sidebar-inner {
    align-items: flex-start;
  }
  .hm-adj__cards {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   GDPR Override
   ============================================= */
#cookie-notice-accept-button,
.cn-button,
.cli-plugin-button,
.moove-gdpr-infobar-allow-btn,
.cmplz-btn,
.cc-btn {
  border-radius: 200px !important;
  color: #fff !important;
}

/* Moove GDPR plugin */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
  font-size: 14px !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  color: #fff !important;
  border-radius: 200px !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton {
  color: #fff !important;
  border-radius: 200px !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button {
  color: #fff !important;
  border-radius: 200px !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:after,
#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn.moovegdpr-arrow-close:before,
.gdpr-icon.moovegdpr-arrow-close:after,
.gdpr-icon.moovegdpr-arrow-close:before,
i.moovegdpr-arrow-close.moovegdpr-arrow-close:after,
i.moovegdpr-arrow-close.moovegdpr-arrow-close:before {
  color: #fff !important;
}
