:root{
    --niebieski: #3f98d7;
    --czerwony: #F44336;
    --zolty: #F9C100;
    --zielony:#4CAF50;
    --ciemnyniebieski : #1e3799;
    --fiolet:#B53471;
    --dynia:#fa8231;
	--teldysk:#AD1111;

}

/* =====================================================
   POPPINS — OCZYSZCZONE @font-face (tylko używane warianty)
   Tylko format woff2 (wspierany przez 97%+ przeglądarek)
   font-display: swap — tekst widoczny od razu
   
   UŻYWANE WARIANTY:
   300 (light)   — nav menu, meta labels
   400 (regular) — body text, treść artykułów
   500 (medium)  — linki w treści, nagłówki h2/h3
   600 (semi)    — article-lead, belki
   700 (bold)    — nagłówki sekcji, linki sidebar
   800 (extra)   — belki dp-strip, h3 treści, band-title
   900 (black)   — h1 tytuł artykułu
   400 italic    — cytat, treść italic
   
   USUNIĘTE (nieużywane):
   100, 100i, 200, 200i, 300i, 500i, 600i, 700i, 800i, 900i
   + wszystkie formaty .eot, .ttf, .svg, .woff
   ===================================================== */

/* 300 — Light */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-300.woff2') format('woff2');
}

/* 400 — Regular */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-regular.woff2') format('woff2');
}

/* 400 Italic */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-italic.woff2') format('woff2');
}

/* 500 — Medium */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-500.woff2') format('woff2');
}

/* 600 — SemiBold */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-600.woff2') format('woff2');
}

/* 700 — Bold */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-700.woff2') format('woff2');
}

/* 800 — ExtraBold */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-800.woff2') format('woff2');
}

/* 900 — Black */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/poppins-v13-latin-ext_latin-900.woff2') format('woff2');
}



.article-lead{
  font-family:'Poppins', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight:600;
  font-size:1.3rem;
  line-height:1.3;
  color:#0b2a3a;
  margin-top:.5rem;
  text-align:left;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border: 2px solid #317baf;
  border-radius: 6px;
  z-index: 99999;
  text-decoration: none;
}

.skip-link:focus{
  left: 12px;
  top: 12px;
}


/* LINK — INK SHIFT */
.tresc a{
  color: #317baf;
  text-decoration: none;
  font-weight: 500;
  transition: color .18s ease, background-color .18s ease;
  padding: 0 .08em;
}

.tresc a:hover{
  color: #0b2a3a;
  background-color: rgba(63,152,215,.12);
}

/* =====================================================
   NEWS — TYPO SYSTEM (POPPINS PREMIUM)
   H1 / H2 / H3 + rytm treści
   ===================================================== */

/* TREŚĆ ARTYKUŁU */
.tresc{
  font-family: 'Poppins', system-ui, sans-serif !important;
  font-size: 17px;              /* desktop */
  line-height: 1.7;
  color: rgba(11,42,58,.92);
}

/* Mobile - WIĘKSZA czcionka dla lepszej czytelności */
@media (max-width: 576px){
  .tresc{
    font-size: 16px;            /* ← ZMIENIONE z 16px na 18px */
    line-height: 1.65;          /* lekko ciaśniej na mobile */
  }
}

/* AKAPITY — oddech */
.tresc p{
  margin-bottom: 1.1em;
}

/* =====================================================
   H1 — TYTUŁ ARTYKUŁU
   ===================================================== */
.tresc h1{
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .2px;
  color: #0b2a3a;
  margin: 6px 0 18px;
}

/* =====================================================
   H2 — SEKCJE
   ===================================================== */
.tresc h2{
  font-size: 23px !important;
  font-weight: 500 !important;
  line-height: 1.35;
  letter-spacing: .3px;
  color: #0b2a3a;
  margin: 28px 0 14px !important;
  position: relative;
  text-align: left !important;
}

/* delikatny akcent redakcyjny pod H2 */
.tresc h2::after{
  content:'';
  display:block;
  width: 42px;
  height: 2px;
  margin-top: 8px;
  background: #3f98d7;
  border-radius: 2px;
}

/* =====================================================
   H3 — PODSEKCJE
   ===================================================== */
.tresc h3{
  font-size: 16.5px !important;
  font-weight: 400 !important;
  line-height: 1.4;
  letter-spacing: .2px;
  color: rgba(11,42,58,.92);
  margin: 22px 0 10px !important;
}

/* =====================================================
   LINKI W TREŚCI — PREMIUM (BEZ UNDERLINE)
   Efekt tylko w akapitach
   ===================================================== */
.tresc p a{
  color: #317baf;
  text-decoration: none;
  font-weight: 500;
  padding: 0 .08em;
  transition: color .18s ease, background-color .18s ease;
}

.tresc p a:hover{
  color: #0b2a3a;
  background-color: rgba(63,152,215,.12);
}

/* Linki w nagłówkach — czyste */
.tresc h1 a,
.tresc h2 a,
.tresc h3 a{
  color: inherit;
  text-decoration: none;
  background: none;
  padding: 0;
  font-weight: inherit;
  transition: color .2s ease;
}

.tresc h1 a:hover,
.tresc h2 a:hover,
.tresc h3 a:hover{
  color: #3f98d7;
}

/* =====================================================
   BLOCKQUOTE — PREMIUM EMPHASIS (NEWS)
   ===================================================== */
.tresc blockquote{
  margin: 30px 0;
  padding: 20px 24px 20px 30px;
  background: linear-gradient(
    180deg,
    rgba(63,152,215,.08),
    rgba(255,255,255,1)
  );
  border-left: 4px solid #3f98d7;
  border-radius: 14px;
  font-family: 'Poppins', system-ui, sans-serif !important;
  color: #0b2a3a;
  position: relative;
}

.tresc blockquote::before{
  content: "“";
  position: absolute;
  top: -18px;
  left: 18px;
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  color: rgba(63,152,215,.22);
}

.tresc blockquote p{
  margin: 0 0 0.9em !important;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.65;
}

.tresc blockquote p:last-child{
  margin-bottom: 0 !important;
}

.tresc blockquote footer{
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,42,58,.55);
}

/* LISTY w treści artykułu - niebieskie kropki/numerki */
.tresc ul,
.tresc ol{
  padding-left: 1.25em;   /* żeby marker miał miejsce */
  margin: 0 0 1.1em;      /* podobnie jak akapit */
}

.tresc li{
  margin: .35em 0;
}

/* kolor punktów i numerów */
.tresc ul li::marker,
.tresc ol li::marker{
  color: #317baf;         /* kolor portalu */
  font-weight: 800;       /* opcjonalnie: czytelniej */
}

/* =====================================================
   MOBILE — delikatne skalowanie
   ===================================================== */
@media (max-width: 576px){
  .tresc h1{ font-size: 28px; }
  .tresc h2{ font-size: 18px !important; }
  .tresc h3{ font-size: 15.5px !important; }
}

/* tylko w akapitach */
.tresc p a{
  color: #317baf;
  text-decoration: none;
  font-weight: 500;
  padding: 0 .08em;
  transition: color .18s ease, background-color .18s ease;
}

.tresc p a:hover{
  color: #0b2a3a;
  background-color: rgba(63,152,215,.12);
}

/* nagłówki — bez efektu tła */
.tresc h1 a,
.tresc h2 a,
.tresc h3 a{
  color: inherit;
  text-decoration: none;
  background: none !important;
  padding: 0;
  font-weight: inherit;
  transition: color .2s ease;
}

.tresc h1 a:hover,
.tresc h2 a:hover,
.tresc h3 a:hover{
  color: #3f98d7;
}


/* =====================================================
   BELKA: Najnowsze Teledyski
   (border-fiolet / bg-fiolet → styl dp-strip)
   ===================================================== */

/* kontener belki */
.border-bottom.border-fiolet{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:12px 0 8px !important;
  border-bottom:1px solid rgba(0,0,0,.05) !important;
  background: transparent !important;
}

