/* INWEL ESTATE — motyw strony (body.site-inwel). style.css = lekki stub; stary szablon = legacy-flyway.css na wybranych layoutach. */
:root {
    --gold: #c5a059;
    --black: #0c0c0c;
    --dark-gray: #1a1a1a;
    --light-gray: #a0a0a0;
}

body.site-inwel {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: #fff;
}

/* Ciemny pas u góry ekranu (pod belką menu) — czytelność na jasnym slajdzie */
body.site-inwel::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: min(28vh, 200px);
    z-index: 1020;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.5) 55%,
        rgba(0, 0, 0, 0) 100%
    );
}

body.site-inwel #navigation #main-menu .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.15rem 1.75rem;
    flex-wrap: nowrap;
}

body.site-inwel #navigation #main-menu .nav-item {
    margin-left: 0;
    flex: 0 0 auto;
}

body.site-inwel #navigation #main-menu .nav-link {
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.5rem 0.35rem !important;
}

body.site-inwel #navigation #main-menu .nav-link:hover,
body.site-inwel #navigation #main-menu .nav-link:focus {
    color: var(--gold) !important;
}

body.site-inwel #navigation #main-menu .nav-link.active {
    color: var(--gold) !important;
}

/* Desktop: podmenu Oferty (Kupno / Sprzedaż / Wynajem) — hover + klik Bootstrap */
@media (min-width: 768px) {
    body.site-inwel #navigation #main-menu .nav-item.dropdown {
        position: relative;
    }

    body.site-inwel #navigation #main-menu .nav-item.dropdown > .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        margin: 0.35rem 0 0;
        padding: 0.5rem 0;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(197, 160, 89, 0.35);
        border-radius: 2px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
        z-index: 1055;
        list-style: none;
    }

    body.site-inwel #navigation #main-menu .nav-item.dropdown:hover > .dropdown-menu,
    body.site-inwel #navigation #main-menu .nav-item.dropdown.show > .dropdown-menu {
        display: block;
    }

    body.site-inwel #navigation #main-menu .dropdown-menu li a {
        display: block;
        padding: 0.55rem 1.25rem;
        color: #fff !important;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
    }

    body.site-inwel #navigation #main-menu .dropdown-menu li a:hover,
    body.site-inwel #navigation #main-menu .dropdown-menu li a:focus {
        color: var(--gold) !important;
        background: rgba(255, 255, 255, 0.05);
    }
}

body.site-inwel #navigation nav a,
body.site-inwel #navigation #main-menu a {
    color: #ffffff !important;
}

body.site-inwel #navigation nav a:hover,
body.site-inwel #navigation #main-menu a:hover {
    color: var(--gold) !important;
}

body.site-inwel section#menuboxy {
    background-color: var(--black) !important;
    margin-top: 0 !important;
    padding-top: 80px;
}

body.site-inwel .luxury-bar {
    background: var(--dark-gray);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    color: var(--gold);
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
}

body.site-inwel .luxury-bar h4 {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

body.site-inwel .footer {
    background-color: #000;
    padding: 60px 0;
    border-top: 1px solid var(--gold);
    color: #888;
}

body.site-inwel .footer:before {
    display: none;
}

body.site-inwel .footer_logo img {
    max-height: 80px;
    filter: grayscale(1) brightness(2);
    transition: 0.3s;
}

body.site-inwel .footer_logo img:hover {
    filter: none;
}

body.site-inwel .seo-footer {
    font-size: 0.8rem;
    color: #444;
    margin-top: 20px;
}

body.site-inwel #navigation.site-navigation {
    padding: 20px 0;
    transition:
        background-color 0.35s ease,
        padding 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease,
        -webkit-backdrop-filter 0.35s ease;
    background-color: transparent;
    z-index: 1030;
}

body.site-inwel #navigation.site-navigation.scrolled,
body.site-inwel #navigation.site-navigation.navbar-fixed,
body.site-inwel #navigation.site-navigation.menu-bg {
    background-color: rgba(8, 8, 10, 0.38) !important;
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.18);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    body.site-inwel #navigation.site-navigation.scrolled,
    body.site-inwel #navigation.site-navigation.navbar-fixed,
    body.site-inwel #navigation.site-navigation.menu-bg {
        background-color: rgba(8, 8, 10, 0.82) !important;
    }
}

