@charset "UTF-8";

/* KINO: warstwa podstrony. Responsywnosc i kontener (.container -> padding-inline)
   pochodza z main.css - dzieki temu tekst nigdy nie dotyka krawedzi ekranu. */
:root {
  --kino-red: #ff5a52;
  --kino-black: #0d0d0d;
  --kino-off: #f1f1ef;
  --kino-line: #d8d8d4;
}

.kino-shell { overflow: clip; background: var(--kino-off); }

/* ============================================================
   TOPBAR (menu Kina) — JEDNO zrodlo prawdy na offset.
   .site-header z main.css jest position: absolute, wiec rezerwujemy
   jego wysokosc przez margin-top na topbarze. Wartosci maja zapas,
   zeby menu nigdy nie zachodzilo na gorny pasek (util-bar + logo).
   ============================================================ */
.kino-topbar {
  position: relative;
  z-index: 10;
  margin-top: 110px;
  padding-top: 0;
  background: var(--kino-off);
  color: var(--kino-black);
  border: 0;
}


.kino-topbar__inner {
  min-height: 104px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 3rem;
}

.kino-topbar__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem clamp(1.5rem, 3.5vw, 3.25rem);
  min-width: 0;
}

.kino-topbar__item { flex: 0 0 auto; }

.kino-topbar__link {
  display: inline-flex;
  padding: .25rem 0;
  color: var(--kino-black);
  font-size: clamp(.9375rem, 1.35vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}
.kino-topbar__link:hover,
.kino-topbar__link:focus-visible { color: var(--kino-red); }

.kino-topbar__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin: 0;
  color: var(--kino-black);
  font-size: clamp(.9375rem, 1.35vw, 1.25rem);
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .kino-topbar, .cms-toolbar-expanded .kino-topbar { margin-top: 160px; }
  .kino-topbar__inner { min-height: 88px; }
}