/* lewa część – tytuł */
.border-bottom.border-fiolet > .bg-fiolet{
  background: transparent !important;
  color:#0b2a3a !important;

  font-size:14px !important;
  font-weight:800 !important;
  letter-spacing:.4px !important;

  position:relative !important;
  padding:0 0 4px 0 !important;
  margin:0 !important;

  display:inline-flex !important;
  align-items:center !important;
}

/* link w tytule */
.border-bottom.border-fiolet > .bg-fiolet a{
  color:#0b2a3a !important;
  text-decoration:none !important;
}

/* niebieska kreska pod tytułem (jak dp-strip) */
.border-bottom.border-fiolet > .bg-fiolet::after{
  content:'' !important;
  position:absolute !important;
  left:0 !important;
  bottom:0 !important;
  width:56px !important;   /* ta „lekko dłuższa”, którą lubisz */
  height:2px !important;
  background:#3f98d7 !important;
  border-radius:2px !important;
}

/* prawa część – linki */
.border-bottom.border-fiolet > div:not(.bg-fiolet){
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  padding:0 !important;
  margin:0 !important;
  background: transparent !important;
}

/* linki po prawej – styl menu */
.border-bottom.border-fiolet > div:not(.bg-fiolet) a{
  font-size:13px !important;
  font-weight:700 !important;
  color:#7a8a95 !important;
  text-decoration:none !important;
  margin-left:16px !important;
  position:relative !important;
}

/* hover jak w menu */
.border-bottom.border-fiolet > div:not(.bg-fiolet) a:hover{
  color:#3f98d7 !important;
}

/* delikatne underline na hover */
.border-bottom.border-fiolet > div:not(.bg-fiolet) a::after{
  content:'' !important;
  position:absolute !important;
  left:0 !important;
  bottom:-4px !important;
  width:0 !important;
  height:1px !important;
  background:#3f98d7 !important;
  transition:width .2s ease !important;
}

.border-bottom.border-fiolet > div:not(.bg-fiolet) a:hover::after{
  width:100% !important;
}

/* zdejmujemy stare kolory */
.border-bottom.border-fiolet .text-white{
  color:#0b2a3a !important;
}
/* Nie łam tekstów w belkach (Disco Polo w jednej linii) */
.border-bottom.border-fiolet > div:not(.bg-fiolet) a,
.border-bottom.border-dynia > div:not(.bg-dynia) a,
.border-bottom.border-zolty > div:not(.bg-zolty) a{
  white-space: nowrap !important;
}


/* =====================================================
   „Twórz portal razem z nami” – styl redakcyjny, nie button
   ===================================================== */

/* zdejmujemy KAFELKI */
.custom-card{
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 6px 0 !important;
}

/* reset układu wewnętrznego */
.custom-card .row{
  margin: 0 !important;
  align-items: center;
}

/* ikona – jak w menu */
.icon-container{
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin-right: 8px !important;

  color: rgba(11,42,58,.55) !important;
  font-size: 15px !important;
}

/* tekst – redakcyjny link */
.link-text{
  background: transparent !important;
  padding: 0 !important;

  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0b2a3a !important;
  text-decoration: none !important;
  letter-spacing: .2px;
}

/* hover – identyczny feeling jak menu */
.custom-card:hover .link-text{
  color: #3f98d7 !important;
}

.custom-card:hover .icon-container{
  color: #3f98d7 !important;
}

/* usuwamy WSZYSTKIE buttonowe style, jeśli gdzieś są */
.custom-card a{
  border: none !important;
  box-shadow: none !important;
}


/* Belka "Najnowsze artykuły" – ultra clean */
.dp-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0 8px;
  border-bottom:1px solid rgba(0,0,0,.05);
}


.dp-strip-title{
  font-size:14px;
  font-weight:800;
  letter-spacing:.4px;
  color:#0b2a3a;
  position:relative;
  padding-bottom:4px;
}

/* delikatny akcent pod tytułem */
.dp-strip-title::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:56px;
  height:2px;
  background:#3f98d7;
  border-radius:2px;
}
.dp-strip-title::after{
  width:64px;
  height:2px;
  background: linear-gradient(
    90deg,
    #3f98d7 0%,
    #3f98d7 70%,
    rgba(63,152,215,0) 100%
  );
  border-radius:2px;
}


/* linki po prawej – jak menu */
.dp-strip-right a{
  font-size:13px;
  font-weight:700;
  color:#7a8a95;
  text-decoration:none;
  margin-left:16px;
  position:relative;
}

/* hover jak w menu */
.dp-strip-right a:hover{
  color:#3f98d7;
}

.dp-strip-right a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:#3f98d7;
  transition:width .2s ease;
}

.dp-strip-right a:hover::after{
  width:100%;
}


/* =========================
   HERO IMAGE — NEWS MOBILE
   ========================= */

/* MOBILE – foto główne WYRAŹNIE większe */
@media (max-width: 768px){
  .miniatura2{
    margin-left: 0px;
    margin-right: 0px;
  }

  .miniatura2 .foto img{
    width: 100%;
    height: 70vh;          /* ← TO ROBI ROBOTĘ */
    max-height: 520px;     /* zabezpieczenie */
    object-fit: cover;
    border-radius: 0;
  }
}

/* =====================================================
   PREMIUM NAV v3 — FULL REBUILD
   ===================================================== */

body.dp-menu-open{ overflow: hidden; }

/* === GLOBAL OVERFLOW FIX === */
html, body{
  overflow-x: hidden;
  width: 100%;
}

/* === TOP BAR === */
.dp-topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(49,123,175,.10), 0 4px 20px rgba(49,123,175,.05);
}

/* space for fixed topbar so content doesn't hide behind it */
body{
  padding-top: 59px;
}
@media (max-width: 991px){
  body{ padding-top: 53px; }
}

/* animated gradient accent top line */
@keyframes dpGradientFlow{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}
.dp-topbar::before{
  content: “”;
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #1a537a, #317baf, #2eaadc, #60c0e8, #2eaadc, #317baf, #1a537a);
  background-size: 200% 100%;
  animation: dpGradientFlow 6s linear infinite;
}

.dp-topbar-inner{
  display: flex;
  align-items: center;
  height: 56px;
  max-width: 100%;
  box-sizing: border-box;
}

/* === BRAND === */
.dp-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.dp-brand:hover{ text-decoration: none; }