body.site-inwel #navigation.site-navigation.navbar-fixed {
    padding: 12px 0;
}

body.site-inwel .header_right {
    display: flex;
    flex-basis: auto;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.5rem;
}

body.site-inwel #navigation #main-menu {
    margin-top: 0;
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

body.site-inwel .site-logo img {
    height: auto;
    max-width: 100%;
    transition: max-height 0.35s ease, transform 0.35s ease, filter 0.35s ease;
    /* Cień przy menu: główna + podstrony (wcześniej tylko główna miała filter) */
    filter:
        drop-shadow(0 0 2px rgba(0, 0, 0, 0.95))
        drop-shadow(0 3px 14px rgba(0, 0, 0, 0.9))
        drop-shadow(0 10px 32px rgba(0, 0, 0, 0.58))
        drop-shadow(0 20px 44px rgba(0, 0, 0, 0.35));
}

body.site-inwel #navigation.scrolled .site-logo img,
body.site-inwel #navigation.navbar-fixed .site-logo img {
    max-height: 52px;
}

/* Strona główna nad slajderem: jeszcze mocniejszy cień + lekki kontrast przy przezroczystym pasku */
body.site-inwel:not(.site-inwel-sub) #navigation.site-navigation:not(.scrolled):not(.navbar-fixed):not(.menu-bg) .site-logo img {
    filter:
        drop-shadow(0 0 3px rgba(0, 0, 0, 0.98))
        drop-shadow(0 4px 18px rgba(0, 0, 0, 0.94))
        drop-shadow(0 12px 38px rgba(0, 0, 0, 0.65))
        drop-shadow(0 24px 52px rgba(0, 0, 0, 0.42))
        contrast(1.12)
        brightness(1.08);
}

/* Desktop / tablet: pełne menu; kontener slicknav ukryty (jak w legacy-flyway.css) */
body.site-inwel #navigation #mobile_menu {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    body.site-inwel #navigation #main-menu {
        display: none !important;
    }

    body.site-inwel #navigation #mobile_menu {
        display: block !important;
        width: 100%;
        margin-top: 0;
    }

    body.site-inwel #navigation {
        padding: 10px 0;
    }

    body.site-inwel .slicknav_menu {
        background: transparent;
        margin-top: 0;
        padding: 0;
    }

    body.site-inwel .slicknav_btn {
        margin: 0;
        background: transparent;
    }

    body.site-inwel .slicknav_nav {
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(197, 160, 89, 0.35);
        border-radius: 2px;
        margin-top: 10px;
        padding: 0.75rem 1rem 0.85rem;
        box-sizing: border-box;
    }

    /* Lista w kolumnie — TYLKO ul.navbar-nav (nie .slicknav_nav: flex !important psuje jQuery .hide()/slideUp slicknav → menu „na stałe” otwarte) */
    body.site-inwel #mobile_menu .slicknav_nav > ul.navbar-nav,
    body.site-inwel #mobile_menu .slicknav_nav .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        width: 100% !important;
        float: none !important;
        padding: 0;
        margin: 0;
        gap: 0.2rem;
    }

    body.site-inwel #mobile_menu .slicknav_nav .nav-item {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
    }

    body.site-inwel #mobile_menu .slicknav_nav .nav-link {
        display: block !important;
        width: 100% !important;
        margin-left: 0 !important;
        text-align: left;
        box-sizing: border-box;
        padding: 0.65rem 0.4rem !important;
    }

    body.site-inwel #mobile_menu .slicknav_nav a {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    body.site-inwel #mobile_menu .slicknav_nav .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        transform: none !important;
        border: 0;
        padding-left: 1rem;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.35);
    }

    body.site-inwel .slicknav_nav a {
        color: #fff !important;
    }

    body.site-inwel .slicknav_nav a:hover {
        color: var(--gold) !important;
        background: rgba(255, 255, 255, 0.05);
    }
}

body.site-inwel .navbar-brand {
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.5rem;
}

body.site-inwel .nav-link {
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-left: 25px;
}

body.site-inwel .nav-link:hover {
    color: var(--gold) !important;
}

