     /* ======================================================
   GENERATEPRESS SITE CSS
   ====================================================== */

/* Header altındaki ince gri çizgi */
.site-header {
    border-bottom: 1px solid #dddddd;
}

/* Featured article bölümünü tam genişlik yapar */
.generate-columns-container .featured-column {
    width: 100%;
}


/* ======================================================
   NOVA VITA – PREMIUM SEARCH RESULTS
   ====================================================== */

/* Ana arama sonuç alanı */
.nova-search-results {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px 90px;
}


/* ======================================================
   SEARCH HEADER
   ====================================================== */

.nova-search-header {
    margin-bottom: 42px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(20, 30, 55, 0.10);
}

.nova-search-header h1 {
    margin: 0 0 10px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: #121a2d;
}

.nova-search-count {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #7a7f89;
}


/* ======================================================
   SEARCH GRID
   ====================================================== */

.nova-search-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}


/* ======================================================
   SEARCH CARD
   ====================================================== */

.nova-search-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(21, 29, 48, 0.09);
    border-radius: 18px;

    box-shadow:
        0 2px 5px rgba(18, 26, 45, 0.025),
        0 10px 30px rgba(18, 26, 45, 0.035);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.nova-search-card:hover {
    transform: translateY(-6px);

    border-color: rgba(119, 86, 214, 0.24);

    box-shadow:
        0 8px 20px rgba(18, 26, 45, 0.06),
        0 20px 45px rgba(18, 26, 45, 0.10);
}


/* ======================================================
   CARD IMAGE
   ====================================================== */

.nova-search-image {
    position: relative;
    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #f4f4f6;
}

.nova-search-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.nova-search-card:hover .nova-search-image img {
    transform: scale(1.035);
}


/* ======================================================
   CARD CONTENT
   ====================================================== */

.nova-search-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 25px 25px 26px;
}


/* Başlık */

.nova-search-content h2 {
    margin: 0 0 14px;

    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-weight: 700;

    color: #151c2e;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.nova-search-content h2 a {
    color: inherit;
    text-decoration: none;

    transition: color 0.2s ease;
}

.nova-search-content h2 a:hover {
    color: #7655d8;
}


/* Açıklama */

.nova-search-content p {
    margin: 0 0 22px;

    font-size: 16px;
    line-height: 1.65;

    color: #525966;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* ======================================================
   "YAZIYI OKU" LINK
   ====================================================== */

.nova-search-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: auto;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;

    color: #7655d8;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.nova-search-more:hover {
    color: #5133a8;
    gap: 10px;
}


/* ======================================================
   PAGINATION
   ====================================================== */

.nova-search-pagination {
    margin-top: 58px;
}

.nova-search-pagination ul {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nova-search-pagination li {
    margin: 0;
}

.nova-search-pagination a,
.nova-search-pagination span {
    display: inline-flex;

    min-width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border: 1px solid rgba(20, 30, 55, 0.14);
    border-radius: 10px;

    background: #ffffff;

    color: #222a3a;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.nova-search-pagination a:hover {
    transform: translateY(-2px);

    background: #f7f5fd;

    border-color: #7655d8;

    color: #7655d8;
}

.nova-search-pagination .current {
    background: #7655d8;

    border-color: #7655d8;

    color: #ffffff;
}


/* ======================================================
   NO RESULTS
   ====================================================== */

.nova-search-empty {
    max-width: 700px;

    padding: 42px;

    background: #f8f7fb;

    border: 1px solid rgba(119, 86, 214, 0.12);
    border-radius: 18px;
}

.nova-search-empty h2 {
    margin: 0 0 10px;

    color: #151c2e;
}

.nova-search-empty p {
    margin: 0;

    color: #616775;
}


/* ======================================================
   TABLET
   ====================================================== */

@media (max-width: 1024px) {

    .nova-search-results {
        padding: 50px 24px 70px;
    }

    .nova-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

}


/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width: 640px) {

    .nova-search-results {
        padding: 36px 18px 55px;
    }

    .nova-search-header {
        margin-bottom: 28px;
        padding-bottom: 18px;
    }

    .nova-search-header h1 {
        font-size: 30px;
    }

    .nova-search-count {
        font-size: 15px;
    }

    .nova-search-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nova-search-card {
        border-radius: 15px;
    }

    .nova-search-content {
        padding: 21px;
    }

    .nova-search-content h2 {
        font-size: 20px;
    }

    .nova-search-content p {
        font-size: 15.5px;
        -webkit-line-clamp: 4;
    }

    .nova-search-pagination {
        margin-top: 40px;
    }

    .nova-search-pagination a,
    .nova-search-pagination span {
        min-width: 40px;
        height: 40px;

        padding: 0 11px;
    }

}


/* ======================================================
   ACCESSIBILITY
   ====================================================== */

.nova-search-card a:focus-visible,
.nova-search-pagination a:focus-visible {
    outline: 3px solid rgba(118, 85, 216, 0.35);
    outline-offset: 3px;
}
/* ======================================================
   NOVA VITA – ANA SAYFA PREMIUM SEARCH PANEL
   ====================================================== */

.nova-search-panel {
    max-width: 1100px;
    margin: 55px auto;
    padding: 34px 44px !important;
    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #faf9fe 65%,
            #f5f1ff 100%
        );

    border: 1px solid rgba(118, 85, 216, 0.16);
    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(28, 31, 55, 0.07),
        0 3px 10px rgba(28, 31, 55, 0.03);
}

.nova-search-panel h2 {
    margin: 0 0 6px !important;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #151c2e;
}

.nova-search-panel > p {
    margin: 0 0 20px !important;
    font-size: 17px;
    line-height: 1.55;
    color: #6f7480;
}

.nova-home-search {
    margin: 0 !important;
}

/* WordPress Search label'ını görsel olarak gizler, erişilebilirliği korur */
.nova-home-search .wp-block-search__label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.nova-home-search .wp-block-search__inside-wrapper {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 7px !important;

    background: #ffffff;
    border: 1px solid rgba(26, 32, 52, 0.12) !important;
    border-radius: 16px !important;

    box-shadow: 0 5px 20px rgba(20, 25, 45, 0.05);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.nova-home-search .wp-block-search__inside-wrapper:focus-within {
    border-color: #7655d8 !important;

    box-shadow:
        0 0 0 4px rgba(118, 85, 216, 0.10),
        0 10px 28px rgba(25, 30, 55, 0.07);
}

.nova-home-search .wp-block-search__input {
    flex: 1;
    min-width: 0;
    min-height: 54px;
    padding: 0 20px !important;

    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    font-size: 17px !important;
    line-height: 1.4;
    color: #222938;
}

.nova-home-search .wp-block-search__input::placeholder {
    color: #9398a3;
    opacity: 1;
}

.nova-home-search .wp-block-search__button {
    min-width: 105px;
    min-height: 54px;
    margin: 0 !important;
    padding: 0 24px !important;

    border: 0 !important;
    border-radius: 12px !important;

    background:
        linear-gradient(
            135deg,
            #7b5bd6 0%,
            #6542c5 100%
        ) !important;

    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.035em;

    box-shadow: 0 8px 20px rgba(118, 85, 216, 0.24);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nova-home-search .wp-block-search__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(118, 85, 216, 0.32);
}

@media (max-width: 700px) {

    .nova-search-panel {
        margin: 35px 16px;
        padding: 28px 20px !important;
        border-radius: 19px;
    }

    .nova-search-panel h2 {
        font-size: 27px;
    }

    .nova-search-panel > p {
        font-size: 16px;
        margin-bottom: 20px !important;
    }

    .nova-home-search .wp-block-search__inside-wrapper {
        flex-direction: column;
        gap: 8px;
        padding: 8px !important;
    }

    .nova-home-search .wp-block-search__input {
        width: 100%;
        min-height: 50px;
    }

    .nova-home-search .wp-block-search__button {
        width: 100%;
        min-width: 0;
        min-height: 50px;
    }
}


/* ======================================================
   NOVA VITA – TOP HERO / INTRO SECTION
   ====================================================== */

.nova-top-hero {
    max-width: 1200px !important;
    width: calc(100% - 40px) !important;
    margin: 46px auto 72px;
    padding: 44px 48px 54px;
    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfaff 62%,
            #f6f2ff 100%
        );

    border: 1px solid rgba(118, 85, 216, 0.13);
    border-radius: 28px;

    box-shadow:
        0 18px 50px rgba(24, 28, 50, 0.06),
        0 4px 14px rgba(24, 28, 50, 0.03);
}

.nova-top-hero > h1,
.nova-top-hero > h2:first-of-type {
    margin: 0 0 18px !important;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #121a2d;
}

.nova-top-hero h2:not(:first-of-type),
.nova-top-hero h3 {
    margin: 0 0 28px !important;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #182134;
}

.nova-top-hero p {
    font-size: 18px;
    line-height: 1.72;
    color: #2e3646;
    margin-bottom: 20px;
}

.nova-top-hero strong {
    color: #141d30;
}

.nova-top-hero img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;

    box-shadow:
        0 14px 36px rgba(20, 28, 45, 0.10);
}

.nova-top-hero .wp-block-spacer {
    height: 18px !important;
}

.nova-top-hero .gb-container,
.nova-top-hero .wp-block-columns,
.nova-top-hero .wp-block-group {
    align-items: center;
}

.nova-top-hero > *:last-child {
    margin-bottom: 0 !important;
}

/* Desktop kolon oranı: görsel %46, metin %54 */
.nova-top-hero .wp-block-columns {
    gap: 36px !important;
    align-items: center !important;
}

.nova-top-hero .wp-block-column:first-child {
    flex-basis: 46% !important;
}

.nova-top-hero .wp-block-column:last-child {
    flex-basis: 54% !important;
}

.nova-top-hero .wp-block-column:last-child p {
    max-width: 100% !important;
}

@media (max-width: 1024px) {

    .nova-top-hero {
        padding: 36px 30px 42px;
        border-radius: 24px;
    }

    .nova-top-hero > h1,
    .nova-top-hero > h2:first-of-type {
        font-size: clamp(34px, 5vw, 48px);
    }

    .nova-top-hero h2:not(:first-of-type),
    .nova-top-hero h3 {
        font-size: clamp(24px, 3vw, 32px);
    }

    .nova-top-hero p {
        font-size: 17px;
    }
}