@media (max-width: 768px) {
  .kino-topbar, .cms-toolbar-expanded .kino-topbar { margin-top: 80px !important; }
  .kino-topbar__inner {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .875rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .kino-topbar__list { width: 100%; flex-wrap: nowrap; overflow-x: auto; gap: 1.25rem; scrollbar-width: thin; }
  .kino-topbar__meta { display: flex; width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .kino-topbar, .cms-toolbar-expanded .kino-topbar { margin-top: 80px !important; }
  .kino-topbar__meta { font-size: var(--fs-sm); }
}

/* Breadcrumbs — sprite SVG jak w reszcie serwisu */
.bc--kino .bc__link--home { display: inline-flex; align-items: center; justify-content: center; }
.bc--kino .bc__link--home .icon { width: 1rem; height: 1rem; fill: currentColor; }
.bc--kino .bc__sep .icon { width: .65rem; height: .65rem; fill: currentColor; }

/* ============================================================
   HERO
   ============================================================ */
.kino-hero { position: relative; background: var(--kino-off); border-bottom: 1px solid var(--kino-line); }
.kino-hero__inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); min-height: clamp(470px, 58vw, 760px); }
.kino-hero__copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding-block: clamp(2.5rem, 6vw, 5rem); }
.kino-hero .bc { padding: 0 0 clamp(2rem, 5vw, 4rem); }
.kino-hero__eyebrow { margin-bottom: 1rem; color: var(--kino-black); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.kino-hero__title { margin: 0; color: var(--kino-red); font-size: clamp(3.25rem, 8vw, 7.5rem); font-weight: 900; line-height: .82; letter-spacing: -.055em; text-transform: uppercase; }
.kino-hero__desc { max-width: 42ch; margin-top: clamp(1.5rem, 3vw, 2.5rem); color: #353535; font-size: clamp(1rem, 1.45vw, 1.3rem); line-height: 1.55; }
.kino-hero__visual { position: relative; min-height: 100%; background: var(--kino-black); overflow: hidden; }
.kino-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.kino-hero__visual-ph { position: absolute; inset: 0; background: linear-gradient(145deg, #161616 0 48%, #262626 48% 70%, var(--kino-red) 70% 100%); }
.kino-hero__visual-ph::after { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(255,255,255,.24); }
.kino-hero__stamp {
  position: absolute; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 2;
  width: clamp(95px, 12vw, 150px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%;
  background: var(--kino-red); color: #fff; font-size: var(--fs-xs); font-weight: 800; line-height: 1.25;
  letter-spacing: .08em; text-align: center; text-transform: uppercase; transform: rotate(7deg);
}

/* ============================================================
   REPERTUAR — naglowek sekcji
   ============================================================ */
.kino-page { padding-block: clamp(3rem, 7vw, 6rem); background: #fff; }
.kino-section-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; padding-bottom: 1rem; border-bottom: 3px solid var(--kino-black); }
.kino-section-head__title { margin: 0; font-size: clamp(2rem, 4.5vw, 4.2rem); line-height: 1; }
.kino-section-head__text { max-width: 34ch; color: var(--c-muted); font-size: var(--fs-sm); }

/* ============================================================
   LISTA WYDARZEN — jedno pod drugim, na przemian szare/biale tlo,
   zdjecie "wyskakuje" poza gorna/dolna krawedz swojego pasa (cien +
   ujemny margines pionowy) — zgodnie z makieta.
   ============================================================ */
.kino-events-section { display: block; }

.kino-events { list-style: none; margin: 0; padding: 0; }

.kino-event {
  position: relative;
  border-bottom: 1px solid var(--kino-line);
}
.kino-event:nth-child(odd)  { background: var(--kino-off); }
.kino-event:nth-child(even) { background: #fff; }
.kino-event:last-child { border-bottom: 3px solid var(--kino-black); }

.kino-event__link { display: block; color: inherit; }

.kino-event__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2rem, 5vw, 3rem);
}

.kino-event__media {
  position: relative;
  z-index: 2;
  flex: 0 0 clamp(150px, 20vw, 260px);
  aspect-ratio: 4 / 3;
  margin-block: clamp(-2.25rem, -4vw, -1.5rem); /* efekt "wyskakiwania" ze pasa */
  overflow: hidden;
  background: var(--kino-black);
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}
.kino-event__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kino-event__media-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #151515, #353535); }

.kino-event__badge {
  position: absolute; top: .6rem; left: .6rem; z-index: 3;
  padding: .35rem .65rem; background: var(--kino-red); color: #fff;
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}

.kino-event__body { flex: 1 1 auto; min-width: 0; }
.kino-event__date { display: block; color: var(--kino-red); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.kino-event__title { margin: .4rem 0 0; font-size: clamp(1.35rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.15; }
.kino-event__intro { margin: .6rem 0 0; max-width: 62ch; color: var(--c-muted); font-size: var(--fs-sm); line-height: 1.65; }
.kino-event__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--kino-black); font-size: var(--fs-sm); font-weight: 800; }
.kino-event__link:hover .kino-event__more { color: var(--kino-red); }
.kino-event__link:hover .kino-event__media img { transform: scale(1.04); }
.kino-event__media img { transition: transform var(--t-slow); }

.kino-empty { padding-block: 3rem; color: var(--c-muted); }

.kino-pagination { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--kino-line); font-size: var(--fs-sm); font-weight: 700; }
.kino-pagination a { color: var(--kino-red); }
.kino-pagination__num { color: var(--c-muted); }

@media (max-width: 768px) {
  .kino-event__inner { align-items: flex-start; }
  .kino-event__media { flex-basis: clamp(120px, 32vw, 180px); margin-block: -1.25rem; }
}

@media (max-width: 480px) {
  .kino-event__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .kino-event__media { flex-basis: auto; width: 60%; margin-block: 0; margin-top: -1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .kino-event__media img { transition: none; }
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kino-contact { background: var(--kino-red); color: #fff; }
.kino-contact__inner { display: grid; grid-template-columns: minmax(220px,.65fr) minmax(0,1.35fr); align-items: center; gap: 1rem 3rem; padding-block: clamp(2rem,4vw,3.5rem); }
.kino-contact__label { color: #fff; font-size: clamp(1.5rem,3vw,2.75rem); font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.kino-contact__data { color: #fff; font-size: var(--fs-base); }
.kino-contact__data a { text-decoration: underline; text-underline-offset: 4px; }

/* ============================================================
   DETAL WYDARZENIA
   ============================================================ */
.kino-detail-page { background: #fff; padding-bottom: clamp(3rem,7vw,6rem); }
.kino-detail-page .art-container { max-width: 80%; }
.kino-detail-page .art-back { color: var(--kino-red); }
.kino-detail-page .art-title { max-width: 22ch; font-size: clamp(2rem,5vw,4.8rem); line-height: 1.02; }
.kino-detail-page .art-meta__date { color: var(--kino-red) !important; font-weight: 800; }
.kino-detail-page .art-lead { max-width: 60ch; font-size: clamp(1rem,1.8vw,1.25rem); }
.kino-detail-page .art-hero-fig { border-radius: 0; }
.kino-detail-page .art-content a { color: var(--kino-red); }
.kino-detail-page .art-related { border-top-color: var(--kino-black); }

@media (max-width: 1024px) {
  .kino-hero__inner { grid-template-columns: 1fr 1fr; }
  .kino-detail-page .art-container { max-width: 100%; }
}

@media (max-width: 768px) {
  .kino-hero__inner { display: flex; flex-direction: column; min-height: 0; }
  .kino-hero__copy { padding-block: 2.5rem; }
  .kino-hero .bc { padding-bottom: 2rem; }
  .kino-hero__title { font-size: clamp(3rem,17vw,5.5rem); }
  .kino-hero__visual { min-height: clamp(300px,75vw,500px); }
  .kino-section-head { align-items: flex-start; flex-direction: column; }
  .kino-contact__inner { grid-template-columns: 1fr; }
  .kino-detail-page .art-container { padding-inline: 1rem !important; }
}

@media (max-width: 480px) {
  .kino-hero__stamp { width: 88px; }
  .kino-pagination { align-items: stretch; flex-direction: column; text-align: center; }
  .kino-pagination > * { min-height: 1.5rem; }
}

/* ============================================================
   KINO — O PRZESTRZENI (zdjęcie tła + 3 zachodzące kafelki)
   Dopisek do kino.css — wklej na końcu pliku, nie nadpisuje
   istniejących reguł.
   ============================================================ */

.kino-about {
  background: #fff;
  font-family: 'Archivo', var(--font, sans-serif);
}

.kino-about__bg {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  overflow: hidden;
  background: var(--kino-black);
}
.kino-about__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kino-about__bg-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a1a, #3a3a3a); }

.kino-about__tiles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  padding-inline: clamp(1rem, 5vw, 6.25rem);
  transform: translateY(45%);
}

.kino-about__tile {
  flex: 1 1 0;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: .5rem .5rem 1rem;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.kino-about__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kino-about__tile:nth-child(1) { transform: rotate(1deg); }
.kino-about__tile:nth-child(2) { transform: rotate(-1.5deg); }
.kino-about__tile:nth-child(3) { transform: rotate(2deg); }

.kino-about__content {
  padding-top: clamp(6rem, 16vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.kino-about__eyebrow {
  margin: 0 0 .75rem;
  color: var(--c-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kino-about__title {
  margin: 0 0 1.5rem;
  color: var(--kino-red);
  font-family: 'Archivo', var(--font, sans-serif);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.kino-about__body {
  max-width: 70ch;
  margin-inline: auto;
  color: var(--c-black, #1a1a1a);
  font-size: var(--fs-base);
  line-height: 1.75;
  text-align: left;
}
.kino-about__body p { margin: 0 0 1rem; }
.kino-about__body strong { font-weight: 700; }
.kino-about__body ul { margin: 1rem 0; padding-left: 1.25rem; }
.kino-about__body li { margin-bottom: .5rem; }

@media (max-width: 1024px) {
  .kino-about__tile { max-width: 200px; }
}

@media (max-width: 768px) {
  .kino-about__bg { aspect-ratio: 4 / 3; max-height: none; }
  .kino-about__tiles { position: static; transform: none; padding-top: 1.5rem; padding-bottom: 0; }
  .kino-about__content { padding-top: 2.5rem; }
  .kino-about__tile { max-width: none; aspect-ratio: 1 / 1; }
}

@media (max-width: 480px) {
  .kino-about__tiles { flex-direction: column; gap: 1rem; }
  .kino-about__tile { max-width: 220px; margin-inline: auto; aspect-ratio: 4 / 3; }
}

/* ============================================================
   KINO — WYKORZYSTANIE PRZESTRZENI (komercja)
   Dopisek do kino.css — wklej na końcu pliku, nie nadpisuje
   istniejących reguł.
   ============================================================ */

.kino-usage {
  background: var(--kino-off);
  padding-block: clamp(3rem, 7vw, 6rem);
  font-family: 'Archivo', var(--font, sans-serif);
}

.kino-usage__title {
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  color: var(--kino-red);
  font-weight: 900;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.kino-usage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.kino-usage__left { display: flex; flex-direction: column; gap: 2rem; min-width: 0; }

.kino-usage__photo {
  align-self: flex-start;
  max-width: 320px;
  margin: 0;
  padding: .6rem .6rem 1.4rem;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transform: rotate(-1deg);
}
.kino-usage__photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

.kino-usage__body { color: var(--c-black, #1a1a1a); font-size: var(--fs-base); line-height: 1.75; }
.kino-usage__body p { margin: 0 0 1rem; }
.kino-usage__body ul { margin: 1rem 0; padding-left: 1.25rem; }
.kino-usage__body li { margin-bottom: .5rem; }

.kino-usage__right {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--kino-black);
}
.kino-usage__right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kino-usage__right-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a1a, #3a3a3a); }

.kino-usage__cta { margin-top: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.kino-usage__cta-label {
  margin: 0 0 1.25rem;
  color: var(--kino-red);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.kino-usage__cta-link {
  display: inline-block;
  padding: .9rem 2rem;
  background: var(--kino-black);
  color: #fff;
  font-size: var(--fs-base);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.kino-usage__cta-link:hover { color: var(--kino-red); }

@media (max-width: 1024px) {
  .kino-usage__right { min-height: 340px; }
}

@media (max-width: 768px) {
  .kino-usage__grid { grid-template-columns: 1fr; }
  .kino-usage__photo { max-width: 260px; }
  .kino-usage__right { min-height: 300px; }
}

/* ============================================================
   KINO — IDEA
   ============================================================ */

.kino-idea {
  background: #fff;
  padding-block: clamp(3rem, 7vw, 6rem);
  font-family: 'Archivo', var(--font, sans-serif);
}

.kino-idea__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.kino-idea__title {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  color: var(--kino-red);
  font-weight: 900;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.02em;
  /* celowo BEZ text-transform: uppercase — na makiecie tytuł jest
     w formie "Idea", nie "IDEA"; redaktor kontroluje wielkość liter */
}

.kino-idea__media {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  aspect-ratio: 4 / 5;
  max-width: 620px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--kino-black);
}
.kino-idea__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kino-idea__body {
  color: var(--c-black, #1a1a1a);
  font-size: var(--fs-base);
  line-height: 1.75;
  text-align: left;
}
.kino-idea__body p { margin: 0 0 1.1rem; }
.kino-idea__body p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .kino-idea__media { max-width: 100%; }
}

/* ============================================================
   KINO — ORGANIZACJA
   ============================================================ */

.kino-org {
  background: var(--kino-off);
  padding-block: clamp(3rem, 7vw, 6rem);
  font-family: 'Archivo', var(--font, sans-serif);
}

.kino-org__title {
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
}
.kino-org__title-a,
.kino-org__title-b {
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.03em;
  font-size: clamp(2.75rem, 8vw, 6rem);
}
.kino-org__title-a { color: var(--kino-red); }
.kino-org__title-b {
  color: var(--c-muted, #6b6b6b);
  margin-left: clamp(2.5rem, 14vw, 9rem);
  margin-top: -0.12em;
}

.kino-org__intro {
  margin: 0 0 1.5rem;
  color: var(--c-black, #1a1a1a);
  font-size: var(--fs-base);
}

.kino-org__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.kino-org__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.kino-org__num {
  flex: 0 0 auto;
  width: clamp(64px, 7vw, 88px);
  aspect-ratio: 1;
  border: 2px solid var(--kino-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kino-black);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.kino-org__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding-top: .4rem;
  color: var(--c-black, #1a1a1a);
  font-size: var(--fs-base);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .kino-org__title-b { margin-left: clamp(1.5rem, 20vw, 4rem); }
}

@media (max-width: 480px) {
  .kino-org__item { gap: 1rem; }
  .kino-org__num { width: 56px; font-size: 1.5rem; }
}

/* ============================================================
   KINO — CENNIK
   ============================================================ */

.kino-pricing {
  background: #fff;
  padding-block: clamp(3rem, 7vw, 6rem);
  font-family: 'Archivo', var(--font, sans-serif);
}

.kino-pricing__title {
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  color: var(--kino-red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: .95;
  letter-spacing: -.03em;
}

.kino-pricing__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.kino-pricing__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--kino-line);
}
.kino-pricing__item:last-child { border-bottom: 0; padding-bottom: 0; }

.kino-pricing__text { min-width: 0; }

.kino-pricing__cat {
  margin: 0 0 .75rem;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--c-black, #1a1a1a);
}

.kino-pricing__rates { color: var(--c-black, #1a1a1a); font-size: var(--fs-base); line-height: 1.7; }
.kino-pricing__rates p { margin: 0 0 .5rem; }
.kino-pricing__rates ul { margin: 0; padding-left: 1.25rem; list-style: disc; }
.kino-pricing__rates li { margin-bottom: .35rem; }

.kino-pricing__media {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--kino-black);
}
.kino-pricing__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .kino-pricing__item { grid-template-columns: 1fr; }
  .kino-pricing__media { order: -1; max-width: 320px; }
}

.kino-hero {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 52vw, 720px);
    overflow: hidden;
    background-color: #203f43;
    color: #ffffff;
    isolation: isolate;
}

.kino-hero__background {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.kino-hero__background--empty {
    background:
        linear-gradient(
            135deg,
            #173437 0%,
            #315659 55%,
            #b9d7c2 100%
        );
}

.kino-hero__overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 57, 60, 0.94) 0%,
            rgba(28, 68, 70, 0.82) 36%,
            rgba(70, 113, 104, 0.56) 67%,
            rgba(205, 228, 205, 0.42) 100%
        );
}

.kino-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 52vw, 720px);
    padding-top: clamp(4rem, 8vw, 8rem);
    padding-bottom: clamp(4rem, 8vw, 8rem);
}

.kino-hero__copy {
    width: min(100%, 1120px) !important;
    max-width: 1120px !important;
    margin-left: clamp(0px, 6vw, 140px) !important;
}

.kino-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.kino-hero__desc {
    max-width: 620px;
    margin-top: 2rem;
    color: #ffffff;
    font-size: clamp(1.15rem, 1.65vw, 1.65rem);
    line-height: 1.45;
}

@media (max-width: 767px) {
    .kino-hero,
    .kino-hero__inner {
        min-height: 540px;
    }

    .kino-hero__copy {
        margin-left: 0;
    }

    .kino-hero__title {
        font-size: clamp(3.25rem, 16vw, 5rem);
    }

    .kino-hero__desc {
        margin-top: 1.5rem;
        font-size: 1.1rem;
    }
}

/* ============================================================
   KINO TOPBAR - final override
   ============================================================ */

.kino-topbar {
    position: relative;
    z-index: 20;

    background: #203f43;
    color: #ffffff;
    top: 100px;
}

.kino-topbar__inner {
    min-height: 205px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 5rem);
    padding-top: 50px;
    padding-bottom: 34px;
}

.kino-topbar__brand {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    flex: 0 0 auto;
}

.kino-topbar__logo-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.kino-topbar__logo {
    display: block;
    width: auto;
    max-width: 245px;
    max-height: 62px;
    object-fit: contain;
}

.kino-topbar__section-link {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    text-decoration: none;
}

.kino-topbar__section-link:hover,
.kino-topbar__section-link:focus-visible {
    color: #ffffff;
    text-decoration: none;
}

.kino-topbar__title {
    display: block;
    color: #ffffff;
    font-size: clamp(1.95rem, 2.2vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.kino-topbar__subtitle {
    display: block;
    margin-top: 9px;
    color: #d7ece7;
    font-size: 0.95rem;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.kino-topbar__right {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-end;
    min-width: 0;
}

.kino-topbar__navigation {
    width: 100%;
}

.kino-topbar__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 22px 32px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.kino-topbar__menu-item {
    margin: 0;
    padding: 0;
}

.kino-topbar__menu-link {
    display: inline-block;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

.kino-topbar__menu-link:hover,
.kino-topbar__menu-link:focus-visible {
    color: #dfeee0;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.kino-topbar__social-navigation {
    margin-top: 44px;
}

.kino-topbar__social-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kino-topbar__social-item {
    margin: 0;
    padding: 0;
}

.kino-topbar__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 30px;
    color: #ffffff;
    text-decoration: none;
}

.kino-topbar__social-link:hover,
.kino-topbar__social-link:focus-visible {
    color: #dfeee0;
}

.kino-topbar__social-img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.kino-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.kino-social-icon--linkedin::before {
    content: "in";
}

.kino-social-icon--facebook::before {
    content: "f";
    font-size: 1.85rem;
}

.kino-social-icon--x::before {
    content: "X";
    font-weight: 400;
}

.kino-social-icon--youtube::before {
    content: "▶";
    font-size: 1.25rem;
}

.kino-social-icon--instagram::before {
    content: "◎";
}

@media (max-width: 1100px) {
    .kino-topbar__inner {
        flex-direction: column;
        gap: 30px;
    }

    .kino-topbar__right {
        align-items: flex-start;
        width: 100%;
    }

    .kino-topbar__menu {
        justify-content: flex-start;
    }

    .kino-topbar__social-navigation {
        margin-top: 26px;
    }

    .kino-topbar__social-list {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .kino-topbar__inner {
        min-height: 0;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .kino-topbar__brand {
        flex-direction: column;
        gap: 20px;
    }

    .kino-topbar__logo {
        max-width: 190px;
    }

    .kino-topbar__title,
    .kino-topbar__subtitle {
        white-space: normal;
    }

    .kino-topbar__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .kino-topbar__menu-item {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .kino-topbar__menu-link {
        display: block;
        width: 100%;
        padding: 14px 0;
    }
}

/* ============================================================
   KINO TOPBAR - desktop jak układ mobilny/tabletowy z makiety
   ============================================================ */

.kino-topbar {
    position: relative;
    z-index: 20;
    top: auto !important;
    margin-top: var(--kino-site-header-offset, 120px) !important;
    background: #203f43;
    color: #ffffff;
}

.kino-topbar__inner {
    min-height: 205px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 34px;
}

.kino-topbar__brand {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    flex: 0 0 auto;
}

.kino-topbar__logo-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.kino-topbar__logo {
    display: block;
    width: auto;
    max-width: 245px;
    max-height: 62px;
    object-fit: contain;
}

.kino-topbar__section-link {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    text-decoration: none;
}

.kino-topbar__title {
    display: block;
    color: #ffffff;
    font-size: clamp(1.95rem, 2.2vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.kino-topbar__subtitle {
    display: block;
    margin-top: 9px;
    color: #d7ece7;
    font-size: 0.95rem;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.kino-topbar__right {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

.kino-topbar__navigation {
    width: 100%;
}

.kino-topbar__menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 22px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kino-topbar__menu-item {
    margin: 0;
    padding: 0;
}

.kino-topbar__menu-link {
    display: inline-block;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

.kino-topbar__menu-link:hover,
.kino-topbar__menu-link:focus-visible {
    color: #dfeee0;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.kino-topbar__social-navigation {
    margin-top: 26px;
}

.kino-topbar__social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kino-topbar__social-item {
    margin: 0;
    padding: 0;
}

.kino-topbar__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 30px;
    color: #ffffff;
    text-decoration: none;
}

.kino-topbar__social-link:hover,
.kino-topbar__social-link:focus-visible {
    color: #dfeee0;
}

.kino-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.kino-social-icon--linkedin::before {
    content: "in";
}

.kino-social-icon--facebook::before {
    content: "f";
    font-size: 1.85rem;
}

.kino-social-icon--x::before {
    content: "X";
    font-weight: 400;
}

.kino-social-icon--youtube::before {
    content: "▶";
    font-size: 1.25rem;
}

.kino-social-icon--instagram::before {
    content: "◎";
}

/* ============================================================
   KINO TOPBAR - przyklejony do belki base.html
   ============================================================ */

.kino-topbar {
    position: relative;
    z-index: 20;
    top: auto !important;
    margin-top: 0 !important;
    background: #203f43;
}

.kino-topba*__inner {
    min-height: 205px;
    display: flex;
    flex-direction: column;
    align-items: flex-st*rt;
    justify-content: flex-star*;
    gap: 30px;
    padding-top: *0px;
    padding-bottom: 34px;
}

*kino-topbar__brand {
    display: *lex;
    align-items: flex-start;
    gap: 36px;
    flex: 0 0 auto;


.kino-topbar__logo-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.kino-*opbar__logo {
    display: block;
    width: auto;
    max-width: 245*x;
    max-height: 62px;
    objec*-fit: contain;
}

.kino-topbar__se*tion-link {
    display: flex;
   *flex-direction: column;
    color:*#ffffff;
    text-decoration: none*
}

.kino-topbar__section-link:hov*r,
.kino-topbar__section-link:focu*-visible {
    color: #ffffff;
    text-decoration: none;
}

.kino-to*bar__title {
    display: block;
    color: #ffffff;
    font-size: c*amp(1.95rem, 2.2vw, 2.45rem);
    font-weight: 800;
    line-height: *;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.kino-topb*r__subtitle {
    display: block;
    margin-top: 9px;
    color: #d78ce7;
    font-size: 0.95rem;
    line-height: 1.2;
    text-transform* uppercase;
    white-space: nowra*;
}

.kino-topbar__right {
    dis*lay: flex;
    flex-direction: col*mn;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}
.kino-topbar__navigation {
    wi*th: 100%;
}

.kino-topbar__menu {
    display: flex;
    align-items:*center;
    justify-content: flex-*tart;
    flex-wrap: wrap;
    gap: 22px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.*ino-topbar__menu-item {
    margin* 0;
    padding: 0;
}

.kino-topba*__menu-link {
    display: inline-*lock;
    color: #ffffff;
    font*size: 1.08rem;
    font-weight: 40*;
    line-height: 1.25;
    text-*ecoration: none;
    white-space: *owrap;
}

.kino-topbar__menu-link:*over,
.kino-topbar__menu-link:focu*-visible {
    color: #dfeee0;
   *text-decoration: underline;
    te*t-underline-offset: 5px;
}

.kino-*opbar__social-navigation {
    mar*in-top: 26px;
}

.kino-topbar__soc*al-list {
    display: flex;
    a*ign-items: center;
    justify-con*ent: flex-start;
    gap: 25px;
  * margin: 0;
    padding: 0;
    li*t-style: none;
}

.kino-topbar__so*ial-item {
    margin: 0;
    padd*ng: 0;
}

.kino-topbar__social-lin* {
    display: inline-flex;
    a*ign-items: center;
    justify-con*ent: center;
    width: 28px;
    *eight: 30px;
    color: #ffffff;
 *  text-decoration: none;
}

.kino-*opbar__social-link:hover,
.kino-to*bar__social-link:focus-visible {
 *  color: #dfeee0;
}

.kino-social-*con {
    display: inline-flex;
  * align-items: center;
    justify-*ontent: center;
    color: current*olor;
    font-family: Arial, sans*serif;
    font-size: 1.55rem;
   *font-weight: 700;
    line-height:*1;
}

.kino-social-icon--linkedin:*before {
    content: "in";
}

.ki*o-social-icon--facebook::before {
*   content: "f";
    font-size: 1.*5rem;
}

.kino-social-icon--x::bef*re {
    content: "X";
    font-we*ght: 400;
}

.kino-social-icon--yo*tube::before {
    content: "▶";
 *  font-size: 1.25rem;
}

.kino-soc*al-icon--instagram::before {
    c*ntent: "◎";
}

@media (max-width: *67px) {
    .kino-topbar__inner {
*       min-height: 0;
        padd*ng-top: 28px;
        padding-bott*m: 28px;
    }

    .kino-topbar__*rand {
        flex-direction: col*mn;
        gap: 20px;
    }

    *kino-topbar__logo {
        max-wi*th: 190px;
    }

    .kino-topbar*_title,
    .kino-topbar__subtitle*{
        white-space: normal;
   *}

    .kino-topbar__menu {
      * flex-direction: column;
        a*ign-items: flex-start;
        gap* 0;
        width: 100%;
    }

  * .kino-topbar__menu-item {
       *width: 100%;
        border-top: 1*x solid rgba(255, 255, 255, 0.15);*    }

    .kino-topbar__menu-link*{
        display: block;
        *idth: 100%;
        padding: 14px *;
    }
}

/* KINO TOPBAR - final attach */

body .kino-topbar {
    position: relative !important;
    z-index: 20 !important;
    margin-top: 0 !important;
    top: auto !important;
    transform: none !important;
    background: #203f43 !important;
    color: #ffffff !important;
}

body .kino-topbar__inner {
    min-height: 205px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 34px;
}

body .kino-topbar__brand {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    flex: 0 0 auto;
}

body .kino-topbar__logo {
    display: block;
    width: auto;
    max-width: 245px;
    max-height: 62px;
    object-fit: contain;
}

body .kino-topbar__logo-link,
body .kino-topbar__section-link {
    color: #ffffff;
    text-decoration: none;
}

body .kino-topbar__section-link {
    display: flex;
    flex-direction: column;
}

body .kino-topbar__title {
    display: block;
    color: #ffffff;
    font-size: clamp(1.95rem, 2.2vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

body .kino-topbar__subtitle {
    display: block;
    margin-top: 9px;
    color: #d7ece7;
    font-size: 0.95rem;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

body .kino-topbar__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

body .kino-topbar__navigation {
    width: 100%;
}

body .kino-topbar__menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 22px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body .kino-topbar__menu-link {
    display: inline-block;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

body .kino-topbar__social-navigation {
    margin-top: 26px;
}

body .kino-topbar__social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body .kino-topbar__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 30px;
    color: #ffffff;
    text-decoration: none;
}

body .kino-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

body .kino-social-icon--linkedin::before {
    content: "in";
}

body .kino-social-icon--facebook::before {
    content: "f";
    font-size: 1.85rem;
}

body .kino-social-icon--x::before {
    content: "X";
}

body .kino-social-icon--youtube::before {
    content: "▶";
}

body .kino-social-icon--instagram::before {
    content: "◎";
}
}

/* ============================================================
   KINO TOPBAR - desktop w układzie kolumnowym jak makieta
   ============================================================ */

.kino-topbar {
    position: relative !important;
    z-index: 20 !important;
    top: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: #203f43 !important;
    color: #ffffff !important;
}

.kino-topbar__inner {
    min-height: 288px;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    padding-top: 50px !important;
    padding-bottom: 34px !important;
}

.kino-topbar__brand {
    display: flex !important;
    align-items: flex-start !important;
    gap: 36px !important;
    flex: 0 0 auto !important;
}

.kino-topbar__logo-link {
    display: block !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.kino-topbar__logo {
    display: block !important;
    width: auto !important;
    max-width: 245px !important;
    max-height: 62px !important;
    object-fit: contain !important;
}

.kino-topbar__section-link {
    display: flex !important;
    flex-direction: column !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.kino-topbar__title {
    display: block !important;
    color: #ffffff !important;
    font-size: clamp(1.95rem, 2.2vw, 2.45rem) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
}

.kino-topbar__subtitle {
    display: block !important;
    margin-top: 9px !important;
    color: #d7ece7 !important;
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.kino-topbar__right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
}

.kino-topbar__navigation {
    width: 100% !important;
}

.kino-topbar__menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 22px 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.kino-topbar__menu-item {
    margin: 0 !important;
    padding: 0 !important;
}

.kino-topbar__menu-link {
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 1.08rem !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.kino-topbar__menu-link:hover,
.kino-topbar__menu-link:focus-visible {
    color: #dfeee0 !important;
    text-decoration: underline !important;
    text-underline-offset: 5px !important;
}

.kino-topbar__social-navigation {
    margin-top: 26px !important;
}

.kino-topbar__social-list {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.kino-topbar__social-item {
    margin: 0 !important;
    padding: 0 !important;
}

.kino-topbar__social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 30px !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.kino-topbar__social-link:hover,
.kino-topbar__social-link:focus-visible {
    color: #dfeee0 !important;
}

.kino-social-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: currentColor !important;
    font-family: Arial, sans-serif !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.kino-social-icon--linkedin::before {
    content: "in";
}

.kino-social-icon--facebook::before {
    content: "f";
    font-size: 1.85rem;
}

.kino-social-icon--x::before {
    content: "X";
    font-weight: 400;
}

.kino-social-icon--youtube::before {
    content: "▶";
    font-size: 1.25rem;
}

.kino-social-icon--instagram::before {
    content: "◎";
}

.kino-topbar {
    position: relative !important;
    z-index: 20 !important;
    top: auto !important;
    transform: none !important;
    margin-top: 80px !important;

    background: #203f43 !important;
    color: #ffffff !important;
}

.kino-topbar__inner {
    min-height: 288px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    padding-top: 50px !important;
    padding-bottom: 34px !important;
}

.kino-topbar__brand {
    display: flex !important;
    align-items: flex-start !important;
    gap: 36px !important;
    flex: 0 0 auto !important;
}

.kino-topbar__right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
}

.kino-topbar__menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 22px 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.kino-topbar__social-navigation {
    margin-top: 26px !important;
}

.kino-topbar__social-list {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

@media (max-width: 767px) {

    .kino-topbar {
        margin-top: 80px !important;
    }
    
    .kino-topbar__inner {
        min-height: 0 !important;
        padding-top: 0px !important;
        padding-bottom: 28px !important;
    }

    .kino-topbar__brand {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .kino-topbar__logo {
        max-width: 190px !important;
    }

    .kino-topbar__title,
    .kino-topbar__subtitle {
        white-space: normal !important;
    }

    .kino-topbar__menu {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .kino-topbar__menu-item {
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .kino-topbar__menu-link {
        display: block !important;
        width: 100% !important;
        padding: 14px 0 !important;
    }
}

/* ============================================================
   KINO BREADCRUMBS - ciemny pasek pod topbarem
   ============================================================ */

.kino-breadcrumbs {
    margin: 0 !important;
    padding: 0 !important;
    background: #203f43 !important;
    color: #ffffff !important;
}

.kino-breadcrumbs .container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.kino-breadcrumbs .bc {
    margin: 0 !important;
    padding: 0.85rem 0 !important;
    background: transparent !important;
    color: #ffffff !important;
}

.kino-breadcrumbs .bc__list {
    display: flex !important;
    align-items: center !important;
    gap: 0.55rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.kino-breadcrumbs .bc__item {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.kino-breadcrumbs .bc__link,
.kino-breadcrumbs .bc__current,
.kino-breadcrumbs .bc__sep {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

.kino-breadcrumbs .bc__link:hover,
.kino-breadcrumbs .bc__link:focus-visible {
    color: #d7ece7 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

.kino-breadcrumbs .icon {
    width: 1rem !important;
    height: 1rem !important;
    fill: currentColor !important;
}

.kino-breadcrumbs .bc__sep {
    opacity: 0.75 !important;
}

.kino-cms-page .static-page-content img {
    display: inline !important;
    max-width: 100% !important;
    height: auto !important;
}