body.site-inwel .hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../graphics/hero_house.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body.site-inwel .hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

body.site-inwel .hero-content p {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

body.site-inwel .btn-gold {
    background-color: var(--gold);
    color: #000;
    border-radius: 0;
    padding: 15px 40px;
    font-weight: bold;
    margin-top: 30px;
    text-transform: uppercase;
    transition: 0.3s;
}

body.site-inwel .btn-gold:hover {
    background-color: #fff;
    color: #000;
}

/* Nadpisania ze starego style.css (ta strona) — bez ruszania definicji Bootstrapa */
body.site-inwel .topcontrol {
    background: var(--gold);
    color: #000;
}

body.site-inwel .topcontrol:hover {
    background: #a88645;
    color: #000;
}

body.site-inwel #oferty-domow .section-title h2 {
    color: var(--gold);
}

body.site-inwel #oferty-domow {
    padding-top: 3.25rem;
}

body.site-inwel #oferty-domow .section-title p {
    color: var(--light-gray);
}

body.site-inwel .oferty-home-blok {
    border-top: 1px solid rgba(197, 160, 89, 0.22);
    padding-top: 2rem;
}

body.site-inwel .oferty-home-blok:first-of-type {
    border-top: 0;
    padding-top: 0;
}

body.site-inwel .oferty-home-blok-tytul {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.site-inwel .oferty-home-blok-link {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

body.site-inwel .oferty-home-blok-link:hover {
    color: #f0dcaa;
    text-decoration: none;
}

/* Widok oferty: zdjęcie główne na pełną szerokość (jak baner/slajder), tytuł nad boxem z ceną */
body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed {
    width: 100%;
    background: #000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed-inner {
    position: relative;
    min-height: 42vh;
    max-height: min(68vh, 820px);
    overflow: hidden;
}

body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed-link {
    min-height: 42vh;
    max-height: min(68vh, 820px);
}

body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed-img {
    width: 100%;
    height: 100%;
    min-height: 42vh;
    max-height: min(68vh, 820px);
    object-fit: cover;
    object-position: center;
    display: block;
}

body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed-editwrap,
body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed-editwrap .documentField {
    display: block;
    min-height: 42vh;
    max-height: min(68vh, 820px);
}

body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed-editwrap .documentField img {
    width: 100%;
    height: 100%;
    min-height: 42vh;
    max-height: min(68vh, 820px);
    object-fit: cover;
    object-position: center;
    display: block;
}

body.site-inwel-sub .oferta-nieruchomosci-foto-fullbleed-brak {
    min-height: 42vh;
    max-height: min(68vh, 820px);
    background: #111;
}

body.site-inwel-sub .oferta-nieruchomosci-naglowek-tekst {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
}

body.site-inwel-sub .oferta-nieruchomosci-etykieta {
    letter-spacing: 0.2em;
    color: #c5a059 !important;
}

body.site-inwel-sub .oferta-nieruchomosci-tytul {
    color: #fff;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

body.site-inwel-sub .oferta-nieruchomosci-podtytul {
    font-size: 1rem;
    line-height: 1.5;
}

body.site-inwel-sub .oferta-detail .oferta-lead {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.65;
}

body.site-inwel-sub .oferta-detail .oferta-body {
    color: #b8b8b8;
}

/* Galeria oferty — siatka + overlay (jak karty ofert: lift, złoto, zoom) */
body.site-inwel-sub .oferta-galeria-masonry .oferta-galeria-tytul {
    letter-spacing: 0.12em;
    color: #c5a059 !important;
}

body.site-inwel .gallery-inwel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.site-inwel .gallery-inwel-tile {
    min-width: 0;
}

body.site-inwel .gallery-inwel-tile-inner,
body.site-inwel .gallery-inwel-tile-figure {
    margin: 0;
    padding: 0;
    background: #0c0c0c;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.site-inwel .gallery-inwel-tile-link {
    display: block;
    color: inherit;
    text-decoration: none;
    outline: none;
}

body.site-inwel .gallery-inwel-tile-link:focus-visible .gallery-inwel-overlay {
    opacity: 1;
}

body.site-inwel .gallery-inwel-imgwrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    line-height: 0;
    background: #0a0a0a;
}

/* Absolutne wypełnienie — bez paska pod obrazkiem (inline gap / height:auto z img-fluid) */
body.site-inwel .gallery-inwel-imgwrap .gallery-inwel-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.site-inwel .gallery-inwel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%);
    opacity: 0;
    transition: opacity 0.38s ease;
    pointer-events: none;
}