@media (max-width: 781px) {

    .nova-top-hero {
        width: calc(100% - 32px) !important;
    }

    .nova-top-hero .wp-block-columns {
        gap: 24px !important;
    }

    .nova-top-hero .wp-block-column:first-child,
    .nova-top-hero .wp-block-column:last-child {
        flex-basis: 100% !important;
    }
}

@media (max-width: 700px) {

    .nova-top-hero {
        width: auto !important;
        max-width: none !important;
        margin: 22px 12px 38px !important;
        padding: 26px 18px 30px !important;
        box-sizing: border-box !important;
        border-radius: 18px !important;
    }

    .nova-top-hero .wp-block-columns {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        gap: 26px !important;
    }

    .nova-top-hero .wp-block-column {
        width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
        margin: 0 !important;
        min-width: 0 !important;
    }

    .nova-top-hero .gb-container,
    .nova-top-hero .wp-block-group {
        width: 100% !important;
        max-width: none !important;
    }

    .nova-top-hero h2 {
        font-size: 29px !important;
        line-height: 1.18 !important;
        margin-bottom: 22px !important;
    }

    .nova-top-hero img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
    }

    .nova-top-hero p {
        width: 100% !important;
        max-width: none !important;
        font-size: 17px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .nova-top-hero .wp-block-column:last-child p:first-child {
        font-size: 18px !important;
        line-height: 1.55 !important;
    }

    .nova-top-hero .wp-block-spacer {
        height: 18px !important;
    }
}

/* ======================================================
   NOVA VITA – MOBİL H1 PREMIUM FINAL
   Alt bloklarla aynı görsel genişlik
   ====================================================== */

@media (max-width: 700px) {

    /*
     * H1, kendi dar parent alanından çıkarılarak viewport içinde
     * sağdan ve soldan yaklaşık 32 px boşlukla ortalanır.
     * Böylece aşağıdaki premium içerik kartlarıyla aynı genişlik hissini verir.
     */
    body.home h1 {
        width: calc(100vw - 64px) !important;
        max-width: 580px !important;

        margin-top: 26px !important;
        margin-bottom: 34px !important;
        margin-left: calc((100% - 100vw) / 2 + 32px) !important;
        margin-right: 0 !important;

        padding: 0 !important;
        box-sizing: border-box !important;

        font-size: 0 !important;
        line-height: 1 !important;

        text-align: center !important;
        position: relative !important;
    }

    body.home h1::after {
        content:
            "İstanbul’da\A"
            "Biofeedback\A"
            "ve\A"
            "Biorezonans\A"
            "Uygulamaları";

        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: pre !important;

        padding: 30px 22px 32px !important;

        background:
            radial-gradient(
                circle at 85% 10%,
                rgba(118, 85, 216, 0.10),
                transparent 34%
            ),
            linear-gradient(
                145deg,
                #ffffff 0%,
                #faf8ff 52%,
                #f3efff 100%
            ) !important;

        border: 1px solid rgba(118, 85, 216, 0.18) !important;
        border-radius: 26px !important;

        box-shadow:
            0 18px 45px rgba(24, 28, 50, 0.07),
            0 4px 14px rgba(118, 85, 216, 0.05) !important;

        color: #151c2e !important;
        text-align: center !important;

        font-size: 30px !important;
        line-height: 1.12 !important;
        letter-spacing: -0.03em !important;
        font-weight: 800 !important;
    }

    /* Mobilde ana başlıktaki çift mor oku gizler */
    body.home .gb-shape:has(svg[viewBox="0 0 80 47"]) {
        display: none !important;
    }
}


/* ======================================================
   NOVA VITA – PREMIUM SECTION CARD SYSTEM
   ====================================================== */

/*
 * Ana sayfadaki mantıksal içerik bölümleri için ortak premium kart.
 * Bu class yalnızca WordPress'te "nova-section-card" verilen Group bloklarını etkiler.
 */
.nova-section-card {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 48px auto;
    padding: 44px 48px;
    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 90% 6%,
            rgba(118, 85, 216, 0.075),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaff 56%,
            #f7f4ff 100%
        );

    border: 1px solid rgba(118, 85, 216, 0.14);
    border-radius: 26px;

    box-shadow:
        0 18px 48px rgba(24, 28, 50, 0.055),
        0 4px 14px rgba(118, 85, 216, 0.035);
}

/* Kart başlıkları */
.nova-section-card > h2,
.nova-section-card > .wp-block-heading:first-child {
    margin-top: 0 !important;
    margin-bottom: 22px !important;

    font-size: clamp(28px, 3vw, 38px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    font-weight: 750 !important;

    color: #151c2e !important;
}

/* Kart paragraf tipografisi */
/* Kart içindeki tüm metinleri aynı tipografide tutar */
.nova-section-card p,
.nova-section-card li {
    font-size: 18px !important;
    line-height: 1.72 !important;
    color: #343b49 !important;
    font-weight: 400 !important;
}

/* Paragraf ritmi */
.nova-section-card p {
    margin-top: 0;
    margin-bottom: 18px;
}

/* Bullet / numbered list tipografisi */
.nova-section-card ul,
.nova-section-card ol {
    margin-top: 10px;
    margin-bottom: 22px;
    padding-left: 1.45em;
}

.nova-section-card li {
    margin-bottom: 10px;
}

.nova-section-card li:last-child {
    margin-bottom: 0;
}

/* Vurgulu metinler */
.nova-section-card strong,
.nova-section-card b {
    font-weight: 700 !important;
    color: #151c2e !important;
}

/* İlk paragraf başlığa biraz daha yakın */
.nova-section-card > h2 + p,
.nova-section-card > .wp-block-heading:first-child + p {
    margin-top: 0;
}

/* Son elemanın kart tabanında gereksiz boşluk bırakmasını engeller */
.nova-section-card > *:last-child {
    margin-bottom: 0 !important;
}

/* Kart içindeki iki sütunlu bölümlere daha dengeli aralık */
.nova-section-card .wp-block-columns {
    gap: 36px !important;
    align-items: center !important;
    margin-bottom: 0 !important;
}

/* Kart içindeki görseller */
.nova-section-card img {
    border-radius: 18px;
}

/* Uygulama Alanları gibi iç Container bloklarını mini kartlara dönüştürür */
.nova-section-card > .gb-container {
    padding: 22px 24px;
    margin-bottom: 18px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(118, 85, 216, 0.10);
    border-radius: 18px;

    box-shadow:
        0 6px 18px rgba(24, 28, 50, 0.035);
}

/* İç Container sonuncuysa ekstra alt boşluğu kaldır */
.nova-section-card > .gb-container:last-child {
    margin-bottom: 0;
}

/* Süreç bölümündeki H3 adımlarını belirginleştir */
.nova-section-card h3 {
    position: relative;

    margin-top: 30px !important;
    margin-bottom: 12px !important;
    padding: 14px 18px;

    background:
        linear-gradient(
            135deg,
            rgba(118, 85, 216, 0.075),
            rgba(118, 85, 216, 0.025)
        );

    border-left: 4px solid #7655d8;
    border-radius: 12px;

    font-size: 21px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    color: #182134 !important;
}

/* Kartın ilk H3'ü gereksiz yukarı boşluk almasın */
.nova-section-card > h2 + h3,
.nova-section-card > .wp-block-heading:first-child + h3 {
    margin-top: 8px !important;
}

/* Kart içi spacer'ları daha kontrollü hale getirir */
.nova-section-card > .wp-block-spacer {
    height: 18px !important;
}

/* Tablet */
@media (max-width: 1024px) {

    .nova-section-card {
        width: calc(100% - 32px);
        margin: 40px auto;
        padding: 36px 30px;
        border-radius: 22px;
    }

    .nova-section-card .wp-block-columns {
        gap: 28px !important;
    }

    .nova-section-card p,
    .nova-section-card li {
        font-size: 17px !important;
    }
}

/* Mobil */
@media (max-width: 700px) {

    .nova-section-card {
        width: calc(100% - 24px);
        max-width: none;
        margin: 30px auto;
        padding: 24px 18px;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .nova-section-card > h2,
    .nova-section-card > .wp-block-heading:first-child {
        margin-bottom: 18px !important;

        font-size: 27px !important;
        line-height: 1.2 !important;
    }

    .nova-section-card p,
    .nova-section-card li {
        font-size: 16.5px !important;
        line-height: 1.65 !important;
    }

    .nova-section-card ul,
    .nova-section-card ol {
        padding-left: 1.35em;
        margin-bottom: 18px;
    }

    .nova-section-card li {
        margin-bottom: 8px;
    }

    .nova-section-card .wp-block-columns {
        gap: 22px !important;
    }

    .nova-section-card > .gb-container {
        padding: 18px;
        margin-bottom: 14px;
        border-radius: 16px;
    }

    .nova-section-card h3 {
        margin-top: 24px !important;
        padding: 12px 14px;

        font-size: 19px !important;
        line-height: 1.32 !important;
    }
}


/* ======================================================
   NOVA VITA – BLOG CTA / WHATSAPP
   ====================================================== */

.nova-blog-cta {
    max-width: 1040px;
    width: calc(100% - 40px);
    margin: 56px auto 24px;
    padding: 38px 42px;
    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(118, 85, 216, 0.09),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaff 56%,
            #f5f1ff 100%
        );

    border: 1px solid rgba(118, 85, 216, 0.16);
    border-radius: 24px;

    box-shadow:
        0 18px 46px rgba(24, 28, 50, 0.06),
        0 4px 14px rgba(118, 85, 216, 0.04);
}

.nova-blog-cta > h2,
.nova-blog-cta .wp-block-heading:first-child {
    margin: 0 0 14px !important;

    font-size: clamp(25px, 2.2vw, 29px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    font-weight: 750 !important;

    color: #151c2e !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.nova-blog-cta > p:not(.nova-cta-note) {
    max-width: 820px;
    margin: 0 0 24px !important;

    font-size: 17.5px !important;
    line-height: 1.68 !important;
    color: #414856 !important;
}

.nova-blog-cta-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    margin: 0 0 18px !important;
}

/* WhatsApp: beyaz zemin + orijinal yeşil ikon/vurgu */
.nova-cta-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    width: 340px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;

    min-height: 52px;
    padding: 0 20px !important;

    background: #ffffff !important;
    border: 1.5px solid #25D366 !important;
    border-radius: 13px !important;

    color: #17324a !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow:
        0 8px 20px rgba(37, 211, 102, 0.10);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;
}

