/* 
Theme Name: Twenty Twenty-Five Child
Theme URI: https://example.com 
Description: Child theme for Twenty Twenty-Five – oktatói portál 
Author: FibeerSX 
Author URI: https://fibeersx.com 
Template: twentytwentyfive 
Version: 1.0.0
*/

/* ======================================================================
   ALAP SZÍNPALETTA – NAVY + ZÖLD PRIMARY + KÉK ACCENT
   ====================================================================== */

:root {
  --fsx-bg: #020617;
  --fsx-bg-soft: #0b1120;
  --fsx-surface-dark: #0b1120;
  --fsx-surface-card: #ffffff;

  --fsx-border-subtle: rgba(148,163,184,0.4);
  --fsx-border-strong: rgba(148,163,184,0.75);

  --fsx-text-main: #0f172a;
  --fsx-text-muted: #6b7280;
  --fsx-text-on-dark: #e5e7eb;

  --fsx-primary: #22c55e;
  --fsx-primary-strong: #16a34a;
  --fsx-primary-soft: rgba(34,197,94,0.14);

  --fsx-accent: #38bdf8;
  --fsx-accent-soft: rgba(56,189,248,0.22);

  --fsx-shadow-soft: 0 18px 35px rgba(15,23,42,0.12);
  --fsx-shadow-strong: 0 22px 45px rgba(15,23,42,0.18);
}

/* ======================================================================
   OKTATÓI PORTÁL – HERO
   ====================================================================== */

.portal-hero {
  padding: 4rem 1.5rem;
  background:
    radial-gradient(circle at top left, var(--fsx-accent-soft), transparent 55%),
    radial-gradient(circle at bottom right, var(--fsx-primary-soft), transparent 55%),
    var(--fsx-bg);
  color: var(--fsx-text-on-dark);
}

.portal-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.portal-hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portal-hero .lead {
  font-size: 1.05rem;
  max-width: 34rem;
  opacity: 0.9;
  color: rgba(226,232,240,0.95);
}

.portal-hero .cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Login box a hero-ban */

.portal-hero__login {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid var(--fsx-border-subtle);
  box-shadow: var(--fsx-shadow-strong);
}

.portal-hero__login .fsx-auth {
  margin: 0;
}

/* ======================================================================
   OKTATÓI GRID ÉS KÁRTYÁK
   ====================================================================== */

.oktato-grid {
  max-width: 1120px;
  margin: 2.5rem auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.oktato-card {
  background: var(--fsx-surface-card);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--fsx-shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid rgba(226,232,240,0.9);
}

.oktato-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fsx-shadow-strong);
}

/* Thumb */

.oktato-card .thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.oktato-card .thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.oktato-card:hover .thumb img {
  transform: scale(1.04);
}

.thumb-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(15,23,42,0.82), transparent 55%);
  color: var(--fsx-text-on-dark);
}

