/* ===========================
   KOMPLETNY SPORTOWY HEADER + MENU + SOCIAL + ARTYKUŁY + OBRAZKI
   =========================== */

/* RESET WSZYSTKICH LINII HELIX */
#sp-header,
.header-wrapper,
#sp-header-topbar,
#sp-header-menu,
.sp-megamenu-wrapper,
.sp-megamenu-wrapper::before,
.sp-megamenu-wrapper::after,
#sp-header-topbar .container-inner,
#sp-header-menu .container-inner {
    border: none !important;
    box-shadow: none !important;
    content: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== HEADER TOPBAR ===== */
#sp-header-topbar {
    background: #000 !important;
}

/* ===== NAPISY HEADER – PROFESJONALNE ===== */
.header-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff500;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 0 4px rgba(255,245,0,0.3);
}

.header-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: none; /* małe litery */
    color: #fff500;
    margin: 0;
    margin-left: 10px; /* lekki przesunięcie podtytułu */
    text-shadow: 0 0 3px rgba(255,245,0,0.2);
    font-style: italic;
}

/* ===== MENU – NA DOLE HEADERA ===== */
#sp-header-menu {
    background: #000 !important;
    display: flex;
    justify-content: flex-end;
    border-top: 1.5px solid #fff500 !important;
    border-bottom: 1.5px solid #fff500 !important;
    padding: 0;
    position: relative;
    z-index: 100;
}

/* Usuń linie container-inner */
#sp-header-menu .container-inner,
#sp-header-topbar .container-inner {
    border: none !important;
}

/* Usuń pseudo-elementy Helix ::before/::after */
#sp-header-menu::before,
#sp-header-menu::after,
#sp-header-topbar::before,
#sp-header-topbar::after {
    content: none !important;
    border: none !important;
}

/* Kontener ul DJ Menu */
#sp-header-menu ul.dj-megamenu {
    display: flex !important;
    justify-content: flex-end !important;
}

/* LINKI MENU – NORMALNE */
#sp-header-menu ul.dj-megamenu > li > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 12px 18px !important;
    color: #fff500 !important;
    font-weight: normal !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 4px rgba(255,245,0,0.5);
    transition: all 0.2s ease-in-out;
}

/* Hover – sportowy */
#sp-header-menu ul.dj-megamenu > li:hover > a,
#sp-header-menu ul.dj-megamenu > li.active > a {
    background: #fff500 !important;
    color: #000 !important;
    transform: skewX(-8deg);
    text-shadow: none;
}

/* Dropdown */
#sp-header-menu ul.dj-megamenu li ul.dj-submenu {
    background: #111 !important;
    border-top: 1.5px solid #fff500;
}

#sp-header-menu ul.dj-megamenu li ul.dj-submenu li a {
    color: #fff500 !important;
    background: #111 !important;
    font-weight: normal !important;
}

#sp-header-menu ul.dj-megamenu li ul.dj-submenu li a:hover {
    background: #fff500 !important;
    color: #000 !important;
}

/* STRZAŁKA */
#sp-header-menu ul.dj-megamenu > li > a span.arrow::before {
    content: none !important;
    display: none !important;
}

#sp-header-menu ul.dj-megamenu > li > a span.arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff500;
    display: inline-block !important;
    position: static !important;
    margin: 0 !important;
    transform: none !important;
}

/* Obrót strzałki przy hover/dropdown */
#sp-header-menu ul.dj-megamenu > li:hover > a span.arrow {
    transform: rotate(180deg);
    transition: 0.2s ease;
}

/* ===== SOCIAL ICONS ===== */
#sp-header-topbar .sp-social a i,
#sp-header-topbar .sp-social a svg {
    color: #fff500 !important;
    fill: #fff500 !important;
}

#sp-header-topbar .sp-social a:hover i,
#sp-header-topbar .sp-social a:hover svg {
    color: #000 !important;
    fill: #000 !important;
}

/* ===== OBRAMOWANIA ARTYKUŁÓW I MODUŁÓW ===== */
.article.blog-items {
    border: 1px solid #fff500 !important;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    background-color: #000;
    overflow: hidden; /* kluczowe – zawiera elementy float */
}

/* Hover artykułu */
.article.blog-items:hover {
    border-color: #fff500 !important;
    box-shadow: 0 0 10px rgba(255,245,0,0.2);
}

/* Usuń dodatkowe linie wewnątrz artykułu */
.article.blog-items .article-intro-image,
.article.blog-items .item-content,
.article.blog-items .article-header {
    border: none !important;
}

/* Obrazki w artykule nie wychodzą poza obramowanie */
.article.blog-items .article-intro-image {
    float: none !important;
    display: block;
    margin: 0 auto 15px auto; /* na środku z odstępem od treści */
}

/* ===== MOBILE ===== */
.dj-offcanvas,
.dj-offcanvas ul {
    background: #000 !important;
}

.dj-offcanvas li a {
    color: #fff500 !important;
    font-weight: normal !important;
}

.dj-offcanvas li a:hover {
    background: #fff500 !important;
    color: #000 !important;
}

.featured-article-badge {
     display:none;
}