.nova-cta-whatsapp:hover {
    transform: translateY(-2px);
    background: #f2fff7 !important;
    border-color: #1fb959 !important;

    box-shadow:
        0 12px 26px rgba(37, 211, 102, 0.16);
}

/* GenerateBlocks / Gutenberg ikonlarını WhatsApp yeşiline zorlar */
.nova-cta-whatsapp svg,
.nova-cta-whatsapp svg path,
.nova-cta-whatsapp .gb-icon svg,
.nova-cta-whatsapp .gb-icon svg path {
    fill: #25D366 !important;
    color: #25D366 !important;
}

.nova-cta-whatsapp .gb-icon,
.nova-cta-whatsapp svg {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 auto;
}

/* İkincil iletişim butonu */
.nova-cta-contact {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 340px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;

    min-height: 52px;
    padding: 0 22px !important;

    background:
        linear-gradient(
            135deg,
            #7b5bd6 0%,
            #6542c5 100%
        ) !important;

    border: 1px solid transparent !important;
    border-radius: 13px !important;

    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow:
        0 8px 20px rgba(118, 85, 216, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
}

.nova-cta-contact:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(118, 85, 216, 0.28);
}

/* CTA alt notu */
.nova-cta-note {
    width: 100% !important;
    max-width: 1040px !important;
    margin: 14px auto 0 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;

    text-align: center !important;

    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #7b808b !important;
    font-style: italic;
}

/* Klavye erişilebilirliği */
.nova-cta-whatsapp:focus-visible,
.nova-cta-contact:focus-visible {
    outline: 3px solid rgba(118, 85, 216, 0.30);
    outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1024px) {

    .nova-blog-cta {
        width: calc(100% - 32px);
        margin-top: 46px;
        padding: 34px 30px;
        border-radius: 22px;
    }
}

