/* =========================
   CTA – PT CLINIC
========================= */

.pt-cta-wrap {
    background: #2f445d;
    padding: 80px 0;
    text-align: center;
}

.pt-cta {
    max-width: 880px;
    margin: 0 auto;
}

/* HEADLINE */
.pt-cta__title {
    font-family: "Oddlini", serif;
    font-size: 38px;
    line-height: 1.2;
    color: #fff;
	margin: 0;
}

/* TEXT */
.pt-cta__text {
    font-family: "Garamond", serif;
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    opacity: .9;
    margin: 24px 0;
}

/* BUTTONS */
.pt-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
	 margin-top: 48px;
}

.pt-cta__buttons .pt-btn {
    padding: 10px 40px;
    border-radius: 40px;
    font-family: "Oddlini", serif;
    font-size: 18px;
    background: #fff;
    color: #203b57;
    text-decoration: none;
    transition: all .25s ease;
}

.pt-cta__buttons .pt-btn:hover {
    background: #afafaf;
}

.pt-cta__buttons .pt-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.pt-cta__buttons .pt-btn.outline:hover {
    background: #fff;
    color: #203b57;
}

/* MOBILE */
@media (max-width: 992px) {
    .pt-cta-wrap {
        padding: 30px 0;
    }

    .pt-cta__title {
        font-size: 27px;
		text-align: left;
    }

    .pt-cta__text {
        font-size: 21px;
		text-align: left;
    }

    .pt-cta__buttons {
        flex-direction: column;
    }
}


/* =====================================================
   CTA – THEMES (LIGHT / DARK)
===================================================== */

/* LIGHT THEME */
.pt-cta-wrap.theme-light {
    background: #f3f1ee;
}

.pt-cta-wrap.theme-light .pt-cta__title,
.pt-cta-wrap.theme-light .pt-cta__text,
.pt-cta-wrap.theme-light .pt-cta__quote,
.pt-cta-wrap.theme-light .pt-cta__quote-author {
    color: #203b57;
}

.pt-cta-wrap.theme-light .pt-btn {
    background: #203b57;
    color: #fff;
}

.pt-cta-wrap.theme-light .pt-btn.outline {
    background: transparent;
    border: 2px solid #203b57;
    color: #203b57;
}

.pt-cta-wrap.theme-light .pt-btn.outline:hover {
    background: #203b57;
    color: #fff;
}

/* =====================================================
   CTA – QUOTE MODE (MARKA OSOBISTA)
===================================================== */

.pt-cta-wrap.mode-quote {
    padding: 110px 0;
}

.pt-cta-wrap.mode-quote .pt-cta {
    max-width: 960px;
}

/* QUOTE TEXT */
.pt-cta__quote {
    font-family: "Garamond", serif;
    font-size: 30px;
    line-height: 1.55;
    font-style: italic;
    text-align: center;
    color: #ffffff;
    position: relative;
    margin: 0 auto;
    max-width: 860px;
}

/* Decorative quotation mark */
.pt-cta__quote::before {
    content: "“";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 140px;
    line-height: 1;
    opacity: 0.15;
    font-family: serif;
}

/* AUTHOR */
.pt-cta__quote-author {
    display: block;
    margin-top: 28px;
    font-family: "Oddlini", serif;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    text-align: center;
	color:#fff;
}

/* Remove buttons spacing in quote mode */
.pt-cta-wrap.mode-quote .pt-cta__buttons {
    display: none;
}

/* =====================================================
   QUOTE MODE – MOBILE
===================================================== */

@media (max-width: 768px) {

    .pt-cta-wrap.mode-quote {
        padding: 70px 0;
    }

    .pt-cta__quote {
        font-size: 22px;
        line-height: 1.6;
        text-align: left;
    }

    .pt-cta__quote::before {
        font-size: 90px;
        top: -60px;
        left: -15px;
        transform: none;
    }

    .pt-cta__quote-author {
        text-align: left;
        font-size: 15px;
        margin-top: 18px;
    }
}
