/* ============================================================
   Poradnie – single post template
   ============================================================ */

/* ────────────────────────────────────────────
   BANER – ja-masthead
──────────────────────────────────────────── */

.home-module-wrapper {
    margin-bottom: 0;
}

.ja-masthead.has-bg {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.masthead-container {
    height: 485px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ja-masthead-title {
    font-weight: 700;
    font-size: 24px;
    color: #0091d7;
    margin-bottom: 0;
    padding: 20px 15px 15px;
    padding-top: 80px;
    max-width: 50%;
}

.ja-masthead-title::after {
    content: "";
    background: #0091d7;
    height: 3px;
    width: 70px;
    display: block;
    margin-top: 7px;
}

.ja-masthead-title p {
    margin: 0;
    color: #0091d7;
}

.ja-masthead-title strong {
    color: #0091d7;
}

.ja-masthead-description {
    font-size: 18px;
    color: #000;
    padding: 0 15px 30px;
    max-width: 50%;
}

.ja-masthead-description p {
    margin: 0 0 4px;
}

@media (max-width: 767px) {
    .masthead-container {
        height: auto;
        padding: 30px 15px;
    }

    .ja-masthead-title,
    .ja-masthead-description {
        max-width: 100%;
    }
}

/* ────────────────────────────────────────────
   LAYOUT: sidebar-right grid
──────────────────────────────────────────── */

.poradnie-page .sidebar-right {
    display: grid;
    grid-template-columns: 11fr 4fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .poradnie-page .sidebar-right {
        grid-template-columns: 1fr;
    }
}

/* ────────────────────────────────────────────
   MAIN CONTENT
──────────────────────────────────────────── */

.poradnia-item .item-text {
    overflow: hidden;
}

.poradnia-item .item-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.poradnia-item .item-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    margin-top: 30px;
}

.poradnia-item .item-text h2::after {
    content: "";
    background: #0091d7;
    height: 3px;
    width: 70px;
    display: block;
    margin-top: 7px;
}

.poradnia-item .item-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.poradnia-item .item-text li {
    margin-bottom: 6px;
}

.poradnia-item .item-text .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0091d7;
    color: #fff;
    border-radius: 4px;
    font-size: 17px;
    text-decoration: none;
    transition: opacity 0.2s;
    margin-top: 20px;
}

.poradnia-item .item-text .btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* baner pod treścią */
.poradnia-baner {
    margin-top: 40px;
}

.poradnia-baner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ────────────────────────────────────────────
   SIDEBAR – specjaliści
──────────────────────────────────────────── */

.t3-sidebar {
    margin-top: 20px;
    max-width: 400px;
}

.nasi-specjalisci-poradnie {
    background: #fff;
    padding-top: 0;
    margin-bottom: 30px;
}

.nasi-specjalisci-poradnie h2,
.pozostale-poradnie h2 {
    color: #0091d7;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 15px;
}

.nasi-specjalisci-poradnie .category-item-list {
    display: block;
}

.nasi-specjalisci-poradnie .specjalisci-category-item {
    display: block;
    background: #fff;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
}

.nasi-specjalisci-poradnie .category-item-image {
    overflow: hidden;
    width: 100%;
}

.nasi-specjalisci-poradnie .category-item-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: scale 0.35s;
}

.nasi-specjalisci-poradnie .specjalisci-category-item:hover .category-item-image img {
    scale: 1.05;
}

.nasi-specjalisci-poradnie .category-item-body {
    padding: 15px;
    background: #e7e2df;
}

.nasi-specjalisci-poradnie .specjalizacja {
    font-size: 15px;
    color: #58585a;
    font-weight: 300;
    margin-bottom: 4px;
}

.nasi-specjalisci-poradnie .category-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px;
}

.nasi-specjalisci-poradnie .umow-wizyte {
    color: #0091d7;
    font-size: 15px;
}

/* przycisk "Zobacz wszystkich" */
.wszyscy-specjalisci-wrapper {
    margin-top: 10px;
    text-align: center;
}

.btn-wszyscy {
    display: inline-block;
    padding: 10px 24px;
    background: #0091d7;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-wszyscy:hover {
    opacity: 0.85;
    color: #fff;
}

/* ────────────────────────────────────────────
   SIDEBAR – pozostałe poradnie
──────────────────────────────────────────── */

.pozostale-poradnie {
    background: #fff;
    margin-top: 10px;
}

.pozostale-poradnie-wrapper {
    padding-left: 18px;
    margin: 0;
    list-style: disc;
}

.pozostale-poradnie-wrapper li {
    color: #0091d7;
    margin-bottom: 5px;
}

.pozostale-poradnie-wrapper a {
    font-size: 17px;
    color: #0091d7;
    text-decoration: none;
}

.pozostale-poradnie-wrapper a:hover {
    text-decoration: underline;
}