.thumb-overlay .topline {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.thumb-overlay .tag {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid var(--fsx-border-subtle);
  color: rgba(226,232,240,0.96);
}

.thumb-overlay .pill {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: var(--fsx-primary-soft);
  color: var(--fsx-primary-strong);
  font-weight: 600;
}

.thumb-overlay .name {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Card body */

.oktato-card .card-body {
  padding: 1.25rem 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.oktato-card .intro {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--fsx-text-muted);
}

.oktato-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
}

.oktato-card .meta-chip {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

/* ======================================================================
   GOMBOK – GLOBÁLIS PORTÁL STÍLUS
   ====================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease;
}

/* Primary – zöld, ugyanaz a vibe mindenhol */
.btn-primary {
  background: linear-gradient(135deg, var(--fsx-primary), var(--fsx-primary-strong));
  color: #052e16;
  border-color: rgba(74,222,128,0.95);
  box-shadow:
    0 10px 20px rgba(22,163,74,0.55),
    0 0 0 1px rgba(5,46,22,0.85);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 26px rgba(22,163,74,0.7),
    0 0 0 1px rgba(5,46,22,0.95);
}

/* Ghost – világos háttérre */
.btn-ghost {
  background: #ffffff;
  color: var(--fsx-text-main);
  border-color: #e5e7eb;
}

.btn-ghost:hover {
  background: #f9fafb;
}

/* ======================================================================
   PORTAL TEASER
   ====================================================================== */

.portal-teaser {
  padding: 2rem 1.5rem 3rem;
  background: #f9fafb;
}

.portal-teaser__head {
  max-width: 1120px;
  margin: 0 auto 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.portal-teaser__head h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fsx-text-main);
}

.portal-teaser__head .link {
  font-size: 0.9rem;
  color: var(--fsx-text-muted);
  text-decoration: none;
}

.portal-teaser__head .link:hover {
  text-decoration: underline;
}

/* ======================================================================
   MOBIL FINOMHANGOLÁS – PORTÁL RÉSZ
   ====================================================================== */

@media (max-width: 768px) {
  .portal-hero {
    padding: 3rem 1.25rem;
  }

  .portal-hero__inner {
    grid-template-columns: 1fr;
  }

  .portal-hero__login {
    order: 2;
  }

  .portal-hero .cta {
    order: 1;
  }
}

/* ======================================================================
   OKTATÓI PROFIL ŰRLAP – FSX AUTH UI (PORTÁL PALETTÁHOZ IGAZÍTVA)
   ====================================================================== */

.fsx-auth {
  --fsx-bg: var(--fsx-bg-soft);
  --fsx-card-bg: rgba(15,23,42,0.96);
  --fsx-border-subtle: var(--fsx-border-subtle);
  --fsx-border-strong: var(--fsx-border-strong);
  --fsx-text-main: var(--fsx-text-on-dark);
  --fsx-text-muted: #9ca3af;
  --fsx-primary: var(--fsx-primary);
  --fsx-primary-soft: var(--fsx-primary-soft);
  --fsx-accent: var(--fsx-accent);

  position: relative;
  background:
    radial-gradient(circle at top left, var(--fsx-accent-soft), transparent 55%),
    radial-gradient(circle at bottom right, rgba(34,197,94,0.18), transparent 55%),
    var(--fsx-bg);
  border-radius: 22px;
  padding: 22px 22px 24px;
  border: 1px solid var(--fsx-border-subtle);
  box-shadow:
    0 22px 45px rgba(15,23,42,0.75),
    0 0 0 1px rgba(15,23,42,0.65);
  color: var(--fsx-text-main);
  overflow: hidden;
}

/* Felső kis fénycsík */
.fsx-auth::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56,189,248,0.35),
    rgba(34,197,94,0.4),
    transparent
  );
  opacity: 0.35;
  mix-blend-mode: screen;
}

/* Belső tartalom, hogy a before ne fedje a szöveget */
.fsx-auth > * {
  position: relative;
  z-index: 1;
}

/* Cím + státusz */
.fsx-auth h2 {
  font-size: 1.5rem;
  margin: 0 0 0.25em;
  letter-spacing: .03em;
  font-weight: 600;
  color: #f9fafb;
}

.fsx-auth p {
  margin: 0;
  color: var(--fsx-text-muted);
}

.fsx-auth p strong {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(59,130,246,0.4);
  color: #bfdbfe;
  font-weight: 500;
}

/* Label + tipográfia */

.fsx-auth label {
  display: block;
  font-size: .94rem;
  font-weight: 500;
  color: #e5e7eb;
  margin-top: 12px;
}

.fsx-auth label .hint {
  display: inline-block;
  margin-left: 4px;
  font-weight: 400;
  font-size: .8rem;
  color: var(--fsx-text-muted);
}

/* Alap input / textarea / select */

