/* =========================================================================
   Peter Huba — Som tu pre Vás
   Dizajnový systém. Farby a logo-lockup podľa billboardu kampane,
   layoutový jazyk (boxy, šípky, ostré rohy) podľa porvaznik.sk.
   ========================================================================= */

/* ---------- 1. Tokeny ---------------------------------------------------- */
:root {
  /* značka — presné farby z billboardu bb_HUBA_510X240 */
  --blue:        #0e69b2;
  --blue-dark:   #0a5290;
  --blue-deep:   #0a3f70;
  --blue-light:  #b9dcf5;
  --blue-pale:   #e3f1fb;
  --yellow:      #fccf02;
  --yellow-dark: #e5ba00;
  --navy:        #252d61;
  --navy-dark:   #1a2049;

  --white: #ffffff;
  --ink:   #1b2033;
  --muted: #5b6474;
  --line:  #dfe6ef;

  --font: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 80rem;
  --gutter: 1.25rem;
  --header-h: 72px;          /* skutočná výška hlavičky — mobil */

  --shadow-card: 0 2px 20px rgba(0, 0, 0, .1);
  --shadow-lift: 0 12px 40px rgba(37, 45, 97, .18);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* ---------- 3. Layout ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: 4.5rem; }
@media (min-width: 64rem) { .section { padding-block: 6.5rem; } }

.section--pale { background: var(--blue-pale); }
.section--blue { background: var(--blue); color: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }

/* ---------- 4. Typografia ------------------------------------------------ */
/* Nadpis v boxe — hlavný podpis vizuálu (ako na billboarde) */
.headline {
  display: inline-block;
  font-weight: 900;
  letter-spacing: -.005em;
  line-height: 1.14;
  font-size: clamp(1.6rem, 1.1rem + 2.3vw, 2.6rem);
  text-transform: uppercase;
  padding: .3rem .6rem .2rem;
  background: var(--blue);
  color: var(--white);
}
.headline--yellow { background: var(--yellow); color: var(--navy); }
.headline--navy   { background: var(--navy);   color: var(--white); }
.section--blue .headline, .section--navy .headline { background: var(--yellow); color: var(--navy); }

/* nadpis so žltým „hrotom" vpravo (karty priorít) */
.tag-title {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: clamp(1.15rem, .95rem + .8vw, 1.45rem);
  line-height: 1.2;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: .4rem .6rem .3rem;
}
.tag-title::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 99%;
  width: 1.4rem;
  background: var(--yellow);
  clip-path: polygon(0 0, 14% 0, 100% 50%, 14% 100%, 0 100%);
}

.eyebrow {
  font-weight: 800; font-size: .8125rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
}
.section--blue .eyebrow, .section--navy .eyebrow { color: var(--yellow); }

.lead { font-size: clamp(1.125rem, 1rem + .5vw, 1.3125rem); line-height: 1.7; }