body.site-inwel .gallery-inwel-overlay-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 89, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0dcaa;
    font-size: 1.35rem;
    transform: scale(0.88) translateY(6px);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease;
}

body.site-inwel .gallery-inwel-overlay-text {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #f0dcaa;
    font-weight: 700;
}

body.site-inwel .gallery-inwel-tile-inner:hover,
body.site-inwel .gallery-inwel-tile-figure:hover {
    transform: translateY(-8px);
    border-color: #c5a059;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.65);
}

body.site-inwel .gallery-inwel-tile-link:hover .gallery-inwel-img,
body.site-inwel .gallery-inwel-tile-link:focus-visible .gallery-inwel-img {
    transform: scale(1.06);
}

body.site-inwel .gallery-inwel-tile-link:hover .gallery-inwel-overlay,
body.site-inwel .gallery-inwel-tile-link:focus-visible .gallery-inwel-overlay {
    opacity: 1;
}

body.site-inwel .gallery-inwel-tile-link:hover .gallery-inwel-overlay-ring,
body.site-inwel .gallery-inwel-tile-link:focus-visible .gallery-inwel-overlay-ring {
    transform: scale(1) translateY(0);
    box-shadow: 0 0 28px rgba(197, 160, 89, 0.45);
}

@media (max-width: 991px) {
    body.site-inwel .gallery-inwel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    body.site-inwel .gallery-inwel-grid {
        grid-template-columns: 1fr;
    }
}

body.site-inwel-sub .oferta-detail .oferta-side {
    border-color: rgba(197, 160, 89, 0.35) !important;
}

body.site-inwel-sub .oferta-detail .oferta-side .btn-gold-sm {
    border: 1px solid #c5a059;
    color: #c5a059;
    background: transparent;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.6rem 1rem;
}

body.site-inwel-sub .oferta-detail .oferta-side .btn-gold-sm:hover {
    background: #c5a059;
    color: #000;
}

body.site-inwel-sub .oferty-lista-hero .fw_al_007_slide {
    top: 42%;
}

body.site-inwel-sub .oferty-lista-lead {
    color: #d0d0d0;
    font-size: 1rem;
    max-width: 640px;
    margin: 0.75rem auto 0;
}

body.site-inwel-sub .oferty-lista-sekcja {
    padding-top: 3rem;
}

body.site-inwel-sub .oferty-lista-pagination .pagination .page-link {
    background: #151515;
    border-color: rgba(197, 160, 89, 0.35);
    color: #ccc;
}

body.site-inwel-sub .oferty-lista-pagination .pagination .page-item.active .page-link {
    background: #c5a059;
    border-color: #c5a059;
    color: #111;
}

body.site-inwel-sub .oferty-lista-pagination .pagination .page-link:hover {
    background: #222;
    color: #f0dcaa;
}

body.site-inwel-sub .oferta-spec .card-header {
    background: rgba(0, 0, 0, 0.35);
    color: #c5a059;
    letter-spacing: 0.12em;
}

body.site-inwel-sub .oferta-spec-table th {
    font-weight: 500;
}

body.site-inwel-sub .oferta-spec-value .documentField {
    color: #e4e4e4;
}

body.site-inwel-sub .oferta-side-cena .documentField {
    color: #c5a059 !important;
    font-weight: 700;
    font-size: 1.35rem;
}

body.site-inwel #contact.contact_area {
    background: var(--dark-gray) !important;
}

body.site-inwel #contact .contact_address h3 {
    color: var(--gold);
}

body.site-inwel #contact .contact_address {
    padding-left: 1rem;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

body.site-inwel #contact .contact_address ul li i {
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    color: var(--gold) !important;
    font-size: inherit;
    height: auto;
    line-height: inherit;
    width: auto;
    margin-right: 0.5rem;
}

body.site-inwel #contact .contact-form-wrapper {
    background: #222;
    border: 1px solid #333;
}