.fsx-auth input[type="text"],
.fsx-auth input[type="url"],
.fsx-auth input[type="number"],
.fsx-auth input[type="file"],
.fsx-auth textarea,
.fsx-auth select {
  width: 100%;
  margin-top: 6px;
  border-radius: 11px;
  border: 1px solid rgba(55,65,81,0.9);
  padding: 8px 11px;
  font-size: .94rem;
  line-height: 1.4;
  background: radial-gradient(circle at top, rgba(30,64,175,0.2), rgba(15,23,42,1));
  color: #e5e7eb;
  transition:
    border-color .16s ease,
    box-shadow .16s ease,
    background-color .16s ease,
    transform .05s ease;
  box-sizing: border-box;
}

.fsx-auth input[type="file"] {
  padding: 6px 0;
  background: transparent;
}

.fsx-auth textarea {
  min-height: 110px;
  resize: vertical;
}

.fsx-auth input::placeholder,
.fsx-auth textarea::placeholder {
  color: rgba(148,163,184,0.75);
}

.fsx-auth input:focus,
.fsx-auth textarea:focus,
.fsx-auth select:focus {
  outline: none;
  border-color: var(--fsx-accent);
  box-shadow:
    0 0 0 1px rgba(56,189,248,0.5),
    0 10px 25px rgba(15,23,42,0.85);
  transform: translateY(-0.5px);
}

/* Kép blokk */

.fsx-auth img {
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow: 0 10px 25px rgba(15,23,42,0.85);
}

/* Grid segédek */

.fsx-auth .fsx-row {
  display: grid;
  gap: 14px;
}

.fsx-auth .fsx-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fsx-auth .fsx-row-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

/* Fieldset */

.fsx-auth fieldset {
  border-radius: 14px;
  border: 1px solid rgba(75,85,99,0.9);
  padding: 10px 12px 12px;
  margin-top: 10px;
  background: radial-gradient(circle at top, rgba(30,64,175,0.32), rgba(15,23,42,1));
}

.fsx-auth fieldset legend {
  padding: 0 4px;
  font-size: .9rem;
  font-weight: 600;
  color: #e5e7eb;
}

.fsx-auth fieldset legend span {
  font-weight: 400;
  font-size: .8rem;
  color: var(--fsx-text-muted);
}

/* Multi-select – szakterület / szolgáltatás / célcsoport / város */

.fsx-auth .fsx-multiselect {
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(75,85,99,0.95);
  background: radial-gradient(circle at top, rgba(15,23,42,1), rgba(15,23,42,1));
  padding: 4px;
  font-size: .9rem;
  min-height: 145px;
}

.fsx-auth .fsx-multiselect option {
  padding: 4px 7px;
  border-radius: 7px;
  margin: 1px 0;
}

/* kiválasztott opció – “tag” érzet */
.fsx-auth .fsx-multiselect option:checked {
  background: linear-gradient(
    90deg,
    rgba(34,197,94,0.98),
    rgba(56,189,248,0.98)
  ) !important;
  color: #0b1120;
}

/* Links / gombsor */

.fsx-auth .links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

/* Lokális gomb styling – .fsx-auth-on belül */

.fsx-auth .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.8);
  background: radial-gradient(circle at top, rgba(15,23,42,1), rgba(15,23,42,1));
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color .16s ease,
    color .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    transform .06s ease;
  white-space: nowrap;
  color: var(--fsx-text-main);
}

.fsx-auth .btn:hover {
  background: radial-gradient(circle at top, rgba(30,64,175,0.45), rgba(15,23,42,1));
  border-color: rgba(191,219,254,0.85);
  box-shadow: 0 10px 24px rgba(15,23,42,0.9);
  transform: translateY(-0.5px);
}

.fsx-auth .btn-primary {
  background: radial-gradient(circle at top, var(--fsx-primary), var(--fsx-primary-strong));
  border-color: rgba(74,222,128,0.95);
  color: #052e16;
  box-shadow:
    0 14px 30px rgba(22,163,74,0.65),
    0 0 0 1px rgba(5,46,22,0.8);
}

