/* =========================================================
   Közgazdász Fórum – modern, mobilbarát stíluslap
   Tovább viszi a robot24 zöld vonalat:
     - menü hover világosabb zöld háttérrel
     - aktív menüpont alatt világoszöld vonal
   ========================================================= */

:root {
  --primary:        #1f5f3f;
  --primary-dark:   #144027;
  --primary-mid:    #2e7d4f;   /* hover-háttér: kicsivel világosabb sötétzöld */
  --primary-light:  #e8f0eb;
  --accent:         #4ade80;   /* világoszöld aláhúzás (a sárga helyett) */
  --accent-bright:  #22c55e;
  --text:           #1e2420;
  --text-muted:     #6b7470;
  --bg:             #fafaf7;
  --bg-alt:         #f1ece3;
  --border:         #d9d5cb;
  --white:          #ffffff;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.06);
  --shadow-md:      0 4px 14px rgba(0,0,0,.08);
  --shadow-lg:      0 12px 30px rgba(20,64,39,.12);
  --radius:         8px;
  --max-width:      1200px;
  --font-body:      'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading:   'Merriweather', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin: 0 0 .55em;
  line-height: 1.25;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-dark);
}
.brand-logo { height: 64px; width: auto; }
.brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-dark);
  line-height: 1.1;
}
.brand-text small {
  display: block;
  color: var(--text-muted);
  font-size: .82rem;
}
.logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.logos img {
  height: 48px;
  width: auto;
  transition: transform .2s;
  opacity: .9;
}
.logos a:hover img { transform: scale(1.06); opacity: 1; }

.lang-switch a {
  display: inline-block;
  padding: 6px 12px;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  color: var(--text-muted);
  background: var(--bg-alt);
}
.lang-switch a.active { background: var(--primary); color: var(--white); }
.lang-switch a:hover { text-decoration: none; background: var(--primary-mid); color: var(--white); }

/* ===== Main nav ===== */
.main-nav {
  background: var(--primary);
  color: var(--white);
}
.main-nav .container {
  display: flex;
  align-items: center;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 14px 0;
  margin-right: auto;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
}
.main-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.main-menu li a {
  display: block;
  padding: 14px 18px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 3px solid transparent;
  transition: background .15s, border-color .15s;
}
.main-menu li.active a {
  background: var(--primary-dark);
  border-bottom-color: var(--accent);
}
.main-menu li a:hover {
  background: var(--primary-mid);   /* világosabb sötétzöld a hoverhez */
  border-bottom-color: var(--accent);
  text-decoration: none;
}

/* ===== Main ===== */
.site-main { padding: 36px 0 56px; }

/* hero */
.hero {
  background: linear-gradient(135deg, #1f5f3f 0%, #144027 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-lg);
}
.hero h1 { color: var(--white); margin-bottom: .35em; font-size: 2.3rem; }
.hero-lead { font-size: 1.15rem; opacity: .95; margin-bottom: .8em; }
.hero-intro { opacity: .9; }
.hero .issn {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: 1px;
}

/* teasers */
.teasers h2 {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 22px;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.teaser {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  color: var(--text);
}
.teaser:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  text-decoration: none;
}
.teaser h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.teaser p {
  color: var(--text-muted);
  font-size: .94rem;
  margin-bottom: 10px;
}
.teaser .more {
  font-size: .85rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .3px;
}

/* article pages */
.page-section { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.page-section h1 {
  border-bottom: 3px solid var(--accent);
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 22px;
}
.page-section .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.article:last-child { border-bottom: 0; }
.article h2 {
  font-size: 1.35rem;
  color: var(--primary);
}

/* === Lapszámok === */
.year-block {
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.year-block:first-of-type { border-top: 0; padding-top: 0; }
.year-heading {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.issue-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--primary-light);
  border-radius: 12px;
  padding: 22px 14px 16px;
  text-decoration: none;
  color: var(--text);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  position: relative;
}
.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  text-decoration: none;
}
.issue-card .issue-logo {
  width: 110px; height: 110px;
  margin-bottom: 12px;
}
.issue-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.issue-meta {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.issue-meta strong { color: var(--primary); }
.issue-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .3px;
}
.issue-link.disabled { color: var(--text-muted); }

/* footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  margin-top: 50px;
  padding: 36px 0 18px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 110px 1.2fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}
.footer-logo { width: 96px; opacity: .95; }
.site-footer strong { color: var(--white); display: block; margin-bottom: 6px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul.plain li { padding: 2px 0; }
.site-footer .footer-links li { padding: 2px 0; }
.site-footer a { color: var(--accent); }
.site-footer a:hover { color: var(--white); }
.copyright {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 14px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .header-top { padding: 10px 16px; gap: 10px; }
  .brand-logo { height: 52px; }
  .brand-text strong { font-size: 1rem; }
  .brand-text small { display: none; }
  .logos { display: none; }
  .nav-toggle { display: block; }
  .main-menu {
    display: none;
    flex-direction: column;
    background: var(--primary-dark);
    width: 100%;
  }
  .main-menu.open { display: flex; }
  .main-menu li a {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-left: 3px solid transparent;
  }
  .main-menu li.active a { border-left-color: var(--accent); border-bottom-color: rgba(255,255,255,.1); }
  .hero { padding: 26px 20px; }
  .hero h1 { font-size: 1.6rem; }
  .page-section { padding: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { width: 80px; }
}

/* ===== Új: dropdown menü ===== */
.main-menu li { position: relative; }
.main-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--primary-dark);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--accent);
}
.main-menu li:hover > .submenu,
.main-menu li:focus-within > .submenu { display: block; }
.main-menu .submenu li a {
  padding: 10px 18px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 0;
  color: #fff;
}
.main-menu .submenu li a:hover {
  background: var(--primary-mid);
  border-bottom: 0;
}
.main-menu .has-children > a::after {
  content: " ▾";
  font-size: 10px;
  margin-left: 4px;
  opacity: .7;
}