.dp-brand img,
.dp-brand picture img{
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(49,123,175,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.dp-brand:hover img,
.dp-brand:hover picture img{
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 4px 20px rgba(49,123,175,.25);
}

.dp-brand-text{
  display: flex;
  align-items: baseline;
}
.dp-brand-name{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #0b2a3a;
  letter-spacing: -.3px;
  line-height: 1;
}
@keyframes dpDotShimmer{
  0%, 100%{ color: #317baf; }
  50%{ color: #2eaadc; }
}
.dp-brand-dot{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: #317baf;
  animation: dpDotShimmer 3s ease-in-out infinite;
}

/* === DESKTOP NAV (flex, no absolute) === */
.dp-nav{
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin: 0 16px;
}

.dp-nav-list{
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

/* === NAV LINKS === */
.dp-nav-link{
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #3a4f63;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  transition: color .15s, background .2s, transform .2s, box-shadow .2s;
}

/* desktop nav icons — subtle blue accent */
.dp-nav-link > i{
  font-size: 11px;
  color: #317baf;
  opacity: .35;
  transition: opacity .15s, color .15s;
}
.dp-nav-link:hover > i{
  opacity: .85;
  color: #1a537a;
}

.dp-nav-link:hover{
  color: #1a537a;
  background: linear-gradient(135deg, rgba(49,123,175,.06), rgba(46,170,220,.04));
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(49,123,175,.08);
}

/* blue underline on hover — slides in */
.dp-nav-link::after{
  content: “”;
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #317baf, #2eaadc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.dp-nav-link:hover::after{
  transform: scaleX(1);
}

/* === DROPDOWN ARROW === */
.dp-has-dropdown{
  position: relative;
}
.dp-has-dropdown > .dp-nav-link::before{
  content: “”;
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid #9ab;
  margin-left: 4px;
  order: 99;
  transition: transform .2s, border-color .2s;
}
.dp-has-dropdown:hover > .dp-nav-link::before{
  transform: rotate(180deg);
  border-top-color: #317baf;
}

/* === DROPDOWN PANEL === */
.dp-dropdown{
  position: absolute;
  top: calc(100% + 4px);
  left: -6px;
  min-width: 250px;
  padding: 6px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(11,42,58,.12), 0 1px 4px rgba(11,42,58,.03);
  border-left: 3px solid #317baf;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 1050;
}

.dp-dropdown-right{
  left: auto;
  right: -6px;
  border-left: 0;
  border-right: 3px solid #317baf;
}

.dp-has-dropdown:hover > .dp-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* "Inne" dropdown — border po prawej */
.dp-dropdown-right{ border-right-color: #317baf; }

/* --- ELEMENTY DROPDOWN --- */
.dp-drop-item{
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #3a4f63;
  text-decoration: none !important;
  transition: background .12s, color .12s, padding-left .12s;
}

.dp-drop-item:hover{
  background: rgba(49,123,175,.06);
  color: #1a537a;
  padding-left: 18px;
}

/* pierwszy = "Wszystkie" — lekko wyróżniony */
.dp-drop-item:first-child{
  font-weight: 600;
  color: #0b2a3a;
  border-bottom: 1px solid rgba(49,123,175,.06);
  border-radius: 8px 8px 0 0;
  margin-bottom: 2px;
}

/* === SEARCH (pill button) === */
.dp-search-btn{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(49,123,175,.07);
  color: #5a7a90;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background .15s, color .15s, box-shadow .15s;
  border: 1px solid rgba(49,123,175,.08);
}
.dp-search-btn i{
  font-size: 12px;
}
.dp-search-btn::after{
  content: “Szukaj”;
}
@keyframes dpSearchPulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(49,123,175,.0); }
  50%{ box-shadow: 0 0 0 4px rgba(49,123,175,.08); }
}
.dp-search-btn:hover{
  background: linear-gradient(135deg, rgba(49,123,175,.12), rgba(46,170,220,.08));
  color: #1a537a;
  box-shadow: 0 2px 12px rgba(49,123,175,.15);
  animation: dpSearchPulse 1.5s ease infinite;
}

/* === MOBILE RIGHT === */
.dp-mobile-right{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dp-m-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: auto;
  min-width: 36px;
  padding: 4px 6px;
  border-radius: 0;
  background: none;
  color: #5a7a90 !important;
  text-decoration: none !important;
  transition: color .15s;
  flex-shrink: 0;
}
.dp-m-btn i{
  font-size: 17px;
  line-height: 1;
}
.dp-m-btn span{
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .3px;
  text-transform: uppercase;
  line-height: 1;
  opacity: .7;
}
.dp-m-btn:active{
  color: #317baf !important;
}
.dp-m-btn:active span{
  opacity: 1;
}

/* === HAMBURGER === */
.dp-hamburger{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 4px;
}
.dp-hamburger span{
  display: block;
  width: 20px;
  height: 2px;
  background: #3a4f63;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.dp-hamburger.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.dp-hamburger.is-open span:nth-child(2){
  opacity: 0; transform: scaleX(0);
}
.dp-hamburger.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE FULLSCREEN MENU === */
.dp-mobile-menu{
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1020;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s, transform .22s, visibility .22s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.dp-mobile-menu.is-open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dp-mobile-menu-inner{
  padding: 12px 16px 40px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
.dp-mobile-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.dp-mobile-list li a{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2c3e50;
  text-decoration: none !important;
  transition: background .15s, transform .15s, box-shadow .15s;
  position: relative;
}
.dp-mobile-list li a:active{
  background: linear-gradient(135deg, rgba(49,123,175,.08), rgba(46,170,220,.04));
  transform: scale(.97);
}
.dp-mobile-list li a:hover{
  background: rgba(49,123,175,.05);
}

/* blue left bar on tap */
.dp-mobile-list li a::before{
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #317baf;
  opacity: 0;
  transform: scaleY(0);
  transition: opacity .2s, transform .2s;
}
.dp-mobile-list li a:active::before{
  opacity: 1;
  transform: scaleY(1);
}

.dp-mobile-list li a i{
  font-size: 17px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(49,123,175,.07);
  color: #317baf;
  opacity: .7;
  transition: opacity .15s, background .15s;
  flex-shrink: 0;
}
.dp-mobile-list li a:active i{
  opacity: 1;
  background: rgba(49,123,175,.14);
}
.dp-mobile-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49,123,175,.12), transparent);
  margin: 10px 14px;
}
.dp-mobile-divider ~ li a{
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #6a8090 !important;
  padding: 10px 14px !important;
}

/* === MOBILE SUBMENU (accordion) === */
.dp-mobile-has-sub > a{
  position: relative;
}
.dp-chevron{
  font-size: 10px !important;
  margin-left: auto;
  opacity: .4;
  transition: transform .2s ease;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  display: inline !important;
}
.dp-mobile-has-sub.is-expanded .dp-chevron{
  transform: rotate(180deg);
  opacity: .7;
}

.dp-mobile-sub{
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.dp-mobile-has-sub.is-expanded .dp-mobile-sub{
  max-height: 600px;
}

.dp-mobile-sub li a{
  display: block !important;
  padding: 10px 16px 10px 52px !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #5a7a90 !important;
  border-radius: 8px !important;
  gap: 0 !important;
}
.dp-mobile-sub li a::before{
  content: "";
  display: none;
}
.dp-mobile-sub li a i{
  display: none !important;
}
.dp-mobile-sub li a:active{
  background: rgba(49,123,175,.06);
  color: #1a537a !important;
}

/* staggered entrance animation (Y axis — no horizontal overflow) */
@keyframes dpSlideIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
.dp-mobile-menu.is-open .dp-mobile-list li{
  animation: dpSlideIn .25s ease both;
}
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(1){ animation-delay: .03s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(2){ animation-delay: .06s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(3){ animation-delay: .09s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(4){ animation-delay: .12s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(5){ animation-delay: .15s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(6){ animation-delay: .18s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(7){ animation-delay: .21s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(8){ animation-delay: .24s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(9){ animation-delay: .27s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(10){ animation-delay: .30s; }
.dp-mobile-menu.is-open .dp-mobile-list li:nth-child(n+11){ animation-delay: .33s; }

/* === RESPONSIVE === */
@media (max-width: 991px){
  .dp-topbar-inner{ height: 50px; }
  .dp-mobile-menu{ top: 53px; }
  .dp-brand img,
  .dp-brand picture img{
    width: 36px !important; height: 36px !important;
    border-radius: 9px !important;
  }
  .dp-brand-name{ font-size: 16px; }
  .dp-brand-dot{ font-size: 16px; }
}

@media (max-width: 420px){
  .dp-mobile-right{ gap: 4px; }
  .dp-m-btn{ min-width: 32px; padding: 4px 4px; }
  .dp-m-btn i{ font-size: 15px; }
  .dp-m-btn span{ font-size: 7px; }
}

@media (max-width: 360px){
  .dp-brand-name{ font-size: 14px; }
  .dp-brand-dot{ font-size: 14px; }
  .dp-mobile-right{ gap: 2px; }
  .dp-m-btn{ min-width: 28px; padding: 4px 2px; }
  .dp-m-btn i{ font-size: 14px; }
  .dp-m-btn span{ font-size: 7px; letter-spacing: 0; }
  .dp-brand img,
  .dp-brand picture img{
    width: 32px !important; height: 32px !important;
  }
}

@media (max-width: 320px){
  .dp-topbar .container{ padding-left: 8px; padding-right: 8px; }
  .dp-brand-text{ display: none; }
  .dp-m-btn span{ display: none; }
}

/* hide search label on smaller desktops */
@media (max-width: 1200px){
  .dp-search-btn::after{ display: none; }
  .dp-search-btn{ padding: 7px 10px; border-radius: 8px; }
}




/* Breadcrumb: stabilny układ */
.breadcrumb {
  flex-wrap: nowrap;
}

.breadcrumb-item a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 .35rem;
  color: #999;
}

/* OSTATNI element (tytuł) — ucina na każdej rozdzielczości */
.breadcrumb-item:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

.breadcrumb-item:last-child a,
.breadcrumb-item:last-child span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; /* ucina też na desktopie */
}
@media (min-width: 992px) {
  .breadcrumb-item:last-child {
    max-width: 70%;
  }
}


/* ===== Disco-Polo Sidebar: ULTRA LIGHT / MINIMAL / AIRY ===== */
:root{
  --dp: #3f98d7;
  --ink: #0b1220;
  --muted: rgba(11,18,32,.58);
  --hair: rgba(11,18,32,.07);
}

.sidebar-soft{
  display: grid;
  gap: 26px;
  font-family: system-ui, -apple-system, Segoe UI, Poppins, Arial, sans-serif;
}

/* sekcje: brak kart, tylko oddech */
.sb-block{
  padding-top: 2px;
}
.sb-block + .sb-block{
  border-top: 1px solid var(--hair);
  padding-top: 22px;
}

/* nagłówek: lekki, nowoczesny, nie krzyczy */
.sb-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 12px;
}

.sb-head a{
  color: inherit;
  text-decoration: none;
}

.sb-kicker{
  font-size: 12px;
  font-weight: 700;          /* lżej niż 900 */
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* mikro-akcent: maleńka kropka (zamiast grubych pasków) */
.sb-kicker::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dp);
  opacity: .85;
}

.sb-meta{
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

/* GRID: delikatnie, bez ciężkich ramek */
.sb-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px 14px;
}

.sb-item{
  display:grid;
  gap: 7px;
}

/* miniatura: bez obrysu, bez cienia; tylko subtelny hover */
.sb-thumb{
  aspect-ratio: 315 / 227;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(63,152,215,.08);
}

.sb-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1);
  transition: transform .22s ease;
}

.sb-thumb:hover img{
  transform: scale(1.02);
}

/* tytuł: miękki, nie „bold na maksa” */
.sb-link{
  font-size: 13px;
  font-weight: 650;
  line-height: 1.28;
  color: var(--ink);
  text-decoration: none;
}

.sb-link:hover{
  color: rgba(63,152,215,.95);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* SOCIAL: ultra lekkie ikonki (bez pigułek) */
.sb-social{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  padding-top: 2px;
}

.sb-social a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: var(--muted);
  text-decoration:none;
  font-size: 12px;
  font-weight: 650;
  transition: color .15s ease;
}

.sb-social a:hover{
  color: var(--dp);
}

.sb-social i, .sb-social svg{
  width: 18px;
  height: 18px;
  opacity: .85;
}

/* desktop sticky */
@media (min-width: 992px){
  .sidebar-sticky{
    position: sticky;
    top: 14px;
  }
}

/* MOBILE: zamiast kafelków -> lista (mega delikatna i nowoczesna) */
@media (max-width: 576px){
  .sb-grid{ grid-template-columns: 1fr; }
  .sb-thumb{ display:none; }              /* na mobile tylko tytuły */
  .sb-item{ gap: 6px; }
}



.news-cat{
  margin-top: 8px;
}

/* Delikatny chip – neutralny */
.cat-chip{
  display:inline-flex;
  align-items:center;

  padding: 5px 10px;
  border-radius: 999px;

  font-size: 9px;
  font-weight: 400;

  color:#64748b;               /* slate-500 */
  background:#f8fafc;          /* bardzo jasne tło */
  border: 1px solid #e5e7eb;   /* jasna obwódka */

  text-decoration:none;
}

/* minimalny hover – opcjonalny */
.cat-chip:hover{
  background:#f1f5f9;
}


/* ===== BREADCRUMBS – SUBTELNE, REDAKCYJNE ===== */

.breadcrumb{
  background: transparent !important;
  padding: 0 !important;
  margin: 8px 0 14px !important;
  font-size: 9.5px;
  color: #64748b !important;
}

.breadcrumb-item{
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.breadcrumb-item:first-child{
  margin-left: 0 !important;
}

.breadcrumb-item + .breadcrumb-item::before{
  content: "››";
  letter-spacing: -2px;
  color: #64748b;
  padding: 0 8px;
  font-weight: 600;
}

.breadcrumb-item a{
  color: #64748b !important;
  text-decoration: none !important;
}

.breadcrumb-item a:hover{
  text-decoration: underline !important;
  color: #0f172a !important;
}

.breadcrumb-item.active span{
  color: #0f172a !important;
  font-weight: 400;
}

/* Breadcrumbs wysunięte lekko w lewo względem treści */
.breadcrumb{
  margin-left: -10px !important; /* zmień na -8/-12 jeśli trzeba */
}
/* Breadcrumbs: jedna linia na mobile + ucięcie */
@media (max-width: 576px){
  .breadcrumb{
    flex-wrap: nowrap !important;
    overflow: hidden;
    white-space: nowrap;
  }

  .breadcrumb-item{
    flex: 0 0 auto;
  }

  /* ostatni element (tytuł) ucinamy */
  .breadcrumb-item.active{
    min-width: 0;
    flex: 1 1 auto;
  }

  .breadcrumb-item.active span{
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
  }
}




.title-highlight {
    color: #317baf !important; /* Kolor portalu */
    font-weight: bold;
    font-size: 1.2em; /* Delikatnie większy rozmiar czcionki */
    position: relative;
    transition: color 0.3s ease;
}

/* Efekt przy najechaniu */
.title-highlight:hover {
    color: #1f5a8a !important; /* Ciemniejszy odcień przy najechaniu */
}

/* Podkreślenie przy najechaniu */
.title-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #317baf;
    left: 0;
    bottom: -2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.title-highlight:hover::after {
    transform: scaleX(1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(49, 123, 175, 0.9); /* Główny kolor przycisku */
    border-radius: 50%; /* Okrągły kształt */
    box-shadow: 0 0 0 rgba(49, 123, 175, 0.7); /* Początkowy cień */
    animation: pulse 2s infinite; /* Animacja pulsowania */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Pulsująca animacja */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(49, 123, 175, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(49, 123, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(49, 123, 175, 0);
    }
}

/* Zmiana koloru przy najechaniu */
.play-button:hover {
    background-color: #1f5a8a;
}








/* =====================================================
   LISTA PRZEBOJÓW — PREMIUM CHART
   ===================================================== */

.dp-chart{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dp-chart-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  background: #fff;
  transition: background .15s, transform .15s, box-shadow .15s;
  text-decoration: none !important;
  position: relative;
}
.dp-chart-item:hover{
  background: rgba(49,123,175,.04);
  transform: translateX(3px);
  box-shadow: 0 2px 12px rgba(49,123,175,.08);
}

/* --- NUMER POZYCJI — wszyscy niebieski --- */
.dp-chart-pos{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  border-radius: 8px;
  background: #317baf;
}

/* --- MINIATURA — proporcje 16:9 --- */
.dp-chart-thumb{
  flex-shrink: 0;
  width: 96px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.dp-chart-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease;
}
.dp-chart-item:hover .dp-chart-thumb img{
  transform: scale(1.08);
}

/* play overlay na hover */
.dp-chart-thumb::after{
  content: "\f04b";
  font-family: FontAwesome;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity .15s;
}
.dp-chart-item:hover .dp-chart-thumb::after{
  opacity: 1;
}

/* --- TYTUŁ --- */
.dp-chart-title{
  flex: 1;
  min-width: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}
.dp-chart-item:hover .dp-chart-title{
  color: #317baf;
}

/* separator subtelny */
.dp-chart-item + .dp-chart-item{
  border-top: 1px solid rgba(49,123,175,.04);
}

/* STARY FALLBACK — gdyby gdzieś zostały stare klasy */
.list-item { display: none; }
.thumbnail img { width: 200px; height: auto; border-radius: 5px; }
.position-number { font-size: 1rem; font-weight: bold; color: #888; }
.title-link { font-size: 0.9rem; font-weight: 500; color: #333; text-decoration: none; }
.title-link:hover { color: #317baf; }





/* =====================================================
   POLECANE TELEDYSKI — PROMO SECTION
   ===================================================== */

.dp-promo-section{
  margin: 20px 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(49,123,175,.03), #fff);
  border: 1px solid rgba(49,123,175,.08);
  padding: 16px;
}

.dp-promo-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dp-promo-header__title{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0b2a3a;
}
.dp-promo-header__title i{
  color: #e53935;
  margin-right: 6px;
}
.dp-promo-header__badge{
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #5a7a90;
  background: rgba(49,123,175,.08);
  padding: 3px 10px;
  border-radius: 20px;
}

/* grid: 2 kolumny na mobile, 4 na desktop */
.dp-promo-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px){
  .dp-promo-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

/* pojedyncza karta */
.dp-promo-card{
  display: block;
  text-decoration: none !important;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(49,123,175,.06);
  transition: transform .2s, box-shadow .2s;
}
.dp-promo-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(49,123,175,.12);
}

/* miniatura */
.dp-promo-card__thumb{
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eef3f7;
}
.dp-promo-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.dp-promo-card:hover .dp-promo-card__thumb img{
  transform: scale(1.06);
}

/* play button overlay */
.dp-promo-card__play{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.2);
  opacity: 0;
  transition: opacity .2s;
}
.dp-promo-card:hover .dp-promo-card__play{
  opacity: 1;
}
.dp-promo-card__play i{
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.95);
  color: #e53935;
  font-size: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  padding-left: 2px;
}

/* tytuł */
.dp-promo-card__title{
  padding: 10px 10px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}
.dp-promo-card:hover .dp-promo-card__title{
  color: #317baf;
}

  /* social  */


.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.social-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Kolory tła dla okręgów społecznościowych oraz efekt najechania */
.facebook-circle {
    background-color: #3b5998;
}

.facebook-circle:hover {
    color: #d0d8f0;
}

.instagram-circle {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.instagram-circle:hover {
    color: #ffe5d2;
}

.tiktok-circle {
    background-color: #010101;
}

.tiktok-circle:hover {
    color: #ff0050;
}

.youtube-circle {
    background-color: #FF0000;
}

.youtube-circle:hover {
    color: #ffb3b3;
}

.x-circle {
    background-color: #1DA1F2;
}

.x-circle:hover {
    color: #a6ddff;
}






  /* add buttony */
  
  

.custom-card {
    background-color: #317baf;
    border-radius: 8px;
    transition: transform 0.2s ease;
    padding: 10px;
}

.custom-card:hover {
    transform: scale(1.02);
}

.icon-container {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    width: 40px;
}

.text-container {
    padding-left: 10px;
}

.link-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    padding: 5px 0;
}

.link-text:hover {
    color: #e6f0f5;
}


   /* Efekt hover dla kontenera banerów */
    .baner-container:hover {
        transform: scale(1.05);
    }
	
    .tags-container {
        margin-top: 10px;
    }

    .tags-heading {
        font-size: 1rem;
        color: #333;
        font-weight: bold;
        margin-bottom: 0.5rem;
        display: block;
    }

    .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .tag-item {
        background-color: #fafafa;
        color: #666;
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        border-radius: 12px;
        text-decoration: none;
        border: 1px solid #e0e0e0;
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .tag-item:hover {
        background-color: #e8f2f8;
        color: #317baf;
        border-color: #b0d4e8;
    }

    .tag-item:active {
        background-color: #d4e6f0;
        color: #255a87;
        border-color: #9bb9c6;
    }

    @media (max-width: 768px) {
        .tag-item {
            font-size: 0.8rem;
            padding: 0.3rem 0.7rem;
        }
    }

.article-title {
    font-weight: bold;
    font-size: 1.7rem;
    color: #343a40;
    margin-top: 1.4rem;
}

.niebieski-text {
    color: #317baf; /* Przykładowy kolor niebieski */
    text-decoration: none; /* Brak podkreślenia domyślnie */
}

.link-hover {
    transition: color 0.3s ease; /* Płynna zmiana koloru */
}

.link-hover:hover {
    text-decoration: underline; /* Podkreślenie na hover */
    color: #6a1b9a; /* Zmiana koloru na hover */
}


#ad-header{
background: #ffffff!important;

min-height: 356px; 

}

#ad-headerteledysk {
 aspect-ratio: 16 / 9;  /* Możesz zmienić proporcję w zależności od reklam */
    width: 100%;
    background: #fff; /* Zastępczy kolor tła */
}
}


#ad-headerarticle{
background: #ffffff!important;

min-height: 300px; 

}

#ad-header2{
background: #ffffff!important;
margin-top: 15px!important;
margin-bottom: 15px!important;
min-height: 336px; 

}

#ad-header3{
background: #ffffff!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
min-height: 336px;
}

#ad-header4{
background: #ffffff!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
min-height: 120px;
}
#ad-headeryt{
background: #ffffff!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
min-height: 300px;
}
#ad-header5{
background: #ffffff!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
min-height: 310px;
}

#ad-headerelastyczna{
background: #ffffff!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
min-height: 395px; 

}

#ad-headernowe1{
background: #ffffff!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
min-height: 100px; 

}
#ad-headernowe2{
background: #ffffff!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
min-height: 610px; 

}