.fsx-auth .btn-primary:hover {
  background: radial-gradient(circle at top, #22c55e, #4ade80);
  border-color: #bbf7d0;
}

/* disabled publish gomb */
.fsx-auth .btn-primary[disabled],
.fsx-auth .btn-primary[disabled]:hover {
  background: radial-gradient(circle at top, #6b7280, #4b5563);
  border-color: rgba(75,85,99,0.9);
  color: #e5e7eb;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Hiba / OK üzenetek */

.fsx-auth .fsx-error,
.fsx-auth .fsx-ok {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .85rem;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fsx-auth .fsx-error {
  background: rgba(248,113,113,0.12);
  color: #fecaca;
  border: 1px solid rgba(248,113,113,0.7);
}

.fsx-auth .fsx-ok {
  background: var(--fsx-primary-soft);
  color: #bbf7d0;
  border: 1px solid rgba(34,197,94,0.7);
}

/* RESPONSIVE – mobil / tablet – AUTH */
@media (max-width: 768px) {
  .fsx-auth {
    padding: 16px 12px 18px;
    border-radius: 18px;
  }

  /* az első grid-sor: kép + jobb oldal → egymás alá */
  .fsx-auth > div[style*="grid-template-columns:160px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .fsx-auth .fsx-row-2,
  .fsx-auth .fsx-row-3,
  .fsx-auth div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .fsx-auth .links {
    flex-direction: column;
    align-items: stretch;
  }

  .fsx-auth .links .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ======================================================================
   HEADER – FULL WIDTH SÁV, FLEX LAYOUT
   ====================================================================== */

.fsx-main-header {
  width: 100%;
}

.fsx-main-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
  gap: 1.5rem;
}

.fsx-main-header-inner .wp-block-navigation,
.fsx-main-header-inner .wp-block-buttons {
  display: flex;
  align-items: center;
}

/* ======================================================================
   ÚJ HOMEPAGE HERO + SLIDER + ALSÓ SZEKCIÓK
   ====================================================================== */

/* teljes sáv, világos háttér */
.fsx-home-hero {
  padding: 3rem 1.5rem 3.5rem;
  background: #f9fafb;
}

/* KÉT OSZLOP: bal szöveg, jobb slider */
.fsx-home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

/* Bal oldali szöveg – kapjon kb. 40–50% szélességet */
.fsx-home-hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.fsx-home-hero-text h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin-bottom: 0.75rem;
  color: var(--fsx-text-main);
}

.fsx-home-hero-text p {
  font-size: 1.02rem;
  color: var(--fsx-text-muted);
  max-width: 32rem;
}

.fsx-home-hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Jobb oldali slider – rugalmasan igazodjon, MÉRETET a shortcode max paramja limitálja */
.fsx-home-hero-slider {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Alsó szekciók */

.fsx-home-section {
  padding: 2.5rem 1.5rem;
  background: #ffffff;
}

.fsx-home-section:nth-of-type(odd) {
  background: #f9fafb;
}

.fsx-home-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.fsx-home-section-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--fsx-text-main);
}

.fsx-home-section-inner p {
  color: var(--fsx-text-muted);
}

/* Mobil nézet – homepage hero: egymás alatt legyenek */
@media (max-width: 768px) {
  .fsx-home-hero-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .fsx-home-hero {
    padding: 2.5rem 1.25rem 3rem;
  }

  .fsx-home-hero-slider {
    margin-top: 1.5rem;
  }
}

/* ======================================================================
   KEZDŐLAP – TARTALOM SÁV FULL WIDTH, TARTALOM KÖZÉPEN
   ====================================================================== */

body.home .wp-site-blocks,
body.home .entry-content {
  max-width: 100% !important;
  width: 100% !important;
}

/* ==== HOMEPAGE HERO – SLIDER ÉS SZÖVEG EGY SORBAN ==== */

/* Ne törje szét a két oszlopot asztali nézetben */
@media (min-width: 900px) {
  .fsx-home-hero-inner {
    flex-wrap: nowrap;
  }

  /* Bal oldali szöveg kb. 45% */
  .fsx-home-hero-text {
    flex: 0 1 45%;
    max-width: none;
  }

  /* Jobb oldali slider kb. 55% */
  .fsx-home-hero-slider {
    flex: 0 1 55%;
  }

  /* A slider wrap ne legyen 900px, hanem max. ~600px,
     különben sose fér el a szöveggel egy sorban */
  .fsx-home-hero-slider .solana-slider-wrap,
  .fsx-home-hero-slider .oktato-slider-wrap {
    width: 100%;
    max-width: 600px !important;
    margin: 0 auto;
  }
}


/* ==== KEZDŐLAP FULL WIDTH – SZÉLSŐ PADDINGOK LEVÉTELE ==== */

/* A fő wrapper ne szűküljön, ne legyen bal/jobb padding */
body.home .wp-site-blocks {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* A bejegyzés tartalom se tegyen rá plusz margót/paddinget */
body.home .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* A hero kapjon full width hátteret, belül kicsi belső paddinggal */
body.home .fsx-home-hero {
  padding-left: 0;
  padding-right: 0;
}

body.home .fsx-home-hero-inner {
  max-width: 1400px;       /* kicsit szélesebb, hogy jobban kitöltse */
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* ==== HOMEPAGE HERO FULL WIDTH – NE LEGYEN 1200PX-RE SZŰKÍTVE ==== */
body.home .fsx-home-hero {
  padding-left: 24px;
  padding-right: 24px;
}

body.home .fsx-home-hero-inner {
  max-width: none;       /* NE szűküljön 1200px-re */
  width: 100%;           /* töltse ki a teljes tartományt */
  margin: 0;             /* ne középre zárjuk, legyen full width */
  padding: 0;            /* a belső paddinget a .fsx-home-hero adja */
}


/* ==== SHORTCODE WRAPPER TELJES SZÉLESSÉGRE ==== */

/* A shortcode köré rakott WordPress blokkot kikapcsoljuk */
body.home .wp-block-shortcode,
body.home .wp-block-group,
body.home .entry-content > .wp-block-group {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Kifejezetten az oktato_portal_home shortcode wrapper kinyújtása */
body.home [class*="oktato_portal_home"],
body.home .fsx-home-hero {
    width: 100% !important;
    max-width: 100% !important;
}

/* A slider se legyen beszűkítve */
body.home .fsx-home-hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}


/* ============================================================
   SITE TITLE KIKAPCSOLÁSA (mindenképpen)
   ============================================================ */
header .wp-block-site-title {
    display: none !important;
}

/* ============================================================
   HEADER MOBILON – LOGO FELÜL, ALATTA MENÜ + GOMBOK
   ============================================================ */
@media (max-width: 782px) {

    /* TELJES HEADER */
    header.wp-block-group.alignfull {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 16px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        box-sizing: border-box;
    }

    /* -------------------------------
       1) LOGO BLOKK (ELSŐ GROUP)
       ------------------------------- */
    header.wp-block-group.alignfull > .wp-block-group:first-child {
        flex: 0 0 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        justify-content: flex-start !important;
    }

    /* -------------------------------
       2) MENÜ + GOMBOK BLOKK
       ------------------------------- */
    header.wp-block-group.alignfull > .wp-block-group:last-child {
        flex: 0 0 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        row-gap: 8px !important;
        justify-content: flex-start !important;
    }

    /* MENÜ (Profilom, Jelszó visszaállítása, Oktatók...) */
    header.wp-block-group.alignfull .wp-block-navigation {
        flex: 0 0 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    /* GOMBCSOport (Profilom / Kijelentkezés) */
    header.wp-block-group.alignfull .wp-block-buttons {
        flex: 0 0 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    /* Gombok (NE törjék szét a szöveget!!!) */
    header.wp-block-group.alignfull .wp-block-button__link {
        white-space: nowrap !important;
        padding: 8px 16px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.9rem !important;
    }
}