.prose { font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem); line-height: 1.75; }
.prose > * + * { margin-top: 1.35rem; }
.prose strong { font-weight: 700; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* citát */
.pullquote {
  margin-top: 2rem;
  border-left: 5px solid var(--yellow);
  padding: .25rem 0 .25rem 1.25rem;
  font-size: clamp(1.125rem, 1rem + .55vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
}
.section--blue .pullquote, .section--navy .pullquote { color: var(--white); }

/* ---------- 5. Tlačidlá -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .8rem 1.15rem .65rem;
  font-weight: 800; line-height: 1.2;
  border: 2px solid var(--navy);
  background: none; cursor: pointer;
  transition: background-color .15s ease-in-out, transform .15s ease-in-out,
              color .15s ease-in-out, border-color .15s ease-in-out;
}
.btn:hover { transform: scale(1.06); }
.btn.primary        { background: var(--yellow); color: var(--navy); }
.btn.primary:hover  { background: var(--yellow-dark); }
.btn.secondary      { background: var(--blue-light); color: var(--navy); }
.btn.secondary:hover{ background: var(--white); }
.btn.ghost          { background: transparent; color: var(--white); border-color: var(--white); }
.btn.ghost:hover    { background: rgba(255,255,255,.16); }
.btn.navy           { background: var(--navy); color: var(--white); }
.btn.navy:hover     { background: var(--navy-dark); }

.btn.link {
  padding: 0 0 .15rem; border: 0; background: none;
  color: var(--navy); position: relative; font-weight: 800;
}
.btn.link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: currentColor;
  transition: width .15s ease-in-out;
}
.btn.link:hover { transform: none; }
.btn.link:hover::after, .card:hover .btn.link::after { width: 100%; }

/* ---------- 6. Hlavička -------------------------------------------------- */
.header {
  position: absolute; inset: 0 0 auto 0; z-index: 900;
  padding-block: 1rem;
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
@media (min-width: 64rem) {
  :root { --header-h: 102px; }
  .header { padding-block: 1.5rem; }
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header.is-stuck {
  position: fixed;
  background: var(--blue);
  box-shadow: 0 2px 24px rgba(37, 45, 97, .35);
}
/* podstránky bez hero sekcie — hlavička potrebuje vlastné pozadie */
.header--solid { position: sticky; background: var(--blue); }

/* jednoduchá textová podstránka */
.page-head { background: var(--blue); color: var(--white); padding-block: 3rem 3.5rem; }
.page-body { padding-block: 3.5rem 5rem; }
.page-body .prose { max-width: 48rem; }
.note {
  border-left: 5px solid var(--yellow);
  background: var(--blue-pale);
  padding: 1rem 1.25rem;
  font-size: .9375rem;
}

/* logo-lockup ako na billboarde: „Peter" na žltej + „HUBA" na navy */
.logo { display: inline-flex; align-items: stretch; flex-shrink: 0; line-height: 1; }
.logo span {
  display: grid; place-items: center;
  font-weight: 900; letter-spacing: -.01em;
  padding: .38rem .6rem .3rem;
}
.logo__first { background: var(--yellow); color: var(--navy); font-size: 1.3rem; }
.logo__last  { background: var(--navy); color: var(--white); font-size: 1.3rem; text-transform: uppercase; }
@media (min-width: 64rem) {
  .logo__first, .logo__last { font-size: 2.25rem; padding: .55rem .95rem .45rem; }
}

.nav { display: none; }
@media (min-width: 64rem) { .nav { display: flex; align-items: center; gap: 1.75rem; } }
.nav__list { display: flex; gap: 1.4rem; align-items: center; }
.nav__list a { font-weight: 700; color: var(--white); position: relative; padding-block: .3rem; }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--yellow); transition: width .15s ease-in-out;
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { width: 100%; }

.socials { display: flex; gap: .5rem; }
.socials a {
  display: grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border: 2px solid rgba(255,255,255,.45); color: var(--white);
  transition: background-color .15s, border-color .15s, color .15s;
}
.socials a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }

.burger {
  display: inline-flex; padding: .45rem; border: 2px solid var(--white);
  background: none; color: var(--white); cursor: pointer;
}
@media (min-width: 64rem) { .burger { display: none; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--navy); color: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s ease-in-out;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; padding: .9rem 1.25rem; }
.mobile-menu__list { display: flex; flex-direction: column; gap: .35rem; padding: 1.5rem 1.25rem; }
.mobile-menu__list a { font-weight: 900; font-size: 1.75rem; text-transform: uppercase; }
.mobile-menu__list a:hover { color: var(--yellow); }
.mobile-menu__foot { margin-top: auto; padding: 1.25rem 1.25rem 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: var(--blue) url("../img/hero-kosice.jpg") center / cover no-repeat;
  color: var(--white);
}
.hero::before {           /* modrý závoj — text musí byť čitateľný */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,63,112,.30) 0%, rgba(14,105,178,.08) 42%, rgba(10,63,112,.5) 100%);
}
/* obsah sadá k spodnej hrane — postava je odfotená po hruď,
   takže rovný spodný orez nesmie „visieť" vo vzduchu */