/* Styl dla wszystkich bloków Instagrama */
blockquote.instagram-media {
    max-width: 540px; /* Maksymalna szerokość embeda; można dostosować */
    margin: auto; /* Centruje embed na stronie */
    border: none; /* Usuwa obramowanie */
    box-shadow: none; /* Usuwa cień */
    overflow: hidden; /* Zapobiega wyciekom treści poza embed */
}

/* Styl dla embed Instagrama na małych ekranach */
@media screen and (max-width: 540px) {
    blockquote.instagram-media {
        max-width: 100%; /* Na małych ekranach embed zajmuje całą dostępną szerokość */
        margin: 0; /* Usuwa marginesy na małych ekranach */
    }
}

@media only screen and (min-width:600px) {
.hideadsheader {
display: none
 }
}

@media only screen and (max-width:650px) {
.hideadsheader1 {
display: none
 }
}


.yy img{max-width: 100%!important;}
.highcontrast{
background: #000!important;
color: #fff!important;
border-color: #000!important;
}

.highcontrast:hover{color: #3f98d7!important;}

.instaframe{
width: 90%;
height: 650px;


}

.sekcja-optymalizowana {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}


/* Changing placeholder color of search box */

#gsc-i-id1::-webkit-input-placeholder
{ 
    /* Chrome */
    color: #666666;
}

#gsc-i-id1:-ms-input-placeholder
{ 
    /* IE 10+ */
   color: #666666;
}

#gsc-i-id1::-moz-placeholder
{ 
    /* Firefox 19+ */
   color: #666666;
    opacity: 1;
}

#gsc-i-id1:-moz-placeholder
{ 
    /* Firefox 4 - 18 */
    color: #666666;
    opacity: 1;
}

#search-box
{
    width:300px!important;
    height:33px;
    margin:0 auto;
background: red;
    border-radius: 2px;
   
		padding-bottom: 25px!important;
}

button.gsc-search-button
{
    border-left: 1px solid #3f98d7 !important;
    background-color:#3f98d7 !important;
}

#gsc-i-id1
{
   color: #666666;
}
@media screen and (min-widht: 40em) { #ad-header { min-height: 200px; } }

/** kolory glowne **/
body{font-family: 'Poppins';
  font-display: swap; margin-top:0px!important;}
.czarnytxt{color: #000;}
.czarnybg{background: #317baf;}
.niebieski-text{color: #317baf;}
.niebieski-bg{background: #317baf;}
.border-niebieski{border-color: #3f98d7!important;}
.czerwony-bg{background: #317baf;}
.border-zolty{border-color: #317baf !important}
.bg-zolty{background: #317baf !important;}
.border-zielony{border-color: #317baf!important}
.bg-zielony{background: #317baf !important;}
.hover-zolty:hover{color: var(--zolty)!important;}
.bg-gradient{background: #317baf ;}
.text-ciemyniebieski{color: var(--ciemnyniebieski)!important;}
.text-fiolet{color: var(--fiolet)!important;}
.bg-fiolet{background: #317baf !important;}
.border-fiolet{border-color: #317baf! important;}
.text-dynia{color: var(--dynia)!important;}
.bg-dynia{background: #317baf!important;}
.border-dynia{border-color: #317baf!important;}
.bg-twitter{background: #317baf;}
.bg-facebook{background: #317baf;}
.bg-czerwony{background:#317baf;}

.m-11:hover{text-decoration: none!important;}
.m-1:hover{text-decoration: none!important;}
    .bg-gradient:hover{background: rgb(2,0,36);
        background: linear-gradient(90deg, rgba(2,0,36,1) 100%,  rgba(0,212,255,1) 0%);}

/**rozmiary czcionek **/
.h7{font-size: 0.9em;}
.h8{font-size: 0.8em;}
.font6{font-size: 0.6em;}
.font8{font-size: 0.8em;}
.font7{font-size: 0.7em;}
.lineh-1{line-height: 20px;}
.lineh-2{line-height: 25px;}
.lineh-3{line-height: 30px;}
.teds-playbtn.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px!important;
     color: red !important;
}
.teds-playbtn.play {
    color: red !important;
}
}
/**border rozmiary**/
.border1{border-width: 1px!important;}
.border2{border-width: 2px!important;}
.border3{border-width: 3px!important;}
.border4{border-width: 4px!important;}
.border5{border-width: 5px!important;}
iframe{margin:auto!important; max-width: 100%!important;}
.tresc h2{font-size: 20px!important; margin-top: 15px!important; margin-bottom: 15px!important; text-transform: uppercase;}
.tresc img{max-width: 99%!important; height:auto!important;}
.galeria img{max-width: 99%!important; height:auto!important;}
.galeria picture{max-width: 99%!important; height:auto!important;}
.social:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.social {
  -webkit-transform: scale(0.8);
  /* Browser Variations: */
  
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}
.tresc h3{
  font-size: 17px !important;
  margin-top: 14px !important;
  margin-bottom: 10px !important;
  font-weight: 800 !important;
  /* opcjonalnie */
  /* text-transform: uppercase; */
}

/*
 Multicoloured Hover Variations
*/

#social-fb:hover {
  color:#3f98d7;
}
#social-tw:hover {
  color: #3f98d7;
}
#social-gp:hover {
  color: #3f98d7;
}
#social-em:hover {
  color: #3f98d7;
}
/* nawigacja */
.nav-item a:hover{color: RGBA(255,255,255,0.6)!important;}
.dropdown-menu{background: #50aaeb!important;}
.dropdown-menu li{color: #fff;}
.dropli:hover{background: var(--niebieski)!important;}
.dropdown-menu li a{color: #fff!important;}
.dropli:hover a{color: var(--niebieski)!important;}
.navbar-toggler-icon {color: var(--niebieski)!important;}

.MultiCarousel { float: left; overflow: hidden; padding: 15px; width: 100%; position:relative; }
    .MultiCarousel .MultiCarousel-inner { transition: 1s ease all; float: left; }
        .MultiCarousel .MultiCarousel-inner .item { float: left;}
        .MultiCarousel .MultiCarousel-inner .item > div { text-align: center; padding:10px; margin:10px; }
    .MultiCarousel .leftLst, .MultiCarousel .rightLst { position:absolute; border-radius:50%;top:calc(50% - 20px); }
    .MultiCarousel .leftLst { left:0; }
    .MultiCarousel .rightLst { right:0; }
    
        .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { pointer-events: none; background:#ccc; }
.miniatura{
    position: relative;
    display: block;
      position: relative;
      height: 0;
      padding: 70% 0 0 0;
      overflow: hidden;
        border: 1px solid #efefef;
    }
    
    
    
    .miniatura .foto img{
    position: absolute;
      display: block;
      width: 100%;
      height: auto;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
        
    
    }

    .miniatura3{
        position: relative;
        display: block;
          position: relative;
          height: 0;
          padding: 98% 0 0 0;
          overflow: hidden;
            border: 1px solid #efefef;
        }
        
        
        
        .miniatura3 .foto img{
        position: absolute;
          display: block;
          width: 100%;
          height: auto;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
            
        
        }
        
    .miniatura2{
        position: relative;
        display: block;
          position: relative;
          height: 0;
          padding: 56% 0 0 0;
          overflow: hidden;
            border: 1px solid #efefef;
        }
        
        
        
        .miniatura2 .foto img{
        position: absolute;
          display: block;
          width: 100%;
          height: auto;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
        }

        .rowBox{display:flex;flex-flow:row;}.rowBox .boxFoto{flex:0 0 315px;}.rowBox .boxCont{flex:1; padding-left: 12px}
        .rowBox .boxCont p {font-size: 0.9rem;} @media screen and (max-width: 768px) {.rowBox {flex-flow: column;}}

    .b-0 {
        bottom: 0;
    }
    .bg-shadow {
        background: rgba(76, 76, 76, 0);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(179, 171, 171, 0)), color-stop(49%, rgba(48, 48, 48, 0.37)), color-stop(100%, rgba(19, 19, 19, 0.8)));
        background: linear-gradient(to bottom, rgba(179, 171, 171, 0) 0%, rgba(48, 48, 48, 0.71) 49%, rgba(19, 19, 19, 0.8) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 );
    }
    .top-indicator {
        right: 0;
        top: 1rem;
        bottom: inherit;
        left: inherit;
        margin-right: 1rem;
    }
    .overflow {
        position: relative;
        overflow: hidden;
    }
    .zoom img {
        transition: all 0.2s linear;
    }
    .zoom:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .dzial{position: absolute; right: 0px; bottom: 0px; background: RGBA(0,0,0,0,7)!important; font-size: 0.6em;}
    .opacity:hover{opacity: 0.8;}

    .tytul{position: absolute; width: 100%; bottom: 0; left: 0; background: rgba(76, 76, 76, 0);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(179, 171, 171, 0)), color-stop(49%, rgba(48, 48, 48, 0.37)), color-stop(100%, rgba(19, 19, 19, 0.8)));
        background: linear-gradient(to bottom, rgba(179, 171, 171, 0) 0%, rgba(48, 48, 48, 0.71) 49%, rgba(19, 19, 19, 0.8) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 );
    z-index: 10;
    }
    .nolist{list-style-type:none;}
    .hoverlight:hover{background: #F8F9FA!important;}





.przycinaj{text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;}
  
.pagination {flex-wrap:wrap;row-gap:12px;}

  @media all and (min-width:991px) {  
    .dropdown:after{
        content: ''; 
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: opacity .15s ease-in-out;
        opacity: 0;
        visibility:hidden;
        background-color: rgba(0,0,0,.7);
        pointer-events: none;
    }
    .dropdown.show .nav-link{
      position:relative;
      z-index:12;
    }
    .dropdown.show:after{
      z-index:10; opacity:1; 
      visibility:visible;
      position: fixed;
    }
  }

  @media all and (max-width:800px) {  
   .my-11{
      font-size: 11px!important;


   }

   .my-1{
    font-size: 15px!important;


 }
  }


/* Breadcrumbs: bez "chipów", zero paddingów na linkach */
.breadcrumb-item a{
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* I jeszcze pewność, że OL nie ma wcięcia */
ol.breadcrumb{
  padding-left: 0 !important;
  padding-inline-start: 0 !important;
  margin-left: 0 !important;
  margin-inline-start: 0 !important;
}

/* =====================================================
   ZESPOŁY – karta (SAFE, nie rusza sidebaru)
   ===================================================== */

.band-card{
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color .2s ease, background .2s ease !important;
}

.band-card:hover{
  border-color: rgba(63,152,215,.35) !important;
  background: rgba(63,152,215,.03) !important;
}

/* zdjęcie – spokojniejsze, bez zoomów */
.band-card img{
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  transition: none !important;
  transform: none !important;
  display: block !important;
}

/* body */
.band-card .card-body{
  padding: 12px 10px 14px !important;
}

/* tytuł zespołu */
.band-title{
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: .3px !important;
  margin: 0 !important;
}

.band-title a{
  color: #0b2a3a !important;
  text-decoration: none !important;
}

.band-card:hover .band-title a{
  color: #3f98d7 !important;
}

/* NIE rób globalnego resetu na * (to bywa ryzykowne) */
.band-card *{
  box-shadow: none !important;
}

/* mobile */
@media (max-width: 576px){
  .band-card img{ height: 220px !important; }
  .band-title{ font-size: 14px !important; }
}


/* =====================================================
   ZESPÓŁ: nagłówek premium + akcent (SAFE)
   ===================================================== */

h1.h2{
  font-weight: 900 !important;
  letter-spacing: .3px !important;
  color: #0b2a3a !important;
  margin-top: 4px !important;
  position: relative !important;
  padding-bottom: 10px !important;
}

h1.h2 + hr{ display: none !important; }

h1.h2::after{
  content:'' !important;
  position:absolute !important;
  left:0 !important;
  bottom:0 !important;
  width:56px !important;
  height:2px !important;
  background:#3f98d7 !important;
  border-radius:2px !important;
}

/* opis zespołu */
.font-weight-normal.h6{
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: rgba(11,42,58,.92) !important;
}

/* nagłówki sekcji w treści */
.font-weight-normal.h6 h2{
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .25px !important;
  margin: 16px 0 8px !important;
}


/* =====================================================
   ZESPÓŁ: zdjęcie – spokojne, premium (SAFE)
   ===================================================== */

.miniatura2 .foto{
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.miniatura2 .foto img{
  width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  object-fit: cover !important;
  display: block !important;
}

/* wyłącz “toperne” efekty hover – ale TYLKO dla tych elementów */
.zoom img{ transform: none !important; }
.shadow-hover{ box-shadow: none !important; }


/* =====================================================
   ZESPÓŁ: listing news/teledysków – SAFE (tylko CONTENT, nie sidebar)
   WARUNEK: działa tylko w kolumnie contentu .col-lg-8
   ===================================================== */

/* kafel */
.col-lg-8 .col-12.col-lg-4.mb-2{
  margin-bottom: 18px !important;
}

/* miniatura */
.col-lg-8 .col-12.col-lg-4 .miniatura2 .foto{
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

/* obrazki w listingach */
.col-lg-8 .col-12.col-lg-4 .miniatura2 img{
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  display:block !important;
}

/* tytuł – 2 linie max */
.col-lg-8 .col-12.col-lg-4 h3.h6{
  font-weight: 500 !important;
  letter-spacing: .2px !important;
  margin: 10px 0 6px !important;
  line-height: 1.35 !important;
}

.col-lg-8 .col-12.col-lg-4 h3.h6 > a{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;

  text-decoration: none !important;
  color: #0b2a3a !important;
}

.col-lg-8 .col-12.col-lg-4 h3.h6 > a:hover{
  color: #3f98d7 !important;
  text-decoration: none !important;
}

/* data */
.col-lg-8 .col-12.col-lg-4 p.small{
  margin-top: 6px !important;
  color: rgba(11,42,58,.55) !important;
  background: transparent !important;
}

/* =====================================================
   BELKI dp-strip – premium tytuł (globalnie OK)
   ===================================================== */

.dp-strip-title{
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color:#0b2a3a !important;
}

.dp-strip-title::after{
  bottom:-2px !important;
  width:100px !important;
}
/* =====================================================
   LISTA ZESPOŁÓW – 4 w linii (SAFE, działa nawet z wrapperami)
   ===================================================== */

@media (min-width: 1200px){
  /* łapie zarówno bezpośrednie col, jak i col w środku wrapperów */
  .bands-grid .col-md-4{
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

@media (max-width: 767px){
  .bands-grid .col-md-4{
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
/* =====================================================
   ZESPOŁY – bardziej kwadratowe karty (SAFE)
   ===================================================== */

/* zdjęcie zespołu – mniej pionowe */
.band-card img{
  height: 190px !important;   /* było ~260 */
  object-fit: cover !important;
}

/* ciało karty – delikatnie ciaśniej */
.band-card .card-body{
  padding: 10px 8px 12px !important;
}

/* tytuł – kompaktowo */
.band-title{
  font-size: 14px !important;
  line-height: 1.25 !important;
}

/* mobile – jeszcze niżej */
@media (max-width: 576px){
  .band-card img{
    height: 160px !important;
  }
}
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-v13-latin-ext_latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =====================================================
   CONCERT – editorial premium (Apple / NYT style)
   ===================================================== */

.concert-editorial{
  margin: 18px 0;
}

.concert-editorial__link{
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 16px;
  background: rgba(11,42,58,.02);
  border-left: 3px solid rgba(63,152,215,.35);

  text-decoration: none;
  color: #0b2a3a;

  transition: background .25s ease, border-color .25s ease;
}

/* ikona */
.concert-editorial__icon img{
  width: 22px;
  height: 22px;
  opacity: .85;
}

/* tekst */
.concert-editorial__content{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* mała etykieta (editorial) */
.concert-editorial__label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,42,58,.55);
}

/* główny tekst */
.concert-editorial__title{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.35;
}

/* hover – jak w menu */
.concert-editorial__link:hover{
  background: rgba(63,152,215,.04);
  border-left-color: #3f98d7;
}

.concert-editorial__link:hover .concert-editorial__title{
  color:#3f98d7;
}

/* mobile */
@media (max-width: 576px){
  .concert-editorial__link{
    padding: 12px 14px;
  }
}

/* =====================================================
   META BAR – autor/data + social (premium, subtelnie)
   ===================================================== */

.meta-bar{
  display:flex;
  justify-content:space-between;
  gap:16px;

  padding: 12px 0;
  margin: 16px 0 20px;

  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.meta-bar__left{
  font-size: 10.5px;
  line-height: 1.55;
  color: rgba(11,42,58,.88);
}

.meta-bar__label{
  color: rgba(11,42,58,.55);
  font-weight: 300;
}

.meta-bar__author{
  color: #317baf;
  text-decoration: none;
}

.meta-bar__author:hover{
  color:#3f98d7;
}

/* ikony social */
.meta-bar__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
}

.meta-bar__right a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width: 34px;
  height: 34px;
  border-radius: 10px;

  background: rgba(11,42,58,.03);
  transition: background .2s ease, transform .2s ease;
}

.meta-bar__right img{
  width: 18px;
  height: 18px;
  opacity: .88;
  transition: opacity .2s ease;
}

.meta-bar__right a:hover{
  background: rgba(63,152,215,.08);
  transform: translateY(-1px);
}

.meta-bar__right a:hover img{
  opacity: 1;
}

/* mobile: social pod spodem, równo */
@media (max-width: 576px){
  .meta-bar{
    flex-direction: column;
    align-items: flex-start;
  }
  .meta-bar__right{
    gap: 12px;
    margin-top: 6px;
  }
}
/* etykieta "Obserwuj nas" – cicha, editorial */
.meta-bar__follow{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,42,58,.45);
  margin-right: 6px;
  white-space: nowrap;
}

/* =====================================================
   FOLLOW – editorial underline (premium, spokojniej)
   ===================================================== */

.follow-premium{
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* całość jak link redakcyjny */
.follow-premium__item{
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 14px;
  align-items: center;

  padding: 12px 0;
  text-decoration: none;
  color: #0b2a3a;

  border-bottom: 1px solid rgba(0,0,0,.06);
  background: transparent;

  transition: border-color .2s ease;
}

/* ikona */
.follow-premium__icon{
  width: 20px;
  height: 20px;
  opacity: .85;
}

/* treść */
.follow-premium__content{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.follow-premium__label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,42,58,.55);
}

.follow-premium__title{
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.35;
}

.follow-premium__hint{
  font-size: 12.5px;
  color: rgba(11,42,58,.6);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA jako tekst */
.follow-premium__cta{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;

  color: rgba(11,42,58,.55);
  white-space: nowrap;

  transition: color .2s ease, transform .2s ease;
}

/* hover – bardzo editorial */
.follow-premium__item:hover{
  border-bottom-color: #3f98d7;
}

.follow-premium__item:hover .follow-premium__title{
  color: #3f98d7;
}

.follow-premium__item:hover .follow-premium__cta{
  color: #3f98d7;
  transform: translateX(3px);
}

/* mobile */
@media (max-width: 576px){
  .follow-premium__item{
    grid-template-columns: 22px 1fr;
  }
  .follow-premium__cta{
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  .follow-premium__hint{
    white-space: normal;
  }
}
/* =====================================================
   MINI LISTA (sidebar/box) – premium jak menu/belki
   ===================================================== */

.dp-mini-list{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.dp-mini-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.dp-mini-list li:last-child{
  border-bottom: 0;
}

.dp-mini-list .fa{
  margin-top: 2px;
  font-size: 11px;
  color: rgba(63,152,215,.9);
  opacity: .9;
}

.dp-mini-list a{
  color: #0b2a3a;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;

  /* 2 linie max, bez “toporności” */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.dp-mini-list a:hover{
  color: #3f98d7;
}
/* =====================================================
   DP MINI LIST – premium pod zdjęciem (dla <ol class="dp-mini-list">)
   ===================================================== */

.dp-mini-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 10px;
}

.dp-mini-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
}

.dp-mini-list .fa{
  margin-top: 3px;
  font-size: 11px;
  color: rgba(63,152,215,.9);
  flex: 0 0 auto;
}

.dp-mini-list a{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #0b2a3a;
  text-decoration: none;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.dp-mini-list a:hover{
  color:#3f98d7;
  text-decoration: none;
}
.dp-mini-list li:hover a{
  color:#3f98d7;
}/* =====================================================
   DP MINI LIST – bez szarej linii, ciaśniej (premium)
   ===================================================== */

.dp-mini-list{
  border-top: none !important;   /* usuń szarą linię */
  margin-top: 8px !important;    /* było ~14 */
  padding-top: 4px !important;   /* było ~10 */
}

/* DETAILS — wymuszenie identycznego wyglądu (jak artykuły) */
details.dp-details > summary {
  list-style: none !important;              /* usuń native marker */
  cursor: pointer !important;
  display: flex !important;                 /* centrowanie 100% */
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  width: 100% !important;
  padding: 6px 0 !important;
}

/* Chrome/Safari: usuń marker */
details.dp-details > summary::-webkit-details-marker {
  display: none !important;
}

/* Firefox: usuń marker */
details.dp-details > summary::marker {
  content: "" !important;
}

/* Własny „trójkąt” jak w UI */
details.dp-details > summary::before {
  content: "▼";
  color: #6c757d;                           /* bootstrap text-muted */
  font-size: 0.9em;
  line-height: 1;
  transform: translateY(-1px);
}

/* Po otwarciu */
details.dp-details[open] > summary::before {
  content: "▲";
}

/* Linki wewnątrz (żeby zawsze były niebieskie jak w artykułach) */
details.dp-details a {
  color: #0d6efd !important;
  text-decoration: none;
}
details.dp-details a:hover {
  text-decoration: underline;
}

/* ===== ZESPÓŁ – delikatny efekt hover / click ===== */

.band-main-photo {
  overflow: hidden;
}

.band-photo-link {
  display: block;
  position: relative;
}

.band-photo-link img {
  display: block;
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* hover – lekkie powiększenie + miękki cień */
.band-photo-link:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* klik – subtelne „wciśnięcie” */
.band-photo-link:active img {
  transform: scale(0.99);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ===== TOP20 ultra light ===== */

.top20-rankbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:6px 0 6px;
}

/* zero tła, zero borderów, zero „badge” */
.top20-chip{
  display:inline-flex;
  align-items:center;
  padding:0;
  background:transparent;
  border:0;
}

/* sam numer jako metadana */
.top20-rank{
  font-size:16px;
  font-weight:700;
  letter-spacing:.15px;
  color:rgba(11,42,58,.45);
  line-height:1;
}

/* #1–#3 tylko minimalnie ciemniejsze (prawie niewidoczne) */
.top20-chip.is-1 .top20-rank{ color:rgba(11,42,58,.60); }
.top20-chip.is-2 .top20-rank{ color:rgba(11,42,58,.54); }
.top20-chip.is-3 .top20-rank{ color:rgba(11,42,58,.50); }

/* meta po prawej – tak samo lekko */
.top20-meta{
  font-size:12px;
  color:rgba(11,42,58,.35);
  white-space:nowrap;
}

@media (max-width: 991px){
  .top20-meta{ display:none; }
}
.instagram-media {
  max-width: 540px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 12px auto !important;
}
.tresc { overflow: visible !important; }



.tags-container{
  margin-bottom: 14px;
}

.dp-article-body{ width:100%; }

/* FB video/reels wrapper */
.dp-fb-video{
  width: 100% !important;
  max-width: 100% !important;
  margin: 14px 0 !important;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.dp-fb-video__inner{
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  margin: 0 !important;
}

.dp-fb-video__inner iframe{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
}

/* awaryjnie: wszystkie iframe w treści mają być responsywne */
.tresc iframe{
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
}
.dp-fb-video{width:100%;max-width:100%;margin:16px 0;}
.dp-fb-video__inner{position:relative;width:100%;height:0;overflow:hidden;}
.dp-fb-video__inner iframe{
  position:absolute;top:0;left:0;
  width:100% !important;height:100% !important;
  border:0;display:block;
}

:root{ --img-radius: 10px; }

/* 1) wszystkie IMG w treści i typowych modułach */
.tresc img,
.galeria img,
.yy img,
.thumbnail img,
.miniatura img,
.miniatura2 img,
.miniatura3 img,
.sb-thumb img,
.band-card img,
.band-photo-link img{
  border-radius: var(--img-radius) !important;
}

/* 2) kontenery miniatur - ważne, gdy obrazek jest "cięty" przez wrapper */
.thumbnail,
.miniatura,
.miniatura2,
.miniatura3,
.sb-thumb,
.miniatura .foto,
.miniatura2 .foto,
.miniatura3 .foto,
.band-main-photo{
  border-radius: var(--img-radius) !important;
  overflow: hidden !important;
}

/* 3) jeśli gdzieś obrazek jest jako tło (background-image) */
.miniatura,
.miniatura2,
.miniatura3,
.sb-thumb{
  background-clip: padding-box;
}
:root{ --img-radius: 12px; }

.miniatura:hover,
.miniatura2:hover,
.miniatura3:hover,
.thumbnail:hover,
.sb-thumb:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}


@media (max-width: 576px){

  /* TYLKO listy w profilu zespołu */
  .col-lg-8 .dp-thumb .thumb-frame{
    height: 340px;
    overflow: hidden;
  }

  .col-lg-8 .dp-thumb .thumb-frame picture,
  .col-lg-8 .dp-thumb .thumb-frame img{
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
  }

}
/* link w belce dp-strip nie powinien robić underline ani zmian */
.dp-strip-title a{
  color: inherit !important;
  text-decoration: none !important;
}
.dp-strip-title a:hover{
  color: inherit !important;
  text-decoration: none !important;
  background: none !important;
}
/* =========================
   MOBILE FIX: zaokrąglenie miniatur wszędzie
========================= */

.miniatura2,
.miniatura2 .foto,
.miniatura2 a,
.miniatura2 picture,
.miniatura2 img{
  border-radius: var(--img-radius) !important;
}

.miniatura2,
.miniatura2 .foto{
  overflow: hidden !important;

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 12px 20px;
  background: #317baf;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
}

/* === Stabilizacja Google cookies (Funding Choices) === */
/* Funding Choices - stabilnie i bez psucia INP */
.fc-consent-root{
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2147483647 !important;
  contain: layout style paint !important;
}

/* overlay full screen */
.fc-dialog-overlay{
  position: fixed !important;
  inset: 0 !important;
}

/* kontener dialogu - bez łapania klików przez cały ekran */
.fc-dialog-container{
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: flex-end !important;   /* dół */
  justify-content: center !important;
  padding: 12px !important;
  pointer-events: none !important;
}

/* sam dialog klikalny */
.fc-dialog{
  pointer-events: auto !important;
  max-width: 520px !important;
  width: min(520px, 100%) !important;
  margin: 0 auto !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
}

/* żeby fonty w tym module nie przestawiały metryk */
.fc-consent-root,
.fc-consent-root *{
  font-family: 'Poppins', Arial, sans-serif !important;
}
.tresc blockquote p:first-of-type {
  margin-top: 0 !important;
  margin-bottom: 0.9em !important;
}