/* =========================
   HERO – PT CLINIC
========================= */

.pt-hero-wrap {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.pt-hero-wrap.pt-hero--h1 {
    padding: 30px 0;
}

/* =========================
   GRID / LAYOUT
========================= */

.pt-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr;
    align-items: center;
    position: relative;
    gap: 40px;
}

/* ===== NO IMAGE (DESKTOP) ===== */
.pt-hero--no-image .pt-hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
}

/* CENTER CONTENT */
.pt-hero--no-image .pt-hero-content {
    text-align: center;
    margin: 0 auto;
}

.pt-hero--no-image .pt-hero__buttons {
    justify-content: center;
}

/* =========================
   HERO – NO IMAGE DIAMOND CUT
========================= */

.pt-hero--no-image {
position: relative;
  overflow: visible;
  z-index: 10;
}

.pt-hero--no-image::after {
content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background: #dad1c8;
  z-index: 20;
  pointer-events: none;
  border: 2px solid #fff;
}
.pt-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; background: #2f445d; color: #fff; font-size: 26px; cursor: pointer; z-index: 5; } 
.pt-hero-arrow.prev { left: 0px; } 
.pt-hero-arrow.next { right: 0px; }

/* =========================
   CONTENT
========================= */

.pt-hero-content {
    position: relative;
    z-index: 3;
}

/* ===== NO IMAGE CONTENT WIDTH ===== */
.pt-hero--no-image .pt-hero-content {
    max-width: 880px;
}

/* =========================
   MEDIA
========================= */

.pt-hero-media {
    position: relative;
    z-index: 1;
}

.pt-hero--image-right .pt-hero-media {
    margin-left: -140px;
}

.pt-hero--image-left .pt-hero-media {
    margin-right: -140px;
}

.pt-hero-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================
   TYPOGRAFIA
========================= */

.pt-hero__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

/* BRAND */
.pt-hero__eyebrow {
    font-family: "Oddlini", serif;
    font-size: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: normal;
    display: block;
}

/* HEADLINE */
h1 span.pt-hero__headline {
    font-family: "Oddlini", serif;
    font-size: 51px;
    line-height: 1.2;
}

.pt-hero__headline {
    font-family: "Oddlini", serif;
    font-size: 38px;
    line-height: 1.2;
    margin: 0;
}

/* OPIS */
.pt-hero__text {
    font-family: "Garamond", serif;
    font-size: 24px;
    line-height: 1.6;
    margin: 24px 0;
}

/* =========================
   SCHEMAT KOLORÓW
========================= */

/* DARK */
.pt-hero--dark {
    color: #203b57;
}

.pt-hero--dark .pt-hero__eyebrow,
.pt-hero--dark .pt-hero__headline,
.pt-hero--dark .pt-hero__text {
    color: #0d2344;
}

/* LIGHT */
.pt-hero--light {
    color: #ffffff;
}

.pt-hero--light .pt-hero__eyebrow,
.pt-hero--light .pt-hero__headline,
.pt-hero--light .pt-hero__text {
    color: #ffffff;
}

/* =========================
   BUTTONS
========================= */

.pt-hero__buttons {
    display: flex;
    gap: 18px;
    margin-top: 48px;
}

.pt-hero__buttons .pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    border-radius: 40px;
    font-family: "Oddlini", serif;
    font-size: 18px;
    text-decoration: none;
    transition: all .25s ease;
    border: 2px solid transparent;
}

/* =========================
   HERO – SCHEME: DARK
========================= */

.pt-hero--scheme-dark .pt-btn {
    background: #203b57;
    color: #ffffff;
}

.pt-hero--scheme-dark .pt-btn:hover {
    background: #556877;
}

.pt-hero--scheme-dark .pt-btn.outline {
    background: transparent;
    color: #203b57;
    border-color: #203b57;
}

.pt-hero--scheme-dark .pt-btn.outline:hover {
    background: #203b57;
    color: #ffffff;
}

/* =========================
   HERO – SCHEME: LIGHT
========================= */

.pt-hero--scheme-light .pt-btn {
    background: #ffffff;
    color: #203b57;
}

.pt-hero--scheme-light .pt-btn:hover {
    background: #f1f1f1;
}

.pt-hero--scheme-light .pt-btn.outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.pt-hero--scheme-light .pt-btn.outline:hover {
    background: #ffffff;
    color: #203b57;
}

/* =========================
   HERO – STACKED SLIDER
========================= */

.pt-hero-media--stacked {
    position: relative;
    height: 450px;
    margin: 0 !important;
}

.pt-hero-stacked {
    position: relative;
    width: 100%;
    height: 100%;
}

.pt-hero-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    max-width: 420px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    z-index: 1;
    transition:
        transform .6s cubic-bezier(.22,1,.36,1),
        opacity .6s ease;
}

.pt-hero-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* STATES */
.pt-hero-card.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
}

.pt-hero-card.is-prev {
    transform: translate(-65%, -50%) scale(0.85);
    opacity: .5;
    z-index: 2;
}

.pt-hero-card.is-next {
    transform: translate(-35%, -50%) scale(0.85);
    opacity: .5;
    z-index: 2;
}

/* =========================
   DOTS
========================= */

.pt-hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.pt-hero-dot {
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
	    position: relative; /* KLUCZ */
}

.pt-hero-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    transform: translate(-50%, -50%);
}

.pt-hero-dot.is-active::before {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.2);
}

/* =========================
   LISTA
========================= */

.pt-hero-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.pt-hero-list li {
    position: relative;
    padding-left: 34px;
    font-family: "Garamond", serif;
    font-size: 24px;
    line-height: 1.6;
}

.pt-hero-list li::before {
    content: "\44";
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    top: 0.25em;
    font-size: 18px;
    color: currentColor;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .pt-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .pt-hero-wrap {
        padding: 30px 0;
    }

    .pt-hero-media {
        margin: 0 !important;
        order: 2;
    }

    h1 span.pt-hero__headline {
        font-size: 30px;
    }

    .pt-hero__headline {
        font-size: 27px;
    }

    .pt-hero__text {
        font-size: 21px;
    }

    .pt-hero-list li {
        font-size: 21px;
        font-weight: bold;
    }

    .pt-hero__buttons {
        flex-direction: column;
    }
	button.pt-hero-arrow{
	display:none;	
	}
}