/* Mobil */
@media (max-width: 700px) {

    .nova-blog-cta {
        width: calc(100% - 24px);
        margin: 34px auto 18px;
        padding: 28px 20px;

        border-radius: 20px;
    }

    .nova-blog-cta > h2,
    .nova-blog-cta .wp-block-heading:first-child {
        margin-bottom: 12px !important;

        font-size: 25px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .nova-blog-cta > p:not(.nova-cta-note) {
        margin-bottom: 20px !important;

        font-size: 16.5px !important;
        line-height: 1.65 !important;
    }

    .nova-blog-cta-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .nova-cta-whatsapp,
    .nova-cta-contact {
        width: 100% !important;
        min-height: 52px;
        box-sizing: border-box;

        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .nova-cta-note {
        margin-top: 12px !important;
        padding: 0 16px !important;

        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }
}


/* ======================================================
   NOVA VITA – PREMIUM İLETİŞİM SAYFASI
   ====================================================== */

.nova-contact-main,
.nova-contact-transport,
.nova-contact-map {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 48px auto;
    padding: 44px 48px;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 90% 6%, rgba(118, 85, 216, 0.075), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #fbfaff 56%, #f7f4ff 100%);

    border: 1px solid rgba(118, 85, 216, 0.14);
    border-radius: 26px;

    box-shadow:
        0 18px 48px rgba(24, 28, 50, 0.055),
        0 4px 14px rgba(118, 85, 216, 0.035);
}

.nova-contact-main h2,
.nova-contact-transport h2,
.nova-contact-map h2 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    font-weight: 750 !important;
    color: #151c2e !important;
}

.nova-contact-main h3,
.nova-contact-transport h3,
.nova-contact-map h3 {
    margin-top: 24px !important;
    margin-bottom: 10px !important;
    font-size: 21px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    color: #182134 !important;
}

.nova-contact-main p,
.nova-contact-transport p,
.nova-contact-map p {
    font-size: 18px !important;
    line-height: 1.72 !important;
    color: #343b49 !important;
}

.nova-contact-main .wp-block-columns,
.nova-contact-transport .wp-block-columns {
    gap: 24px !important;
    margin-top: 22px !important;
    margin-bottom: 22px !important;
}

.nova-contact-main .wp-block-column,
.nova-contact-transport .wp-block-column {
    padding: 20px 22px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(118, 85, 216, 0.10);
    border-radius: 17px;
    box-shadow: 0 7px 20px rgba(24, 28, 50, 0.035);
}

.nova-contact-main strong,
.nova-contact-main b,
.nova-contact-transport strong,
.nova-contact-transport b,
.nova-contact-map strong,
.nova-contact-map b {
    color: #151c2e !important;
    font-weight: 700 !important;
}

.nova-contact-map iframe {
    display: block;
    width: 100% !important;
    min-height: 400px;
    border: 0 !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(24, 28, 50, 0.07);
}

.nova-contact-map figure,
.nova-contact-map .wp-block-embed {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.nova-contact-parking {
    margin: 24px 0 0 !important;
    padding: 16px 18px !important;
    background: linear-gradient(
        135deg,
        rgba(118, 85, 216, 0.075),
        rgba(118, 85, 216, 0.025)
    ) !important;
    border: 1px solid rgba(118, 85, 216, 0.12);
    border-left: 4px solid #7655d8;
    border-radius: 14px;
    color: #414856 !important;
}

.nova-contact-main > *:last-child,
.nova-contact-transport > *:last-child,
.nova-contact-map > *:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
    .nova-contact-main,
    .nova-contact-transport,
    .nova-contact-map {
        width: calc(100% - 32px);
        margin: 40px auto;
        padding: 36px 30px;
        border-radius: 22px;
    }

    .nova-contact-main p,
    .nova-contact-transport p,
    .nova-contact-map p {
        font-size: 17px !important;
    }

    .nova-contact-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 700px) {
    body.page .nova-contact-main,
    body.page .nova-contact-transport,
    body.page .nova-contact-map {
        width: calc(100% - 20px) !important;
        max-width: none !important;
        margin: 30px auto !important;
        padding: 24px 18px !important;
        border-radius: 20px;
        box-sizing: border-box !important;
    }

    .nova-contact-main h2,
    .nova-contact-transport h2,
    .nova-contact-map h2 {
        margin-bottom: 16px !important;
        font-size: 27px !important;
        line-height: 1.2 !important;
    }

    .nova-contact-main h3,
    .nova-contact-transport h3,
    .nova-contact-map h3 {
        font-size: 19px !important;
    }

    .nova-contact-main p,
    .nova-contact-transport p,
    .nova-contact-map p {
        font-size: 16.5px !important;
        line-height: 1.65 !important;
    }

    .nova-contact-main .wp-block-columns,
    .nova-contact-transport .wp-block-columns {
        width: 100% !important;
        max-width: 100% !important;
        gap: 14px !important;
        margin: 18px 0 !important;
    }

    .nova-contact-main .wp-block-column,
    .nova-contact-transport .wp-block-column {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex-basis: 100% !important;
        padding: 17px 18px;
        border-radius: 15px;
        box-sizing: border-box !important;
    }

    .nova-contact-map iframe {
        min-height: 300px;
        border-radius: 16px !important;
    }

    .nova-contact-parking {
        margin-top: 18px !important;
        padding: 14px 15px !important;
        border-radius: 12px;
    }
}

/* ======================================================
   NOVA VITA – SINGLE POST MOBİL H1 SON AYAR
   ====================================================== */

@media (max-width: 700px) {
    body.single-post .page-hero h1,
    body.single-post h1.entry-title,
    body.single-post h1.gb-headline,
    body.single-post .gb-headline-text h1 {
        font-size: 34px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.025em !important;
        font-weight: 800 !important;
        max-width: 92% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
}


/* ======================================================
   NOVA VITA – PREMIUM BLOG / SINGLE POST SYSTEM
   Tüm mevcut ve gelecekteki blog yazıları
   ====================================================== */

/* ---------- PAGE HERO ---------- */

body.single-post .nova-post-hero {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 42px auto 30px;
    padding: 42px 48px;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 90% 7%, rgba(118, 85, 216, 0.08), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #fbfaff 56%, #f7f4ff 100%);

    border: 1px solid rgba(118, 85, 216, 0.15);
    border-radius: 26px;

    box-shadow:
        0 18px 48px rgba(24, 28, 50, 0.055),
        0 4px 14px rgba(118, 85, 216, 0.04);
}

/* Page Hero başlığı */
body.single-post .nova-post-title h1,
body.single-post .nova-post-hero h1 {
    margin: 0 !important;

    font-size: clamp(38px, 4.4vw, 56px) !important;
    line-height: 1.07 !important;
    letter-spacing: -0.035em !important;
    font-weight: 800 !important;

    color: #151c2e !important;
    text-wrap: balance;
}

/* Yazar kutusu */
body.single-post .nova-post-author {
    padding: 24px 26px !important;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(118, 85, 216, 0.11);
    border-radius: 18px;

    box-shadow: 0 8px 22px rgba(24, 28, 50, 0.035);
}

body.single-post .nova-post-author p {
    margin-bottom: 8px;
    line-height: 1.55;
}

body.single-post .nova-post-author p:last-child {
    margin-bottom: 0;
}

/* ---------- FEATURED IMAGE ---------- */

body.single-post .post-image,
body.single-post .featured-image {
    max-width: 1040px;
    width: calc(100% - 40px);
    margin: 32px auto 34px !important;
}

body.single-post .post-image img,
body.single-post .featured-image img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 22px;

    box-shadow:
        0 16px 40px rgba(24, 28, 50, 0.08);
}

/* ---------- ARTICLE CARD ---------- */

body.single-post .entry-content {
    max-width: 1000px;
    width: calc(100% - 40px);
    margin: 34px auto 48px !important;
    padding: 52px 64px 62px;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 92% 4%, rgba(118, 85, 216, 0.055), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #fdfcff 60%, #faf8ff 100%);

    border: 1px solid rgba(118, 85, 216, 0.12);
    border-radius: 26px;

    box-shadow:
        0 18px 48px rgba(24, 28, 50, 0.05),
        0 4px 14px rgba(118, 85, 216, 0.03);

    color: #343b49;
}

/* Okuma genişliği */
body.single-post .entry-content > p,
body.single-post .entry-content > h2,
body.single-post .entry-content > h3,
body.single-post .entry-content > h4,
body.single-post .entry-content > ul,
body.single-post .entry-content > ol,
body.single-post .entry-content > blockquote,
body.single-post .entry-content > table,
body.single-post .entry-content > .wp-block-table,
body.single-post .entry-content > .wp-block-group:not(.alignwide):not(.alignfull) {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

/* Body copy */
body.single-post .entry-content p,
body.single-post .entry-content li {
    font-size: 18px !important;
    line-height: 1.78 !important;
    color: #343b49 !important;
}

body.single-post .entry-content p {
    margin-top: 0;
    margin-bottom: 20px;
}

/* H2 */
body.single-post .entry-content h2 {
    position: relative;

    margin-top: 54px !important;
    margin-bottom: 24px !important;
    padding-bottom: 14px;

    font-size: 32px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.025em !important;
    font-weight: 780 !important;

    color: #151c2e !important;
}

body.single-post .entry-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 72px;
    height: 4px;

    background: linear-gradient(90deg, #7655d8 0%, rgba(118, 85, 216, 0.20) 100%);
    border-radius: 999px;
}

/* İlk H2 gereksiz yukarı boşluk almasın */
body.single-post .entry-content > h2:first-child {
    margin-top: 0 !important;
}

/* H3 */
body.single-post .entry-content h3 {
    margin-top: 38px !important;
    margin-bottom: 16px !important;
    padding-left: 15px;

    border-left: 4px solid #7655d8;

    font-size: 24px !important;
    line-height: 1.28 !important;
    letter-spacing: -0.015em !important;
    font-weight: 720 !important;

    color: #182134 !important;
}

/* H4 */
body.single-post .entry-content h4 {
    margin-top: 30px !important;
    margin-bottom: 12px !important;

    font-size: 20px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;

    color: #20283a !important;
}

/* Listeler */
body.single-post .entry-content ul,
body.single-post .entry-content ol {
    margin-top: 10px;
    margin-bottom: 24px;
    padding-left: 1.5em;
}

body.single-post .entry-content li {
    margin-bottom: 10px;
}

body.single-post .entry-content li:last-child {
    margin-bottom: 0;
}

body.single-post .entry-content li::marker {
    color: #7655d8;
}

/* Kalın vurgular */
body.single-post .entry-content strong,
body.single-post .entry-content b {
    color: #151c2e;
    font-weight: 700;
}

/* Linkler */
body.single-post .entry-content a {
    color: #6542c5;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

body.single-post .entry-content a:hover {
    color: #4f32a4;
}

/* Blockquote / önemli bilgi */
body.single-post .entry-content blockquote {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
    padding: 24px 26px;

    background:
        linear-gradient(
            135deg,
            rgba(118, 85, 216, 0.085),
            rgba(118, 85, 216, 0.025)
        );

    border: 1px solid rgba(118, 85, 216, 0.12);
    border-left: 4px solid #7655d8;
    border-radius: 14px;

    color: #343b49;
}

body.single-post .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

/* İçerik görselleri */
body.single-post .entry-content figure,
body.single-post .entry-content .wp-block-image {
    max-width: 920px;
    margin: 34px auto !important;
}

body.single-post .entry-content img {
    height: auto;
    border-radius: 18px;
}

body.single-post .entry-content figcaption {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #777d89;
    text-align: center;
}

/* Separator */
body.single-post .entry-content .wp-block-separator {
    max-width: 830px;
    margin: 42px auto !important;

    border: 0 !important;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(118, 85, 216, 0.32) 18%,
        rgba(118, 85, 216, 0.32) 82%,
        transparent 100%
    );
}

/* Tablolar */
body.single-post .entry-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(118, 85, 216, 0.12);
    border-radius: 14px;
}

body.single-post .entry-content th,
body.single-post .entry-content td {
    padding: 12px 14px;
    border-color: rgba(21, 28, 46, 0.08);
}

body.single-post .entry-content th {
    background: #f7f4ff;
    color: #151c2e;
}

/* Varsayılan footer kategori / etiket bilgisini gizle */
body.single-post .entry-footer .cat-links,
body.single-post .entry-footer .tags-links {
    display: none !important;
}

/* Post navigation */
body.single-post .post-navigation {
    max-width: 1000px;
    width: calc(100% - 40px);
    margin: 28px auto 48px;
}

/* ---------- TABLET ---------- */

@media (max-width: 1024px) {

    body.single-post .nova-post-hero {
        width: calc(100% - 32px);
        margin-top: 34px;
        padding: 34px 30px;
        border-radius: 22px;
    }

    body.single-post .entry-content {
        width: calc(100% - 32px);
        padding: 42px 38px 50px;
        border-radius: 22px;
    }

    body.single-post .entry-content p,
    body.single-post .entry-content li {
        font-size: 17px !important;
    }

    body.single-post .entry-content h2 {
        font-size: 29px !important;
    }
}

/* ---------- MOBILE ---------- */

@media (max-width: 700px) {

    body.single-post .nova-post-hero {
        width: calc(100% - 24px);
        margin: 24px auto 22px;
        padding: 26px 20px;
        border-radius: 20px;
    }

    body.single-post .nova-post-title h1,
    body.single-post .nova-post-hero h1 {
        font-size: 32px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.03em !important;
        text-align: center !important;
    }

    body.single-post .nova-post-author {
        margin-top: 22px;
        padding: 18px !important;
        border-radius: 15px;
        text-align: center;
    }

    body.single-post .post-image,
    body.single-post .featured-image {
        width: calc(100% - 24px);
        margin: 24px auto 24px !important;
    }

    body.single-post .post-image img,
    body.single-post .featured-image img {
        border-radius: 16px;
    }

    body.single-post .entry-content {
        width: calc(100% - 24px);
        margin: 24px auto 34px !important;
        padding: 28px 20px 34px;

        border-radius: 20px;
    }

    body.single-post .entry-content p,
    body.single-post .entry-content li {
        font-size: 16.5px !important;
        line-height: 1.68 !important;
    }

    body.single-post .entry-content h2 {
        margin-top: 42px !important;
        margin-bottom: 20px !important;

        font-size: 27px !important;
        line-height: 1.2 !important;
    }

    body.single-post .entry-content h2::after {
        width: 56px;
        height: 3px;
    }

    body.single-post .entry-content h3 {
        margin-top: 30px !important;
        padding-left: 12px;

        font-size: 21px !important;
        line-height: 1.3 !important;
    }

    body.single-post .entry-content blockquote {
        padding: 19px 18px;
        border-radius: 12px;
    }

    body.single-post .entry-content figure,
    body.single-post .entry-content .wp-block-image {
        margin: 26px auto !important;
    }

    body.single-post .post-navigation {
        width: calc(100% - 24px);
        margin-bottom: 34px;
    }
}


/* ======================================================
   NOVA VITA – HEADER SLOGAN
   ====================================================== */

/* Masaüstünde mevcut slogan tek satır */
.site-description {
    white-space: nowrap;
}

/* Mobilde slogan tam iki kontrollü satır */
@media (max-width: 700px) {

    .site-description {
        width: 230px !important;
        max-width: 230px !important;
        margin: 0 !important;

        font-size: 0 !important;
        line-height: 1 !important;

        white-space: normal !important;
    }

    .site-description::before {
        content: none !important;
        display: none !important;
    }

    .site-description::after {
        content: "Bedeninizi Dinleyin\A Dengeyi Yeniden Öğrenin…";

        display: block !important;
        white-space: pre !important;

        font-size: 14px !important;
        line-height: 1.35 !important;
        font-weight: 600 !important;
        letter-spacing: -0.01em;

        color: inherit;
    }
}

/* ======================================================
   NOVA VITA – PREMIUM BLOG DISCLAIMER
   Ana blog metni ile aynı okuma genişliği
   Dış Group/Container class: nova-post-disclaimer
   Opsiyonel Separator class: nova-disclaimer-separator
   ====================================================== */

/* Ana kutu: blog ana metni ile aynı 830 px okuma genişliği */
body.single-post .entry-content .nova-post-disclaimer {
    display: block !important;
    width: 100% !important;
    max-width: 830px !important;
    margin: 38px auto 36px !important;
    padding: 26px 30px !important;
    box-sizing: border-box !important;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(118, 85, 216, 0.075),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaff 54%,
            #f4f0ff 100%
        ) !important;

    border: 1px solid rgba(118, 85, 216, 0.15) !important;
    border-radius: 22px !important;

    box-shadow:
        0 16px 38px rgba(24, 28, 50, 0.055),
        0 4px 12px rgba(118, 85, 216, 0.035) !important;
}

/* Eğer class doğrudan Paragraph/Quote bloğuna verilmişse de aynı genişlikte çalışsın */
body.single-post .entry-content p.nova-post-disclaimer,
body.single-post .entry-content blockquote.nova-post-disclaimer {
    width: 100% !important;
    max-width: 830px !important;
}