/* ===== Cookie sáv ===== */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #142a1d;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0,0,0,.25);
  font-size: .92rem;
}
.cookie-bar .text { flex: 1 1 320px; line-height: 1.5; }
.cookie-bar .text a { color: var(--accent); text-decoration: underline; }
.cookie-bar .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-bar button {
  padding: 9px 16px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: .9rem;
}
.cookie-bar .btn-accept { background: var(--accent-bright); color: #0a2814; }
.cookie-bar .btn-accept:hover { background: #16a34a; color: #fff; }
.cookie-bar .btn-reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.cookie-bar .btn-reject:hover { background: rgba(255,255,255,.1); }
.cookie-bar.hidden { display: none; }

/* ===== Nexperta credit ===== */
.created-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 4px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
}
.created-by img { height: 28px; width: auto; opacity: .9; transition: opacity .2s; }
.created-by a:hover img { opacity: 1; }
.created-by a { color: rgba(255,255,255,.85); }

/* ===== Contact map ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.contact-grid h3 { color: var(--primary); margin-bottom: 4px; font-size: 1rem; }
.contact-map iframe { width: 100%; height: 360px; border: 1px solid var(--border); border-radius: 8px; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Home ICEBM card ===== */
.icebm-card {
  background: linear-gradient(135deg, #14573a 0%, #1f5f3f 100%);
  color: #fff;
  border-radius: 14px;
  padding: 30px 32px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.icebm-card::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(74,222,128,.25), transparent 70%);
  border-radius: 50%;
}
.icebm-card .label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.icebm-card h2 { color: #fff; font-size: 1.5rem; margin-bottom: .35em; }
.icebm-card p  { margin-bottom: 14px; opacity: .92; }
.icebm-card .cta {
  display: inline-block;
  background: var(--accent-bright);
  color: #0a2814;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}
.icebm-card .cta:hover { background: #16a34a; color: #fff; text-decoration: none; }
.icebm-card .badge {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  z-index: 1;
}

/* About teaser on home */
.about-teaser {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 28px;
}
.about-teaser h2 { color: var(--primary-dark); margin-bottom: 6px; }

/* Supporters/partners grid on partnerek */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 14px 0 28px;
}
.partner-grid li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 12px;
  height: 80px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: .9rem;
  transition: border-color .15s, box-shadow .15s;
}
.partner-grid li a:hover {
  border-color: var(--accent);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

/* Mobile: dropdown akkordeon */
@media (max-width: 760px) {
  .main-menu .submenu {
    position: static;
    background: rgba(0,0,0,.3);
    box-shadow: none;
    border-top: 0;
    padding: 0;
  }
  .main-menu li:hover > .submenu { display: block; }
  .main-menu .submenu li a { padding-left: 36px; }
  .icebm-card { grid-template-columns: 1fr; text-align: center; }
  .icebm-card .badge { margin: 0 auto; }
}

/* ===== Board photos ===== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  margin: 16px 0 28px;
}
.board-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.board-card img {
  width: 140px; height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--primary-light);
}
.board-card .role {
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.board-card h4 {
  margin: 4px 0 0;
  color: var(--primary-dark);
  font-size: 1.05rem;
}
.board-card .years {
  display: block;
  margin-top: 4px;
  font-size: .82rem;
  color: var(--text-muted);
}

/* OJS callout */
.ojs-callout {
  background: linear-gradient(135deg, #144027 0%, #1f5f3f 100%);
  color: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  margin: 6px 0 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ojs-callout .ojs-text { flex: 1 1 320px; }
.ojs-callout h3 { color: #fff; margin: 0 0 6px; font-size: 1.1rem; }
.ojs-callout p { margin: 0; opacity: .95; font-size: .95rem; line-height: 1.5; }
.ojs-callout .ojs-cta {
  display: inline-block;
  background: var(--accent-bright);
  color: #0a2814;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: .92rem;
}
.ojs-callout .ojs-cta:hover { background: #16a34a; color: #fff; }
.lapszamok-pdf-heading {
  margin-top: 22px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* Footer redesign: copyright and Nexperta in one line */
.copyright-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.78);
}
.copyright-row .nexperta-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.78);
}
.copyright-row .nexperta-credit img {
  height: 24px;
  width: auto;
  opacity: .9;
  transition: opacity .2s;
}
.copyright-row .nexperta-credit:hover img { opacity: 1; }
.copyright-row .nexperta-credit:hover { color: #fff; text-decoration: none; }
.copyright-row .sep { opacity: .35; }

/* Hero illustrations a hero-ban */
.page-hero {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 30px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.page-hero h1 {
  margin-bottom: 8px;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 8px;
  display: inline-block;
}
.page-hero .lead { color: var(--text-muted); font-size: 1.02rem; margin: 0; }
.page-hero .illustration img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
  .page-hero { grid-template-columns: 1fr; padding: 20px; }
  .page-hero .illustration { order: -1; }
}

/* Lapszámok highlight a főoldalon */
.lapszamok-highlight {
  background: linear-gradient(135deg, #fef9e7 0%, #fff 60%);
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.lapszamok-highlight h2 { margin-bottom: 6px; }
.lapszamok-highlight p { color: var(--text-muted); margin-bottom: 16px; }
.lapszamok-highlight .lap-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lapszamok-highlight .lap-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s;
  flex: 1 1 220px;
  min-width: 220px;
}
.lapszamok-highlight .lap-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.lapszamok-highlight .lap-cta .icon { font-size: 1.6rem; line-height: 1; }
.lapszamok-highlight .lap-cta .lab { display: block; font-size: .78rem; font-weight: 600; opacity: .8; letter-spacing: .5px; text-transform: uppercase; }
.lapszamok-highlight .lap-cta .name { display: block; font-size: 1.05rem; }
.lapszamok-highlight .lap-cta.ojs { background: var(--primary); color: #fff; }
.lapszamok-highlight .lap-cta.ojs:hover { background: var(--primary-dark); }
.lapszamok-highlight .lap-cta.pdf { background: #fff; color: var(--primary-dark); border: 2px solid var(--primary); }
.lapszamok-highlight .lap-cta.pdf:hover { background: var(--primary-light); }

/* Supporters cards with logos */
.supporters-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.supporters-list li { margin: 0; }
.supporters-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 16px 18px;
  height: 100%;
  text-decoration: none;
  color: var(--primary-dark);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.supporters-list a:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.supporters-list .sup-logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  margin-bottom: 12px;
  object-fit: contain;
}
.supporters-list .sup-name { font-weight: 700; font-size: 1rem; line-height: 1.3; }
.supporters-list .sup-url  { display: block; font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* ===== YouTube banner a főoldalon ===== */
.youtube-banner {
  background: linear-gradient(135deg, #cc0000 0%, #8b0000 100%);
  color: #fff;
  border-radius: 12px;
  padding: 22px 26px;
  margin: 26px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.youtube-banner .yt-icon {
  width: 64px; height: 46px;
  background: #cc0000;
  border-radius: 10px;
  display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,.3);
}
.youtube-banner h3 { color: #fff; margin: 0 0 4px; font-size: 1.15rem; }
.youtube-banner p  { margin: 0; opacity: .92; font-size: .95rem; }
.youtube-banner .yt-cta {
  display: inline-block;
  background: #fff;
  color: #8b0000;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  white-space: nowrap;
}
.youtube-banner .yt-cta:hover { background: #fef2f2; color: #cc0000; }
@media (max-width: 720px) {
  .youtube-banner { grid-template-columns: 1fr; text-align: center; }
  .youtube-banner .yt-icon { margin: 0 auto; }
}

/* YouTube nagy kártya a Podcast oldalon */
.yt-channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #cc0000 0%, #8b0000 100%);
  color: #fff;
  padding: 22px 26px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 12px;
  transition: transform .15s, box-shadow .15s;
}
.yt-channel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; color: #fff; }
.yt-channel-card .yt-icon-large {
  display: grid; place-items: center;
  width: 86px; height: 64px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
}
.yt-channel-card strong { display: block; font-size: 1.15rem; }
.yt-channel-card .yt-handle { display: block; opacity: .85; font-size: .88rem; margin-top: 2px; }
.yt-channel-card .yt-arrow { margin-left: auto; font-size: 1.4rem; }

/* Footer extras (OJS + YouTube) */
.footer-extras {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-extra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--accent);
}
.footer-extra:hover { color: #fff; text-decoration: none; }
.footer-extra .extra-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 4px;
}
.footer-extra.youtube .extra-icon {
  background: #cc0000;
  color: #fff;
  width: 28px; height: 20px;
}