body.site-inwel .btn-contact-bg {
    background: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    color: #000 !important;
}

body.site-inwel .btn-contact-bg:hover,
body.site-inwel .btn-contact-bg:focus {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

/*
 * Podstrony (layout: body.site-inwel-sub).
 * Matryca / treść z CMS — często klasy Bootstrap 3 (col-xs-*).
 */
body.site-inwel-sub .col-xs-12 { flex: 0 0 100%; max-width: 100%; }
body.site-inwel-sub .col-xs-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
body.site-inwel-sub .col-xs-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
body.site-inwel-sub .col-xs-9 { flex: 0 0 75%; max-width: 75%; }
body.site-inwel-sub .col-xs-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
body.site-inwel-sub .col-xs-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
body.site-inwel-sub .col-xs-6 { flex: 0 0 50%; max-width: 50%; }
body.site-inwel-sub .col-xs-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
body.site-inwel-sub .col-xs-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
body.site-inwel-sub .col-xs-3 { flex: 0 0 25%; max-width: 25%; }
body.site-inwel-sub .col-xs-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
body.site-inwel-sub .col-xs-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }

body.site-inwel-sub .napodstronie {
    background-color: var(--black);
    color: #e0e0e0;
    padding-bottom: 4rem;
}

body.site-inwel-sub .napodstronie .section-title h2,
body.site-inwel-sub .napodstronie .section-title h3 {
    color: var(--gold);
}

body.site-inwel-sub .napodstronie .section-title h4 {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

body.site-inwel-sub .napodstronie .podstrona-brief {
    text-align: left;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.65;
    color: #d0d0d0;
}

body.site-inwel-sub .napodstronie a {
    color: var(--gold);
}

body.site-inwel-sub .napodstronie a:hover {
    color: #f0dcaa;
}

body.site-inwel-sub .napodstronie img,
body.site-inwel-sub .napodstronie video,
body.site-inwel-sub .napodstronie iframe {
    max-width: 100%;
    height: auto;
}

body.site-inwel-sub .napodstronie table {
    width: 100%;
    max-width: 100%;
}

body.site-inwel-sub .napodstronie .col-lg-12 {
    overflow-x: auto;
}

body.site-inwel-sub .podstrona-obrazek {
    position: relative;
    min-height: 260px;
    max-height: 48vh;
    overflow: hidden;
    background: #111;
}

body.site-inwel-sub .podstrona-obrazek .carousel-inner,
body.site-inwel-sub .podstrona-obrazek .carousel-item {
    height: 100%;
    min-height: 260px;
}

body.site-inwel-sub .podstrona-obrazek .carousel-item > img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

body.site-inwel-sub .podstrona-obrazek .fw_al_007_slide {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 18%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 880px;
    margin: 0;
}

body.site-inwel-sub .podstrona-obrazek .fw_al_007_slide > h1,
body.site-inwel-sub .podstrona-obrazek .fw_al_007_slide > p {
    color: #fff;
}

body.site-inwel-sub .podstrona-obrazek .fw_al_007_slide > h1 {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    line-height: 1.2;
}

body.site-inwel-sub .napodstronie.section-padding {
    padding-top: 3.5rem;
}

/* Slajder: większa nazwa firmy (h3) nad tytułem + złote strzałki */
body.site-inwel #fw_al_007 .fw_al_007_slide > h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    padding-bottom: 12px;
}

@media (max-width: 767px) {
    body.site-inwel #fw_al_007 .fw_al_007_slide > h3 {
        font-size: 1rem;
        letter-spacing: 0.26em;
    }
}

@media (max-width: 480px) {
    body.site-inwel #fw_al_007 .fw_al_007_slide > h3 {
        font-size: 0.9rem;
        letter-spacing: 0.22em;
    }
}

body.site-inwel #fw_al_007 .carousel-control {
    color: var(--gold) !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9) !important;
    opacity: 0.9 !important;
}

body.site-inwel #fw_al_007:hover .carousel-control,
body.site-inwel #fw_al_007 .carousel-control:hover {
    color: #f0dcaa !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95) !important;
    opacity: 1 !important;
}

body.site-inwel #fw_al_007 .carousel-control .fa {
    color: inherit;
}