/* Kutunun içindeki metin ayrıca daralmasın */
body.single-post .entry-content .nova-post-disclaimer > p,
body.single-post .entry-content .nova-post-disclaimer blockquote,
body.single-post .entry-content .nova-post-disclaimer blockquote > p {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Nested quote/group nedeniyle ikinci bir kutu oluşmasını engelle */
body.single-post .entry-content .nova-post-disclaimer blockquote,
body.single-post .entry-content .nova-post-disclaimer .wp-block-group {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Disclaimer metni */
body.single-post .entry-content .nova-post-disclaimer,
body.single-post .entry-content .nova-post-disclaimer p,
body.single-post .entry-content p.nova-post-disclaimer,
body.single-post .entry-content blockquote.nova-post-disclaimer,
body.single-post .entry-content blockquote.nova-post-disclaimer p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: #626977 !important;
    font-style: italic !important;
    letter-spacing: 0 !important;
}

/* Paragraf ritmi */
body.single-post .entry-content .nova-post-disclaimer p {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

body.single-post .entry-content .nova-post-disclaimer p:last-child {
    margin-bottom: 0 !important;
}

/* Kalın vurgular */
body.single-post .entry-content .nova-post-disclaimer strong,
body.single-post .entry-content .nova-post-disclaimer b {
    color: #4b5361 !important;
    font-weight: 700 !important;
}

/* Opsiyonel separator: disclaimer kutusuyla aynı eksende */
body.single-post .entry-content .nova-disclaimer-separator {
    display: block !important;
    width: 160px !important;
    max-width: 160px !important;
    height: 1px !important;
    margin: 34px auto 18px !important;
    border: 0 !important;
    opacity: 1 !important;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(118, 85, 216, 0.48) 25%,
            rgba(118, 85, 216, 0.48) 75%,
            transparent 100%
        ) !important;
}

/* Tablet */
@media (max-width: 1024px) {
    body.single-post .entry-content .nova-post-disclaimer {
        width: 100% !important;
        max-width: 830px !important;
        margin: 34px auto 32px !important;
        padding: 24px 26px !important;
        border-radius: 20px !important;
    }
}

/* Mobil: blog metninin kullanabildiği tüm iç genişliği kaplar */
@media (max-width: 700px) {
    body.single-post .entry-content .nova-post-disclaimer {
        width: 100% !important;
        max-width: none !important;
        margin: 28px 0 26px !important;
        padding: 18px 18px !important;
        border-radius: 18px !important;
    }

    body.single-post .entry-content .nova-post-disclaimer,
    body.single-post .entry-content .nova-post-disclaimer p,
    body.single-post .entry-content p.nova-post-disclaimer,
    body.single-post .entry-content blockquote.nova-post-disclaimer,
    body.single-post .entry-content blockquote.nova-post-disclaimer p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }

    body.single-post .entry-content .nova-disclaimer-separator {
        width: 120px !important;
        max-width: 120px !important;
        margin: 26px auto 14px !important;
    }
}

/* ======================================================
   NOVA VITA – JETPACK RELATED POSTS
   Premium masaüstü + mobil düzen
   ====================================================== */

/* Ana bölüm */
body.single-post #jp-relatedposts {
    max-width: 830px !important;
    width: 100% !important;
    margin: 42px auto 24px !important;
    padding: 0 !important;
}

/* Başlık */
body.single-post #jp-relatedposts .jp-relatedposts-headline {
    display: block !important;
    width: 100% !important;
    margin: 0 0 24px !important;
    padding: 0 0 14px 16px !important;

    border-left: 4px solid #7655d8 !important;
    border-bottom: 0 !important;

    font-size: 30px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    font-weight: 780 !important;

    color: #151c2e !important;
}

body.single-post #jp-relatedposts .jp-relatedposts-headline em {
    font-style: normal !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
}

/* Jetpack'in başlığın önüne çizgi ekleyen pseudo elementini kapat */
body.single-post #jp-relatedposts .jp-relatedposts-headline em::before {
    display: none !important;
}

/* Grid */
body.single-post #jp-relatedposts .jp-relatedposts-items {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;

    width: 100% !important;
    margin: 0 !important;
}

/* Her ilgili yazı */
body.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;

    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(118, 85, 216, 0.10);
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 7px 20px rgba(24, 28, 50, 0.035);
}

/* Thumbnail */
body.single-post #jp-relatedposts .jp-relatedposts-post img.jp-relatedposts-post-img,
body.single-post #jp-relatedposts .jp-relatedposts-post .jp-relatedposts-post-img {
    display: block !important;
    width: 100% !important;
    height: 150px !important;
    margin: 0 !important;

    object-fit: cover !important;
    border-radius: 0 !important;
}

/* Başlık */
body.single-post #jp-relatedposts .jp-relatedposts-post-title {
    margin: 0 !important;
    padding: 16px 16px 18px !important;

    font-size: 18px !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em !important;
    font-weight: 700 !important;

    color: #2f3650 !important;
}

body.single-post #jp-relatedposts .jp-relatedposts-post-title a {
    color: #6f53c7 !important;
    text-decoration: none !important;

    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
}

body.single-post #jp-relatedposts .jp-relatedposts-post-title a:hover {
    color: #5133a8 !important;
}

/* Context / meta varsa */
body.single-post #jp-relatedposts .jp-relatedposts-post-context,
body.single-post #jp-relatedposts .jp-relatedposts-post-date {
    padding: 0 16px 14px !important;

    font-size: 13px !important;
    line-height: 1.45 !important;
    color: #7b808b !important;
}

/* TABLET */
@media (max-width: 1024px) {
    body.single-post #jp-relatedposts .jp-relatedposts-items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    body.single-post #jp-relatedposts .jp-relatedposts-headline {
        font-size: 27px !important;
    }
}

/* MOBILE */
@media (max-width: 700px) {

    body.single-post #jp-relatedposts {
        width: 100% !important;
        max-width: none !important;
        margin: 34px 0 18px !important;
    }

    body.single-post #jp-relatedposts .jp-relatedposts-headline {
        margin-bottom: 18px !important;
        padding: 0 0 10px 12px !important;

        font-size: 24px !important;
        line-height: 1.2 !important;
        border-left-width: 4px !important;
    }

    /* Mobilde 2 dar kolon yerine tek kolon */
    body.single-post #jp-relatedposts .jp-relatedposts-items {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* Her related post yatay mini kart */
    body.single-post #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
        display: grid !important;
        grid-template-columns: 120px minmax(0, 1fr) !important;
        align-items: stretch !important;

        min-height: 92px;
        border-radius: 14px;
    }

    body.single-post #jp-relatedposts .jp-relatedposts-post img.jp-relatedposts-post-img,
    body.single-post #jp-relatedposts .jp-relatedposts-post .jp-relatedposts-post-img {
        width: 120px !important;
        height: 100% !important;
        min-height: 92px !important;

        object-fit: cover !important;
    }

    body.single-post #jp-relatedposts .jp-relatedposts-post-title {
        display: flex !important;
        align-items: center !important;

        padding: 14px 15px !important;

        font-size: 16px !important;
        line-height: 1.35 !important;
    }

    body.single-post #jp-relatedposts .jp-relatedposts-post-title a {
        display: block !important;

        word-break: normal !important;
        overflow-wrap: anywhere !important;
        hyphens: none !important;
    }

    /* Mobil yatay kartta gereksiz meta bilgileri sadeleştir */
    body.single-post #jp-relatedposts .jp-relatedposts-post-context,
    body.single-post #jp-relatedposts .jp-relatedposts-post-date {
        display: none !important;
    }
}

/* ======================================================
   NOVA VITA – BLOG ARŞİV / BLOG SAYFASI MOBİL DÜZELTME
   /blog/ hero başlığı + mor ok + giriş metni
   ====================================================== */