.hero__inner {
  position: relative; z-index: 2;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: 0;
  display: grid; align-content: end; gap: 0;
}
@media (min-width: 64rem) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: end; column-gap: 3rem;
    padding-top: calc(var(--header-h) + 2rem);
  }
}

.hero__figure { position: relative; order: 2; justify-self: center; align-self: end; max-width: 20rem; }
@media (min-width: 64rem) { .hero__figure { order: 1; justify-self: start; max-width: 34rem; } }
.hero__figure img { display: block; width: 100%; filter: drop-shadow(0 18px 45px rgba(10, 40, 80, .5)); }

.hero__copy {
  position: relative; order: 1;
  padding-bottom: clamp(2rem, 8vh, 5rem);
}
@media (min-width: 64rem) { .hero__copy { order: 2; padding-bottom: clamp(3rem, 14vh, 8rem); } }
.hero__title { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 1.5rem; }
.hero__line {
  display: inline-block;
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.5rem, 1.2rem + 6.2vw, 5.4rem);
  line-height: 1.04; letter-spacing: -.015em;
  padding: .3rem .8rem .2rem;
}
.hero__line--1 { background: var(--navy); color: var(--white); }
.hero__line--2 {
  background: var(--yellow); color: var(--navy);
  margin-left: 1.5rem; position: relative;
}
@media (min-width: 48rem) { .hero__line--2 { margin-left: 3.5rem; } }
.hero__line--2::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 99%; width: 2.3rem;
  background: var(--yellow);
  clip-path: polygon(0 0, 16% 0, 100% 50%, 16% 100%, 0 100%);
}
.hero__text {
  max-width: 36rem;
  font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem);
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(8, 40, 78, .6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__scroll {
  position: absolute; z-index: 3; left: 50%; bottom: 1.25rem; transform: translateX(-50%);
  display: none; align-items: center; gap: .5rem; font-weight: 700; font-size: .875rem;
  color: var(--white);
}
@media (min-width: 64rem) { .hero__scroll { display: inline-flex; } }
.hero__scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }


/* ---------- 8. Blok text + obrázok --------------------------------------- */
.split { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 48rem) {
  .split { grid-template-columns: 1fr 1fr; max-width: var(--container); margin-inline: auto; }
}
.split__text { padding: 3.5rem var(--gutter); display: flex; align-items: center; }
@media (min-width: 48rem) { .split__text { padding-inline-end: 2.5rem; } }
@media (min-width: 80rem) { .split__text { padding-inline-end: 4.5rem; } }
@media (min-width: 48rem) {
  .split--flip .split__text { order: 2; padding-inline: 2.5rem var(--gutter); }
  .split--flip .split__media { order: 1; }
}
@media (min-width: 80rem) { .split--flip .split__text { padding-inline-start: 4.5rem; } }
/* Fotka má nad hlavou doplnené vlastné pozadie (pomer 1:2). Kotví sa k spodku,
   takže pri akejkoľvek výške stĺpca sa oreže len prázdne pozadie hore — nikdy boky. */
.split__media { position: relative; aspect-ratio: 0.7948; }   /* = pomer fotky bez doplneného pozadia (vypíše skript) */
/* Obrázok je mimo toku, aby jeho výška nediktovala výšku riadku —
   výšku sekcie určuje text, fotka sa mu prispôsobí. */
.split__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
}

@media (min-width: 48rem) { .split__media { aspect-ratio: auto; min-height: 30rem; } }

/* ---------- 9. Karty priorít --------------------------------------------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 48rem) { .cards { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 64rem) { .cards { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; } }

.card {
  display: flex; flex-direction: column;
  background: var(--white); box-shadow: var(--shadow-card);
  overflow: hidden;              /* žltý hrot nadpisu nesmie pretiecť kartu */
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }

.card__media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--blue); display: grid; place-items: center;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media svg { width: 42%; max-width: 6.5rem; height: auto; color: rgba(255,255,255,.9); }
.card:nth-child(2n) .card__media { background: var(--navy); }
.card:nth-child(3n) .card__media { background: var(--blue-dark); }

.card__titlewrap { position: relative; top: -1.1rem; margin-bottom: -.6rem; padding-inline: 1rem; }
.card__body { padding: .5rem 1.25rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; gap: 1rem; }
.card__body p { color: var(--muted); }
.card__body .btn.link { margin-top: auto; }

/* ---------- 10. Aktivity — živý FB feed ---------------------------------- */
.aktivity { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 64rem) {
  .aktivity { grid-template-columns: 1fr minmax(0, 500px); gap: 4rem; align-items: center; }
}

.fb-embed { width: 100%; max-width: 500px; margin-inline: auto; }
.fb-embed iframe {
  width: 100%; display: block; border: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.fb-embed__note { margin-top: .875rem; font-size: .8125rem; color: var(--muted); }
.fb-embed__note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 11. Kontakt --------------------------------------------------- */
.contact { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 64rem) { .contact { grid-template-columns: 1fr 1.15fr; gap: 4rem; } }

.form { display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 40rem) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label { font-weight: 700; font-size: .875rem; display: block; margin-bottom: .35rem; }
.form input, .form textarea {
  width: 100%; padding: .85rem 1rem;
  border: 2px solid var(--navy); background: var(--white); color: var(--ink);
}
.form textarea { min-height: 9rem; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: #98a3b5; }
.form__note { font-size: .875rem; color: var(--muted); }
.section--blue .form__note, .section--navy .form__note { color: rgba(255,255,255,.85); }
.form__status { font-weight: 700; }

.contact__info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__item { display: flex; gap: .9rem; align-items: flex-start; }
.contact__item svg { flex: 0 0 auto; margin-top: .2rem; color: var(--yellow); }

/* ---------- 12. Pätička --------------------------------------------------- */
.footer { background: var(--navy); color: var(--white); padding-block: 3.5rem 2rem; text-align: center; }
.footer .logo { justify-content: center; }
.footer__socials { display: flex; justify-content: center; gap: .75rem; margin-top: 1.75rem; }
.footer__socials a {
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem;
  border: 2px solid rgba(255,255,255,.4);
  transition: background-color .15s, border-color .15s, color .15s;
}
.footer__socials a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.footer__links {
  margin-top: 2.5rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.75rem;
  font-size: .875rem;
}
.footer__links a:hover { color: var(--yellow); }
.footer__copy { margin-top: 1.25rem; font-size: .8125rem; color: rgba(255,255,255,.65); }

/* ---------- 12b. Textové stránky (právne texty) ---------------------------- */
.prose h2 {
  font-size: clamp(1.25rem, 1.05rem + .7vw, 1.6rem); font-weight: 900;
  color: var(--navy); margin-top: 2.25rem; line-height: 1.25;
}
.prose h3 { font-size: 1.125rem; font-weight: 800; color: var(--navy); margin-top: 1.5rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .5rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .9375rem; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: .6rem .75rem; border-bottom: 1px solid var(--line); }
.prose th { background: var(--blue-pale); color: var(--navy); font-weight: 800; white-space: nowrap; }
.prose em { font-style: italic; }
/* miesta, ktoré treba ešte doplniť / potvrdiť */
mark { background: var(--yellow); color: var(--navy); padding: 0 .25em; }

/* ---------- 13. Animácie -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 14. Pomocné --------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-w-3xl { max-width: 48rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.no-scroll { overflow: hidden; }


/* =========================================================================
   WordPress — integrácia pluginov a admin lišty
   ========================================================================= */

/* admin lišta prihláseného správcu */
.admin-bar .header.is-stuck { top: 32px; }
@media (max-width: 782px) { .admin-bar .header.is-stuck { top: 46px; } }

/* ---------- Contact Form 7 ---------- */
.form--cf7 .wpcf7 p { margin: 0 0 1rem; }
.form--cf7 label { display: block; font-weight: 700; font-size: .875rem; }
.form--cf7 .wpcf7-form-control-wrap { display: block; margin-top: .35rem; }
.form--cf7 input.wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="radio"]),
.form--cf7 textarea.wpcf7-form-control,
.form--cf7 select.wpcf7-form-control {
  width: 100%; padding: .85rem 1rem;
  border: 2px solid var(--navy); background: var(--white); color: var(--ink);
}
.form--cf7 textarea.wpcf7-form-control { min-height: 9rem; resize: vertical; }
.form--cf7 .wpcf7-form-control::placeholder { color: #98a3b5; }
.form--cf7 .wpcf7-list-item { margin: 0; }
.form--cf7 .wpcf7-acceptance label,
.form--cf7 .wpcf7-checkbox label {
  display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .9375rem;
}
.form--cf7 .wpcf7-acceptance input, .form--cf7 .wpcf7-checkbox input {
  width: 1.25rem; height: 1.25rem; flex: 0 0 auto; margin-top: .15rem; accent-color: var(--navy);
}
.form--cf7 .wpcf7-submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.15rem .65rem; font-weight: 800; line-height: 1.2;
  border: 2px solid var(--navy); background: var(--yellow); color: var(--navy);
  cursor: pointer; transition: background-color .15s ease-in-out, transform .15s ease-in-out;
}
.form--cf7 .wpcf7-submit:hover { background: var(--yellow-dark); transform: scale(1.06); }
.form--cf7 .wpcf7-spinner { margin-left: .75rem; }
.form--cf7 .wpcf7-not-valid-tip { display: block; margin-top: .35rem; font-size: .875rem; color: #ffd9d9; }
.form--cf7 .wpcf7-response-output {
  margin: 1rem 0 0 !important; padding: .75rem 1rem !important;
  border: 2px solid var(--yellow) !important; font-weight: 700;
}

/* ---------- Custom Facebook Feed ---------- */
.aktivity--plny { grid-template-columns: 1fr !important; }
.fb-cff { margin-top: 2.5rem; }
.fb-cff .cff-item { background: var(--white); box-shadow: var(--shadow-card); padding: 1.25rem; box-sizing: border-box; }
.fb-cff .cff-item .cff-text { font-size: 1rem; line-height: 1.6; }
/* like box („Follow Page") nechceme — nahrádza ho tlačidlo „Sledujte ma na Facebooku" */
.fb-cff .cff-likebox { display: none !important; }

/* tlačidlo „Načítať viac" v našom štýle; pri načítavaní nesmie meniť výšku
   (plugin dá textu opacity 0 a nechá len absolútne pozíciovaný spinner) */
.fb-cff #cff-load-more, .fb-cff .cff-load-more {
  display: flex !important; align-items: center; justify-content: center;
  box-sizing: border-box; min-height: 3.25rem !important;
  padding: .8rem 1.15rem .65rem !important; margin: 1.5rem 0 0 !important;
  font-weight: 800; line-height: 1.2 !important; font-size: 1.0625rem;
  border: 2px solid var(--navy) !important; background: var(--yellow) !important; color: var(--navy) !important;
  border-radius: 0 !important; text-decoration: none !important;
}
.fb-cff .cff-load-more:hover { background: var(--yellow-dark) !important; }
.fb-cff .cff-load-more span { position: static; }
.fb-cff .cff-load-more.cff-loading span { opacity: .55 !important; }
.fb-cff .cff-load-more .cff-loader {
  position: static !important; margin: 0 0 0 .75rem !important;
  width: 1rem !important; height: 1rem !important; background-color: var(--navy) !important;
}
.fb-cff .cff-no-more-posts {
  background: none !important; color: var(--muted); font-weight: 700; text-align: center;
  margin-top: 1rem !important; padding: .5rem 0 !important;
}