@media (max-width: 700px) {

    /* Blog sayfasının ana içerik alanında taşmayı engelle */
    body.blog .site-main,
    body.blog .content-area,
    body.blog .inside-article {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Blog sayfasındaki ana H1:
       taşma yapmasın, ortalansın, mobilde daha dengeli olsun */
    body.blog .site-main h1,
    body.blog .content-area h1,
    body.blog h1.entry-title {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;

        font-size: 34px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.03em !important;
        font-weight: 800 !important;

        text-align: center !important;
        text-wrap: balance !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    /* Hero içinde kullanılan GenerateBlocks çift ok */
    body.blog .site-main .gb-shape,
    body.blog .content-area .gb-shape {
        display: block !important;

        width: 58px !important;
        max-width: 58px !important;
        height: auto !important;

        margin: 0 auto 16px !important;

        position: static !important;
        transform: none !important;
    }

    body.blog .site-main .gb-shape svg,
    body.blog .content-area .gb-shape svg {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: 58px !important;
    }

    /* H1 ile ok aynı satır/flex yapıda kaldıysa mobilde alt alta zorla */
    body.blog .site-main h1,
    body.blog .site-main h1 *,
    body.blog .content-area h1,
    body.blog .content-area h1 * {
        float: none !important;
    }

    /* Blog giriş açıklaması:
       ekran görüntüsündeki fazla büyük body metnini normal okuma boyutuna çek */
    body.blog .site-main > article:first-child .entry-content > p:first-of-type,
    body.blog .site-main .entry-content > p:first-of-type,
    body.blog .content-area .entry-content > p:first-of-type {
        width: 100% !important;
        max-width: 100% !important;

        margin: 24px auto 34px !important;

        font-size: 18px !important;
        line-height: 1.62 !important;
        letter-spacing: 0 !important;

        text-align: left !important;
        color: #343b49 !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
    }

    /* Blog hero çevresindeki aşırı dikey boşluğu azalt */
    body.blog .site-main .entry-header,
    body.blog .site-main .page-header {
        margin-bottom: 24px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        box-sizing: border-box !important;
    }
}

/* Daha dar telefonlar */
@media (max-width: 420px) {

    body.blog .site-main h1,
    body.blog .content-area h1,
    body.blog h1.entry-title {
        font-size: 31px !important;
        line-height: 1.1 !important;
    }

    body.blog .site-main .gb-shape,
    body.blog .content-area .gb-shape,
    body.blog .site-main .gb-shape svg,
    body.blog .content-area .gb-shape svg {
        width: 52px !important;
        max-width: 52px !important;
    }

    body.blog .site-main > article:first-child .entry-content > p:first-of-type,
    body.blog .site-main .entry-content > p:first-of-type,
    body.blog .content-area .entry-content > p:first-of-type {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }
}

/* ======================================================
   NOVA VITA – BLOG GRID KART BAŞLIKLARI
   Gerçek GenerateBlocks selector'ı
   HTML: article.dynamic-content-template > h2.gb-text > a
   ====================================================== */

body.blog article.dynamic-content-template h2.gb-text,
body.archive article.dynamic-content-template h2.gb-text {
    margin: 14px 0 8px !important;

    font-size: 20px !important;
    line-height: 1.30 !important;
    letter-spacing: -0.012em !important;
    font-weight: 600 !important;

    color: #20283a !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
}

body.blog article.dynamic-content-template h2.gb-text > a,
body.archive article.dynamic-content-template h2.gb-text > a {
    color: #20283a !important;

    font: inherit !important;
    font-weight: 600 !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;

    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-thickness: 0 !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;

    transition: color 0.2s ease !important;
}

body.blog article.dynamic-content-template h2.gb-text > a:hover,
body.archive article.dynamic-content-template h2.gb-text > a:hover {
    color: #7655d8 !important;
    text-decoration: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
    body.blog article.dynamic-content-template h2.gb-text,
    body.archive article.dynamic-content-template h2.gb-text {
        font-size: 19px !important;
    }
}

/* Mobil */
@media (max-width: 700px) {
    body.blog article.dynamic-content-template h2.gb-text,
    body.archive article.dynamic-content-template h2.gb-text {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin-top: 11px !important;
        overflow: visible !important;

        font-size: 17px !important;
        line-height: 1.32 !important;
        font-weight: 600 !important;

        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
    }

    body.blog article.dynamic-content-template h2.gb-text > a,
    body.archive article.dynamic-content-template h2.gb-text > a {
        font-weight: 600 !important;
    }

    body.blog article.dynamic-content-template,
    body.archive article.dynamic-content-template {
        padding-bottom: 18px !important;
    }
}

/* ======================================================
   NOVA VITA – BLOG GRID EŞİT HİZALAMA
   Masonry yapısında başlık bloklarını eşit yüksekliğe getirir
   ====================================================== */

/* Featured image alanlarının oranını eşitle */
body.blog article.dynamic-content-template > div > a:first-child img,
body.archive article.dynamic-content-template > div > a:first-child img {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
}

/* Masaüstünde tüm başlık blokları aynı yüksekliği kaplasın */
@media (min-width: 1025px) {

    body.blog article.dynamic-content-template h2.gb-text,
    body.archive article.dynamic-content-template h2.gb-text {
        display: -webkit-box !important;

        height: 78px !important;
        min-height: 78px !important;
        max-height: 78px !important;

        margin: 14px 0 0 !important;

        overflow: hidden !important;

        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
    }

    body.blog article.dynamic-content-template,
    body.archive article.dynamic-content-template {
        padding-bottom: 28px !important;
        box-sizing: border-box !important;
    }
}

/* Tablet: iki kolonlu düzende yine eşit başlık yüksekliği */
@media (min-width: 701px) and (max-width: 1024px) {

    body.blog article.dynamic-content-template h2.gb-text,
    body.archive article.dynamic-content-template h2.gb-text {
        display: -webkit-box !important;

        height: 74px !important;
        min-height: 74px !important;
        max-height: 74px !important;

        margin: 12px 0 0 !important;

        overflow: hidden !important;

        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
    }

    body.blog article.dynamic-content-template,
    body.archive article.dynamic-content-template {
        padding-bottom: 24px !important;
        box-sizing: border-box !important;
    }
}

/* ======================================================
   NOVA VITA – MASTER MOBILE WIDTH & SAFETY FIX
   Final override layer
   ====================================================== */

/* Genel taşma güvenliği */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

img,
video {
    height: auto;
}

/* Uzun e-posta ve URL'ler kart dışına taşmasın */
.entry-content a,
.nova-contact-main a,
.nova-contact-transport a,
.nova-contact-map a {
    overflow-wrap: anywhere;
}


/* ======================================================
   ANA SAYFA – MOBİL GENİŞLİK DÜZELTMESİ
   ====================================================== */

@media (max-width: 700px) {

    /* GeneratePress/Gutenberg katmanlarının ikinci kez daraltmasını engeller */
    body.home .site-content,
    body.home .content-area,
    body.home .site-main,
    body.home .inside-article,
    body.home .entry-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /*
     * Ana içerikte ekstra sağ-sol padding oluşmuşsa kaldırır.
     * Kartların kendi margin/padding'i zaten kontrollüdür.
     */
    body.home .inside-article {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Premium kartlar telefon ekranını verimli kullansın */
    body.home .nova-section-card {
        width: calc(100% - 20px) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 24px 18px !important;
        box-sizing: border-box !important;
    }

    /* Kart içindeki nested bloklar tekrar daralmasın */
    body.home .nova-section-card > *,
    body.home .nova-section-card .gb-container,
    body.home .nova-section-card .wp-block-group,
    body.home .nova-section-card .wp-block-columns,
    body.home .nova-section-card .wp-block-column {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    body.home .nova-section-card .gb-container,
    body.home .nova-section-card .wp-block-group,
    body.home .nova-section-card .wp-block-column {
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Mobil sütunlar tam genişlik */
    body.home .nova-section-card .wp-block-columns {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 22px !important;
    }

    body.home .nova-section-card .wp-block-column {
        flex-basis: 100% !important;
    }

    /* Kart içi listelerin ekranın ortasında dar bir kolon haline gelmesini engeller */
    body.home .nova-section-card ul,
    body.home .nova-section-card ol {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 1.35em !important;
        box-sizing: border-box !important;
    }

    body.home .nova-section-card li {
        width: auto !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    /* Kart içindeki görseller */
    body.home .nova-section-card figure,
    body.home .nova-section-card .wp-block-image {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.home .nova-section-card img {
        display: block;
        max-width: 100% !important;
        height: auto !important;
    }
}


/* ======================================================
   WHATSAPP BUTTON – FINAL
   CSS class: nova-whatsapp-btn
   ====================================================== */

.nova-whatsapp-btn {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 24px auto !important;
    box-sizing: border-box !important;
}

.nova-whatsapp-btn .wp-block-button__link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    max-width: 100% !important;

    margin: 0 auto !important;
    padding: 13px 22px !important;

    font-size: 17px !important;
    line-height: 1.3 !important;
    text-align: center !important;

    white-space: normal !important;
    box-sizing: border-box !important;
    border-radius: 10px !important;
}


/* Mobil WhatsApp */
@media (max-width: 600px) {

    .nova-whatsapp-btn {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .nova-whatsapp-btn .wp-block-button__link {
        width: auto !important;
        max-width: 300px !important;
        padding: 11px 17px !important;
        font-size: 15.5px !important;
    }
}


/* Çok küçük telefonlar */
@media (max-width: 380px) {

    .nova-whatsapp-btn .wp-block-button__link {
        max-width: 270px !important;
        padding: 10px 14px !important;
        font-size: 15px !important;
    }
}


/* ======================================================
   MOBİL BUTON GÜVENLİĞİ
   ====================================================== */

@media (max-width: 700px) {

    .wp-block-buttons {
        max-width: 100%;
        box-sizing: border-box;
    }

    .wp-block-button,
    .wp-block-button__link {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ======================================================
   NOVA VITA – UYGULAMA ALANLARI CTA
   FINAL OVERRIDE
   Gutenberg + GenerateBlocks uyumlu
   ====================================================== */


/* ------------------------------------------------------
   BUTON BLOĞUNU ORTALA
   Class wrapper'a verilmişse çalışır
   ------------------------------------------------------ */

.wp-block-button.nova-premium-cta,
.wp-block-buttons.nova-premium-cta,
.gb-button-wrapper.nova-premium-cta,
.gb-button-wrapper:has(.nova-premium-cta) {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 24px auto !important;
    box-sizing: border-box !important;
}


/* ------------------------------------------------------
   BUTONUN KENDİSİ
   Class doğrudan linke veya wrapper'a verilmiş olsa da çalışır
   ------------------------------------------------------ */

a.nova-premium-cta,
button.nova-premium-cta,
a.gb-button.nova-premium-cta,
.nova-premium-cta > a.gb-button,
.nova-premium-cta .gb-button,
.nova-premium-cta .wp-block-button__link,
.wp-block-button__link.nova-premium-cta {

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    max-width: 680px !important;
    min-height: 52px !important;

    margin: 24px auto !important;

    padding: 0 26px !important;

    background: linear-gradient(
        135deg,
        #7b5bd6 0%,
        #6542c5 100%
    ) !important;

    background-color: #6f4dce !important;

    color: #ffffff !important;

    border: 1px solid transparent !important;
    border-radius: 13px !important;

    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;

    text-align: center !important;
    text-decoration: none !important;
    text-shadow: none !important;

    box-sizing: border-box !important;

    box-shadow:
        0 8px 20px rgba(118, 85, 216, 0.20) !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
}


/* ------------------------------------------------------
   SOLDAKİ HAMBURGER / İKONU KALDIR
   ------------------------------------------------------ */

a.nova-premium-cta .gb-icon,
button.nova-premium-cta .gb-icon,
.nova-premium-cta .gb-icon,
.nova-premium-cta svg {
    display: none !important;
}


/* ------------------------------------------------------
   ESKİ OTOMATİK OK / PARLAMA EFEKTLERİNİ İPTAL ET
   ------------------------------------------------------ */

a.nova-premium-cta::before,
a.nova-premium-cta::after,
button.nova-premium-cta::before,
button.nova-premium-cta::after,
.nova-premium-cta .wp-block-button__link::before,
.nova-premium-cta .wp-block-button__link::after,
.wp-block-button__link.nova-premium-cta::before,
.wp-block-button__link.nova-premium-cta::after {
    content: none !important;
    display: none !important;
}


/* ------------------------------------------------------
   HOVER
   ------------------------------------------------------ */

a.nova-premium-cta:hover,
button.nova-premium-cta:hover,
a.gb-button.nova-premium-cta:hover,
.nova-premium-cta > a.gb-button:hover,
.nova-premium-cta .gb-button:hover,
.nova-premium-cta .wp-block-button__link:hover,
.wp-block-button__link.nova-premium-cta:hover {

    background: linear-gradient(
        135deg,
        #8566df 0%,
        #704bcf 100%
    ) !important;

    color: #ffffff !important;

    transform: translateY(-2px) !important;

    box-shadow:
        0 12px 28px rgba(118, 85, 216, 0.28) !important;
}


/* ------------------------------------------------------
   CLICK
   ------------------------------------------------------ */

a.nova-premium-cta:active,
button.nova-premium-cta:active,
a.gb-button.nova-premium-cta:active,
.nova-premium-cta .gb-button:active,
.nova-premium-cta .wp-block-button__link:active,
.wp-block-button__link.nova-premium-cta:active {

    transform: translateY(0) !important;

    box-shadow:
        0 6px 16px rgba(118, 85, 216, 0.20) !important;
}


/* ------------------------------------------------------
   KLAVYE ERİŞİLEBİLİRLİĞİ
   ------------------------------------------------------ */

a.nova-premium-cta:focus-visible,
button.nova-premium-cta:focus-visible,
.nova-premium-cta .gb-button:focus-visible,
.nova-premium-cta .wp-block-button__link:focus-visible,
.wp-block-button__link.nova-premium-cta:focus-visible {

    outline: 3px solid rgba(118, 85, 216, 0.30) !important;
    outline-offset: 3px !important;
}


/* ======================================================
   TABLET
   ====================================================== */

@media (max-width: 1024px) {

    a.nova-premium-cta,
    button.nova-premium-cta,
    a.gb-button.nova-premium-cta,
    .nova-premium-cta > a.gb-button,
    .nova-premium-cta .gb-button,
    .nova-premium-cta .wp-block-button__link,
    .wp-block-button__link.nova-premium-cta {

        max-width: 620px !important;
    }
}


/* ======================================================
   MOBİL
   ====================================================== */

@media (max-width: 700px) {

    .wp-block-button.nova-premium-cta,
    .wp-block-buttons.nova-premium-cta,
    .gb-button-wrapper.nova-premium-cta,
    .gb-button-wrapper:has(.nova-premium-cta) {

        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    a.nova-premium-cta,
    button.nova-premium-cta,
    a.gb-button.nova-premium-cta,
    .nova-premium-cta > a.gb-button,
    .nova-premium-cta .gb-button,
    .nova-premium-cta .wp-block-button__link,
    .wp-block-button__link.nova-premium-cta {

        width: 100% !important;
        max-width: 100% !important;
        min-height: 52px !important;

        padding: 13px 18px !important;

        border-radius: 12px !important;

        font-size: 15px !important;
        line-height: 1.35 !important;

        white-space: normal !important;
    }
}

/* Çok küçük telefonlar */
@media (max-width: 380px) {
    a.nova-premium-cta,
    button.nova-premium-cta,
    a.gb-button.nova-premium-cta,
    .nova-premium-cta > a.gb-button,
    .nova-premium-cta .gb-button,
    .nova-premium-cta .wp-block-button__link,
    .wp-block-button__link.nova-premium-cta {
        padding: 12px 14px !important;
        font-size: 14.5px !important;
    }
}


/* ======================================================
   NOVA VITA – PREMIUM AUTHOR BOX
   Standart makale sonu yazar kartı
   HTML class: nv-author-box
   ====================================================== */

.nv-author-box {
    position: relative;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 30px;
    align-items: center;

    width: 100%;
    max-width: 830px;
    margin: 48px auto 30px;
    padding: 34px 36px;
    box-sizing: border-box;

    overflow: hidden;

    background:
        radial-gradient(circle at 100% 0%, rgba(119, 86, 214, 0.07), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #fbfaff 100%);

    border: 1px solid rgba(25, 32, 56, 0.085);
    border-radius: 24px;

    box-shadow:
        0 2px 5px rgba(20, 26, 45, 0.025),
        0 14px 40px rgba(20, 26, 45, 0.055);
}

.nv-author-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #7252cf 0%, #9273df 52%, #c9baf5 100%);
}

.nv-author-photo-wrap {
    width: 120px;
    height: 120px;
    padding: 4px;
    box-sizing: border-box;

    border-radius: 50%;
    background: linear-gradient(145deg, rgba(119, 86, 214, 0.45), rgba(119, 86, 214, 0.08));
    box-shadow: 0 10px 26px rgba(25, 32, 56, 0.13);
}

body.single-post .nv-author-box .nv-author-photo {
    display: block;
    width: 112px;
    height: 112px;
    object-fit: cover;
    object-position: center 27%;

    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    box-sizing: border-box;
}

.nv-author-body {
    min-width: 0;
}

.nv-author-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 7px;

    color: #7756d6;
    font-size: 10.5px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

body.single-post .nv-author-box .nv-author-name {
    margin: 0 0 4px !important;
    padding: 0 !important;
    border: 0 !important;

    color: #171c2e !important;
    font-size: clamp(21px, 2vw, 25px) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}

.nv-author-title {
    margin: 0 0 14px;
    color: #737887;
    font-size: 14.5px;
    line-height: 1.45;
    font-weight: 500;
}

body.single-post .nv-author-box .nv-author-text {
    max-width: 740px;
    margin: 0 0 20px !important;

    color: #555d6c !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.nv-author-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.nv-author-box .nv-author-primary,
.nv-author-box .nv-author-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    box-sizing: border-box;

    border-radius: 999px;
    font-size: 12.8px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.nv-author-box .nv-author-primary {
    gap: 8px;
    padding: 9px 17px;

    background: #7756d6;
    border: 1px solid #7756d6;
    color: #ffffff !important;
    box-shadow: 0 5px 14px rgba(119, 86, 214, 0.19);
}

.nv-author-box .nv-author-primary:hover {
    background: #6847c5;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(119, 86, 214, 0.24);
}

.nv-author-box .nv-author-link {
    padding: 9px 14px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(119, 86, 214, 0.16);
    color: #6653ad !important;
}

.nv-author-box .nv-author-link:hover {
    background: #ffffff;
    border-color: rgba(119, 86, 214, 0.32);
    color: #5639b3 !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(25, 32, 56, 0.065);
}

.nv-author-box a:focus-visible {
    outline: 3px solid rgba(118, 85, 216, 0.30);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .nv-author-box {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 22px;
        margin: 42px auto 28px;
        padding: 30px 28px;
        border-radius: 21px;
    }

    .nv-author-photo-wrap {
        width: 94px;
        height: 94px;
    }

    body.single-post .nv-author-box .nv-author-photo {
        width: 86px;
        height: 86px;
    }
}

@media (max-width: 560px) {
    .nv-author-box {
        display: block;
        width: 100%;
        margin: 34px auto 24px;
        padding: 28px 22px 24px;
        border-radius: 19px;
    }

    .nv-author-photo-wrap {
        width: 86px;
        height: 86px;
        margin-bottom: 18px;
    }

    body.single-post .nv-author-box .nv-author-photo {
        width: 78px;
        height: 78px;
    }

    body.single-post .nv-author-box .nv-author-name {
        font-size: 20px !important;
    }

    .nv-author-title {
        margin-bottom: 13px;
    }

    body.single-post .nv-author-box .nv-author-text {
        margin-bottom: 18px !important;
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }

    .nv-author-actions {
        gap: 7px;
    }

    .nv-author-box .nv-author-primary,
    .nv-author-box .nv-author-link {
        min-height: 37px;
        padding: 8px 12px;
        font-size: 12.3px;
    }
}

@media (max-width: 390px) {
    .nv-author-box {
        padding-right: 19px;
        padding-left: 19px;
    }

    .nv-author-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nv-author-box .nv-author-primary,
    .nv-author-box .nv-author-link {
        width: 100%;
    }
}


/* ======================================================
   NOVA VITA – AUTHOR BOX / CTA AYNI GENİŞLİK
   DESKTOP + TABLET
   ====================================================== */

body.single-post .nv-author-box {
    max-width: 1040px !important;
    width: calc(100vw - 40px) !important;
    margin-left: 50% !important;
    margin-right: 0 !important;
    transform: translateX(-50%);
    box-sizing: border-box !important;
}

@media (max-width: 1024px) {
    body.single-post .nv-author-box {
        width: calc(100vw - 32px) !important;
    }
}

/* ======================================================
   NOVA VITA – MASTER MOBILE CONTENT WIDTH
   Author box ile aynı dış genişlik: 12px sağ / 12px sol
   FINAL OVERRIDE
   ====================================================== */

@media (max-width: 700px) {

    :root {
        --nv-mobile-gutter: 12px;
    }

    /* GeneratePress ana içerik katmanlarında ikinci kez daralmayı kaldır */
    body .site-content,
    body .content-area,
    body .site-main,
    body .inside-article {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body .site-content,
    body .content-area,
    body .inside-article {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body .content-area,
    body .site-main {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* BLOG YAZILARI: ana kartlar author box ile aynı dış genişlikte */
    body.single-post .entry-content,
    body.single-post .nova-post-hero,
    body.single-post .post-image,
    body.single-post .featured-image,
    body.single-post .post-navigation,
    body.single-post .nv-author-box {
        width: calc(100% - (2 * var(--nv-mobile-gutter))) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        transform: none !important;
    }

    /* Blog CTA / disclaimer / related posts ana içerik içinde ikinci kez daralmasın */
    body.single-post .entry-content .nova-blog-cta,
    body.single-post .entry-content .nova-post-disclaimer,
    body.single-post .entry-content #jp-relatedposts {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* CTA hook ile entry-content dışında kullanılıyorsa aynı hizada tut */
    body.single-post .site-main > .nova-blog-cta,
    body.single-post .inside-article > .nova-blog-cta {
        width: calc(100% - (2 * var(--nv-mobile-gutter))) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* NORMAL SAYFALAR */
    body.page:not(.home) .entry-content {
        width: calc(100% - (2 * var(--nv-mobile-gutter))) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* Sayfa içindeki premium kartlar parent nedeniyle tekrar daralmasın */
    body.page:not(.home) .entry-content .nova-section-card,
    body.page:not(.home) .entry-content .nova-top-hero,
    body.page:not(.home) .entry-content .nova-search-panel,
    body.page:not(.home) .entry-content .nova-contact-main,
    body.page:not(.home) .entry-content .nova-contact-transport,
    body.page:not(.home) .entry-content .nova-contact-map {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* ANA SAYFA: dış premium kartları aynı 12px mobil kenar boşluğuna getir */
    body.home .nova-section-card,
    body.home .nova-top-hero,
    body.home .nova-search-panel {
        width: calc(100% - (2 * var(--nv-mobile-gutter))) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* BLOG / ARŞİV / ARAMA sayfaları */
    body.blog .site-main,
    body.archive .site-main,
    body.search .site-main {
        width: calc(100% - (2 * var(--nv-mobile-gutter))) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* Medya ve nested blok güvenliği */
    body main img,
    body main video,
    body main iframe,
    body main figure,
    body main .wp-block-image,
    body main .wp-block-columns,
    body main .wp-block-group,
    body main .gb-container {
        max-width: 100%;
        box-sizing: border-box;
    }
}


/* ======================================================
   NOVA VITA – DESKTOP ANA SAYFA GENİŞLİK + DİKEY RİTİM
   FINAL CLEAN OVERRIDE
   ====================================================== */

@media (min-width: 1025px) {

    /* GeneratePress ana içerik sınırını büyük ekranlarda aç */
    body.home #page,
    body.home .site.grid-container {
        width: 100% !important;
        max-width: 1320px !important;
    }

    body.home .site-content,
    body.home .content-area,
    body.home .site-main,
    body.home .inside-article,
    body.home .entry-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Parent padding'in premium kartları yeniden daraltmasını engelle */
    body.home .inside-article {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Ana sayfa premium kartları: masaüstünde 1200px */
    body.home .nova-section-card,
    body.home .nova-top-hero,
    body.home .nova-search-panel {
        width: calc(100% - 64px) !important;
        max-width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        transform: none !important;
    }

    /* Kart içindeki kolonlar yeni genişliği tam kullansın */
    body.home .nova-section-card > *,
    body.home .nova-section-card .gb-container,
    body.home .nova-section-card .wp-block-group,
    body.home .nova-section-card .wp-block-columns {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    body.home .nova-section-card .wp-block-columns {
        width: 100% !important;
        gap: 42px !important;
    }

    /* H1'in altına sonradan eklenmiş ekstra boşluğu kaldır */
    body.home h1 {
        margin-bottom: 0 !important;
    }

    /* Ana sayfadaki İLK premium kartı H1'e yaklaştır.
       Bu selector, önce başka .nova-section-card sibling'i olmayan ilk kartı seçer. */
    body.home .nova-section-card:not(.nova-section-card ~ .nova-section-card) {
        margin-top: -20px !important;
    }
}
/* ======================================================
   NOVA VITA – MOBİL LİSTE / BULLET HİZASI
   FINAL OVERRIDE
   ====================================================== */

@media (max-width: 700px) {

    /* İçerik alanlarındaki UL / OL listelerini genişlet */
    body .entry-content ul,
    body .entry-content ol,
    body .nova-section-card ul,
    body .nova-section-card ol,
    body .nova-top-hero ul,
    body .nova-top-hero ol {

        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        /* Bullet'ı sola yaklaştırır */
        padding-left: 1.15em !important;

        box-sizing: border-box !important;

        text-align: left !important;
        list-style-position: outside !important;
    }


    /* Liste maddeleri */
    body .entry-content li,
    body .nova-section-card li,
    body .nova-top-hero li {

        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;

        /* Bullet ile yazı arasındaki küçük mesafe */
        padding-left: 0.15em !important;

        text-align: left !important;
    }

}
/* ======================================================
   NOVA VITA – AUTHOR BOX
   STATIC PAGES SUPPORT
   ====================================================== */

body.page .nv-author-box .nv-author-photo {
    display: block;
    width: 112px;
    height: 112px;
    object-fit: cover;
    object-position: center 27%;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    box-sizing: border-box;
}

body.page .nv-author-box .nv-author-name {
    margin: 0 0 4px !important;
    padding: 0 !important;
    border: 0 !important;

    color: #171c2e !important;
    font-size: clamp(21px, 2vw, 25px) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}

body.page .nv-author-box .nv-author-text {
    max-width: 740px;
    margin: 0 0 20px !important;

    color: #555d6c !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* Sayfalarda kartı premium içerik genişliğine getir */
body.page .nv-author-box {
    max-width: 1040px !important;
    width: calc(100% - 40px) !important;
    margin: 48px auto 34px !important;
    box-sizing: border-box !important;
}


@media (max-width: 700px) {

    body.page .nv-author-box {
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin: 34px auto 24px !important;
    }

    body.page .nv-author-box .nv-author-photo {
        width: 78px;
        height: 78px;
    }

    body.page .nv-author-box .nv-author-name {
        font-size: 20px !important;
    }

    body.page .nv-author-box .nv-author-text {
        margin-bottom: 18px !important;
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }
}
/* =========================================================
   NOVA VITA
   Makale Sonu İkili Premium CTA
   ========================================================= */

.nv-dual-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;

    width: 100%;
    margin: 48px 0 26px;
}


/* =========================================================
   KART
   ========================================================= */

.nv-dual-cta__card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 255px;

    padding: 25px 25px 23px;

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(181, 145, 79, 0.10),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaf7 100%
        );

    border: 1px solid rgba(36, 52, 49, 0.10);
    border-radius: 18px;

    box-shadow:
        0 10px 32px rgba(23, 38, 35, 0.065),
        0 2px 7px rgba(23, 38, 35, 0.025);

    color: inherit;
    text-decoration: none !important;

    overflow: hidden;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}


/* Premium üst çizgi */
.nv-dual-cta__card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(181, 145, 79, 0.72),
        transparent
    );
}


/* Hover */
.nv-dual-cta__card:hover {
    transform: translateY(-4px);

    border-color: rgba(181, 145, 79, 0.28);

    box-shadow:
        0 18px 44px rgba(23, 38, 35, 0.11),
        0 4px 12px rgba(23, 38, 35, 0.04);

    color: inherit;
}


/* =========================================================
   ÜST BÖLÜM
   ========================================================= */

.nv-dual-cta__top {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 17px;
}


/* ICON */
.nv-dual-cta__icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #9a773f;

    background: rgba(181, 145, 79, 0.10);
    border: 1px solid rgba(181, 145, 79, 0.22);
}


/* EYEBROW */
.nv-dual-cta__eyebrow {
    display: block;

    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.35;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #96723d;
}


/* =========================================================
   TITLE
   ========================================================= */

.nv-dual-cta__title {
    display: block;

    margin-bottom: 10px;

    font-size: clamp(18px, 1.45vw, 21px);
    font-weight: 650;
    line-height: 1.32;

    letter-spacing: -0.018em;

    color: #263a36;
}


/* =========================================================
   TEXT
   ========================================================= */

.nv-dual-cta__text {
    display: block;

    margin-bottom: 21px;

    font-size: 13.8px;
    font-weight: 400;
    line-height: 1.65;

    color: #68736f;
}


/* =========================================================
   CTA
   ========================================================= */

.nv-dual-cta__action {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;

    font-size: 13px;
    font-weight: 650;
    line-height: 1.3;

    color: #2f4a44;
}

.nv-dual-cta__action svg {
    transition: transform 0.25s ease;
}

.nv-dual-cta__card:hover .nv-dual-cta__action svg {
    transform: translateX(4px);
}


/* =========================================================
   KLAVYE / ACCESSIBILITY
   ========================================================= */

.nv-dual-cta__card:focus-visible {
    outline: 3px solid rgba(181, 145, 79, 0.35);
    outline-offset: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .nv-dual-cta {
        gap: 14px;
    }

    .nv-dual-cta__card {
        padding: 22px;
    }

    .nv-dual-cta__title {
        font-size: 18px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .nv-dual-cta {
        grid-template-columns: 1fr;

        gap: 14px;

        margin: 36px 0 22px;
    }

    .nv-dual-cta__card {
        min-height: auto;

        padding: 21px 20px;

        border-radius: 16px;
    }

    .nv-dual-cta__top {
        margin-bottom: 14px;
    }

    .nv-dual-cta__icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .nv-dual-cta__title {
        font-size: 18px;
        line-height: 1.32;
    }

    .nv-dual-cta__text {
        margin-bottom: 17px;

        font-size: 13.5px;
        line-height: 1.6;
    }

    .nv-dual-cta__action {
        font-size: 13px;
    }
}


/* =========================================================
   KÜÇÜK MOBİL
   ========================================================= */

@media (max-width: 400px) {

    .nv-dual-cta__card {
        padding: 19px 17px;
    }

    .nv-dual-cta__title {
        font-size: 17px;
    }
}
/* ======================================================
   NOVA VITA – HOMEPAGE RENDER PERFORMANCE
   PageSpeed / mobile rendering optimization
   ====================================================== */

/* Ekran dışında kalan premium bölümlerin ilk açılışta layout/paint
   maliyetini ertele; görünür bölümler normal şekilde render edilir. */
body.home .nova-section-card,
body.home .gb-carousel {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

/* Hero her zaman anında render edilmeli; LCP alanını erteleme. */
body.home .nova-top-hero {
    content-visibility: visible;
    contain: none;
}
/* Mobilde ekip kartlarındaki isim ve unvanı ortala */
@media (max-width: 768px) {
  .ekip-listesi .ekip-kart,
  .ekip-kart {
    text-align: center;
  }

  .ekip-listesi .ekip-kart h1,
  .ekip-listesi .ekip-kart h2,
  .ekip-listesi .ekip-kart h3,
  .ekip-listesi .ekip-kart h4,
  .ekip-listesi .ekip-kart .gb-headline,
  .ekip-kart h1,
  .ekip-kart h2,
  .ekip-kart h3,
  .ekip-kart h4,
  .ekip-kart .gb-headline {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .ekip-listesi .ekip-kart .gb-button-wrapper,
  .ekip-kart .gb-button-wrapper {
    display: flex;
    justify-content: center;
  }

  .ekip-listesi .ekip-kart .gb-button,
  .ekip-kart .gb-button {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Mobilde ekip title box'larını tam ortala */
@media (max-width: 768px) {

  .ekip-kart .gb-button-wrapper,
  .ekip-kart .wp-block-buttons {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .ekip-kart .gb-button,
  .ekip-kart .wp-block-button {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ekip-kart .wp-block-button__link,
  .ekip-kart a.gb-button {
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
@media (min-width: 782px) {

  .nova-guide-premium {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: start !important;
  }

  .nova-guide-premium > h2 {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .nova-guide-premium > .wp-block-group {
    display: contents !important;
  }

  .nova-guide-premium > .wp-block-columns,
  .nova-guide-premium > .wp-block-group > .wp-block-columns {
    display: contents !important;
  }

  .nova-guide-premium > .wp-block-spacer,
  .nova-guide-premium > .wp-block-group > .wp-block-spacer {
    display: none !important;
  }

  .nova-guide-premium .wp-block-column {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    align-self: start !important;
  }
}