/* =============================================
   ASAN CTA — Floating Buttons, Content Blocks,
   Service Card Fix, Blog & Quote CTA Styles
   ============================================= */

/* ═══════════════════════════════════════════
   1. FLOATING STACK BUTTONS
   ═══════════════════════════════════════════ */
.asan-cta-stack {
    position: fixed;
    bottom: 20px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.asan-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    text-decoration: none;
}
.asan-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
.asan-wa   { background: linear-gradient(135deg,#25D366,#128C7E); }
.asan-call {
    background: linear-gradient(135deg,#006699,#004466);
    animation: asanCallPulse 6s ease-in-out 4s infinite;
}
@keyframes asanCallPulse {
    0%,100%  { box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
    50%      { box-shadow: 0 0 0 10px rgba(0,102,153,0.25), 0 10px 25px rgba(0,0,0,0.25); }
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    display: block;
    color: #fff;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    .asan-cta-stack { display: none; }
    .asan-bubble     { display: none; }
}

/* ═══════════════════════════════════════════
   2. BUBBLE NOTIFICATION (CSS-driven)
   ═══════════════════════════════════════════ */
.asan-bubble {
    position: fixed;
    bottom: 100px;
    left: 80px;
    background: linear-gradient(135deg,#ffffff,#f5f7fa);
    color: #333;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease;
    animation: asanBubbleIn .4s ease 2.5s forwards;
}
@keyframes asanBubbleIn {
    to { opacity: 1; transform: translateX(0); pointer-events: auto; }
}
.asan-bubble.is-hidden {
    opacity: 0 !important;
    transform: translateX(-10px) !important;
    pointer-events: none !important;
    animation: none !important;
}
.asan-bubble::after {
    content: "";
    position: absolute;
    left: -6px;
    bottom: 12px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
}
.asan-bubble-close {
    margin-left: 8px;
    cursor: pointer;
    font-size: 12px;
    opacity: .6;
    font-style: normal;
    line-height: 1;
}

/* ═══════════════════════════════════════════
   3. MOBİL STICKY CALL BAR
   ═══════════════════════════════════════════ */
.asan-mobile-bar { display: none; }
@media (max-width: 768px) {
    .asan-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
    }
    .asan-mobile-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        padding: 14px 10px;
        color: #fff;
        letter-spacing: .02em;
        border: none;
    }
    .asan-mobile-bar .asan-mob-call {
        background: linear-gradient(135deg,#0069a0,#004466);
        border-right: 1px solid rgba(255,255,255,0.15);
    }
    .asan-mobile-bar .asan-mob-wa {
        background: linear-gradient(135deg,#25D366,#128C7E);
    }
    .asan-mobile-bar a svg {
        width: 18px;
        height: 18px;
        fill: #fff;
        flex-shrink: 0;
    }
    body { padding-bottom: 56px; }
    .footer_sticky_enable_foo { margin-bottom: 56px; }
}

/* ═══════════════════════════════════════════
   4. SERVİS KARTI — PHP Overlay Link Tekniği
   service-box-v1.php'de .asan-linked-card ve
   .asan-card-overlay-link eklendi.
   ═══════════════════════════════════════════ */
.service_content.asan-linked-card {
    position: relative;
    isolation: isolate;
}

/* Tüm kartı kaplayan invisible link */
.asan-card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    border-radius: inherit;
}

/* Görsel: hover'da zoom */
.service_content.asan-linked-card .image.image_fit img {
    transition: transform 500ms ease;
}
.service_content.asan-linked-card:hover .image.image_fit img {
    transform: scale(1.05);
}

/* read_more overlay'in üzerinde kalır ve tıklanabilir */
.service_content.asan-linked-card .content_inner {
    position: relative;
    z-index: 3;
}
.service_content.asan-linked-card .content_inner .read_more {
    position: relative;
    z-index: 4;
}

/* ═══════════════════════════════════════════
   5. İÇERİK CTA BLOĞU (.asan-cta-v2)
   ═══════════════════════════════════════════ */
.asan-cta-block {
    background: linear-gradient(135deg,#0f2747,#1e3f66);
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.asan-cta-inner { max-width: 700px; }
.asan-cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 12px;
    letter-spacing: .5px;
}
.asan-cta-block h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff !important;
}
.asan-cta-block p {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 20px;
    max-width: 600px;
}
.asan-cta-price {
    display: inline-block;
    background: rgba(255,255,255,0.10);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 25px;
}
.asan-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.asan-cta-btn-call,
.asan-cta-btn-wa {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.asan-cta-btn-call:hover,
.asan-cta-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.asan-cta-btn-call { background: #fff; color: #0f2747; }
.asan-cta-btn-wa   { background: linear-gradient(135deg,#25D366,#1ebe5d); color: #fff; }

@media (max-width: 768px) {
    .asan-cta-block { padding: 25px; }
    .asan-cta-block h2 { font-size: 22px; }
    .asan-cta-buttons { flex-direction: column; }
    .asan-cta-btn-call, .asan-cta-btn-wa { justify-content: center; }
}

/* ═══════════════════════════════════════════
   6. [asan_quote_cta] SHORTCODE — Esnek Düzen
   ═══════════════════════════════════════════ */
.asan-qcta {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #0c1f3f 0%, #163460 60%, #0e2a52 100%);
    border-radius: 24px;
    padding: 48px 52px;
    margin: 56px 0;
    box-shadow: 0 24px 64px rgba(12,31,63,0.35);
    position: relative;
    isolation: isolate;
    width: 100%;
    box-sizing: border-box;
}
.asan-qcta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
    z-index: -1;
}
.asan-qcta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 40%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
    pointer-events: none;
    z-index: -1;
}

/* Sol sütun */
.asan-qcta-left {
    flex: 1 1 260px;
    min-width: 0;
}
/* Sağ sütun */
.asan-qcta-right {
    flex: 0 1 280px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asan-qcta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.asan-qcta-badge {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 11.5px;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: .02em;
    white-space: nowrap;
}
.asan-qcta-badge b {
    color: #4ade80;
    margin-right: 3px;
}

.asan-qcta-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff !important;
    margin: 0 0 12px;
    text-wrap: balance;
}
.asan-qcta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0 0 22px;
}

/* Fiyat kartı — dikey düzen */
.asan-qcta-price {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 12px 20px;
    border-radius: 14px;
    margin: 0;
    width: fit-content;
}
.asan-qcta-price-label {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: .07em;
    text-transform: uppercase;
}
.asan-qcta-price-val {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.1;
}

/* Butonlar */
.asan-qcta-btn {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 22px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: filter .2s ease, box-shadow .2s ease, background .2s ease;
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    box-sizing: border-box;
}
.asan-qcta-btn:hover { filter: brightness(1.1); }
.asan-qcta-btn svg { flex-shrink: 0; width: 19px; height: 19px; }

.asan-qcta-btn-primary {
    background: #fff;
    color: #0c1f3f;
    box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}
.asan-qcta-btn-primary svg { fill: #0c1f3f; }

.asan-qcta-btn-wa {
    background: linear-gradient(135deg, #25D366, #1aaa53);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,0.22);
}
.asan-qcta-btn-wa svg { fill: #fff; }

.asan-qcta-btn-outline {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.82);
    font-size: 13.5px;
    font-weight: 600;
}
.asan-qcta-btn-outline svg { fill: rgba(255,255,255,0.65); }
.asan-qcta-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    filter: none;
}

@media (max-width: 600px) {
    .asan-qcta { padding: 32px 24px; gap: 24px; }
    .asan-qcta-right { flex: 1 1 100%; min-width: 0; }
    .asan-qcta-title { font-size: 24px; }
}
@media (max-width: 400px) {
    .asan-qcta { padding: 24px 18px; margin: 36px 0; }
    .asan-qcta-btn { padding: 13px 16px; font-size: 13.5px; }
    .asan-qcta-price-val { font-size: 19px; }
}

/* ═══════════════════════════════════════════
   7. HEADER TOP BAR
   ═══════════════════════════════════════════ */
.asan-topbar {
    background: #0a1f3d;
    color: #fff;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 999;
}
.asan-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.asan-topbar-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    letter-spacing: .02em;
}
.asan-topbar-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.asan-topbar-phone {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    transition: color .2s;
}
.asan-topbar-phone:hover { color: #6bc8f8; }
.asan-topbar-wa {
    color: #fff;
    text-decoration: none;
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.35);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
}
.asan-topbar-wa:hover {
    background: rgba(37,211,102,0.28);
    border-color: rgba(37,211,102,0.6);
    color: #fff;
}
@media (max-width: 992px) { .asan-topbar-tagline { display: none; } }
@media (max-width: 768px) { .asan-topbar { display: none; } }

/* ═══════════════════════════════════════════
   8. BLOG LİSTELEME — Kart ve Liste stilleri
   ═══════════════════════════════════════════ */

/* Paylaşılan meta bar */
.asan-post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.asan-meta-date,
.asan-meta-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #7a8699;
}
.asan-meta-date svg,
.asan-meta-read svg { flex-shrink: 0; }

/* Kart görseli overlay */
.asan-card-img { position: relative; overflow: hidden; border-radius: 12px 12px 0 0; }
.asan-card-img img { transition: transform 400ms ease; }
.asan-card-img:hover img,
.asan-blog-card:hover .asan-card-img img { transform: scale(1.04); }
.asan-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,50,0.35) 0%, transparent 55%);
    pointer-events: none;
}

/* Tam kart linki (style_one kart için) */
.asan-blog-card { position: relative; }
.asan-card-fulllink {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border-radius: inherit;
}
.asan-blog-card .content_box { position: relative; z-index: 2; }

/* Devamını Oku butonu */
.asan-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1a6fa3;
    text-decoration: none;
    margin-top: 8px;
    transition: gap .2s;
}
.asan-readmore:hover { gap: 10px; color: #0f5080; }
.asan-readmore svg { flex-shrink: 0; }

/* Yazar kutusu */
.asan-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.asan-author-box img { border-radius: 50%; }

/* Liste img */
.asan-list-img { position: relative; overflow: hidden; }
.asan-list-img img { transition: transform 400ms ease; }
.asan-blog-list:hover .asan-list-img img { transform: scale(1.03); }

/* Blog başlığı kırpma düzeltmesi — content-blog.php (.title sınıfı) */
.asan-blog-card h2.title,
.asan-blog-card h2.title a,
.asan-blog-list  h2.title,
.asan-blog-list  h2.title a {
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
    white-space: normal !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    text-transform: none;
}

/* ═══════════════════════════════════════════
   9. BLOG SINGLE — Detay sayfası
   ═══════════════════════════════════════════ */
.asan-single-hero {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}
.asan-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.asan-single-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 0;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.asan-smeta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}
.asan-smeta-item svg { opacity: .7; }

.asan-single-body {
    font-size: 17px;
    line-height: 1.8;
    color: #2d3748;
}
.asan-single-body h2,
.asan-single-body h3 { margin-top: 2em; }

/* Yazar kartı (single) */
.asan-author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin: 40px 0 20px;
}
.asan-author-card img { border-radius: 50%; flex-shrink: 0; }
.asan-author-info { display: flex; flex-direction: column; gap: 4px; }
.asan-author-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; }
.asan-author-info strong { font-size: 16px; color: #1a202c; }
.asan-author-info p { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }

@media (max-width: 576px) {
    .asan-author-card { flex-direction: column; }
    .asan-single-meta { gap: 12px; }
}

/* ═══════════════════════════════════════════
   11. BLOG POST V2 — Modern Kart (.asan-nv2)
   ═══════════════════════════════════════════ */

/* Grid satır arası boşluk */
.asan-nv2-row { --bs-gutter-y: 28px; row-gap: 28px; }

/* ── Tam kart ── */
.asan-nv2-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    transition: box-shadow .3s ease, transform .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.asan-nv2-card:hover {
    box-shadow: 0 14px 36px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

/* Görsel sarıcı */
.asan-nv2-img-link { display: block; flex-shrink: 0; text-decoration: none; }
.asan-nv2-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f0f2f5;
}
.asan-nv2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms ease;
}
.asan-nv2-card:hover .asan-nv2-img img { transform: scale(1.06); }

/* Kategori rozeti */
.asan-nv2-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--asan-accent, #1a6fa3);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: .04em;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
}

/* İçerik kutusu */
.asan-nv2-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Meta: tarih, okuma süresi */
.asan-nv2-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.asan-nv2-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #8a95a3;
}
.asan-nv2-meta-item svg { opacity: .7; flex-shrink: 0; }

/* Başlık — tema CSS'inden gelebilecek clipping override'ları dahil
   Çift selector: hem kendi sınıfı hem ebeveyn ile birlikte (specificity artışı) */
.asan-nv2-card .asan-nv2-title,
.asan-nv2-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 10px;
    /* Tema'nın global heading CSS'ini geçersiz kıl */
    overflow: visible !important;
    max-height: none !important;
    white-space: normal !important;
    display: block !important;
    text-transform: none;
    /* -webkit-line-clamp varsa kaldır */
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}
.asan-nv2-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color .2s;
    display: block;
    overflow: visible;
    white-space: normal;
}
.asan-nv2-card:hover .asan-nv2-title a { color: var(--asan-accent, #1a6fa3); }

/* Özet */
.asan-nv2-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Alt kısım */
.asan-nv2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f2f5;
    margin-top: auto;
    position: relative;
    z-index: 3;
}
.asan-nv2-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
}
.asan-nv2-author img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    object-fit: cover;
    flex-shrink: 0;
}
.asan-nv2-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--asan-accent, #1a6fa3);
    text-decoration: none;
    transition: gap .2s;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}
.asan-nv2-readmore:hover { gap: 10px; }

/* Tam kart overlay linki */
.asan-nv2-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border-radius: inherit;
}
.asan-nv2-img-link { position: relative; z-index: 2; }

/* ── Kompak kart — eşit yükseklik için grid sütunları esnet ── */
/* Bootstrap row zaten flex; sütun → wrapper div → kart zincirini 100% ile doldur */
.asan-nv2.grid .asan-nv2-row {
    align-items: stretch;
}
.asan-nv2.grid .asan-nv2-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.asan-nv2.grid .asan-nv2-row > [class*="col-"] > div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Kompak kart (type_two) ── */
.asan-nv2-compact {
    position: relative;
    display: flex;
    align-items: flex-start;   /* içerik üstte hizalanır — daha tutarlı */
    gap: 14px;
    padding: 16px;
    border-bottom: none;       /* outer wrapper sağlar gerekirse */
    flex: 1;
    height: 100%;
    box-sizing: border-box;
}
.asan-nv2-compact-img {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 2;
}
.asan-nv2-compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.asan-nv2-compact:hover .asan-nv2-compact-img img { transform: scale(1.08); }
.asan-nv2-compact-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}
.asan-nv2-compact-date {
    display: block;
    font-size: 11px;
    color: #8a95a3;
    margin-bottom: 4px;
}
.asan-nv2-compact-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    white-space: normal !important;
    max-height: none !important;
}
.asan-nv2-compact-title a { color: #1a202c; text-decoration: none; }
.asan-nv2-compact:hover .asan-nv2-compact-title a { color: var(--asan-accent, #1a6fa3); }
/* overlay on compact */
.asan-nv2-compact .asan-nv2-overlay { border-radius: 0; }

/* ── Sayfalama ── */
.asan-nv2-pagi {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.asan-nv2-pagi ul {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.asan-nv2-pagi ul li a,
.asan-nv2-pagi ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    background: #f8fafc;
    color: #374151;
    border: 1.5px solid #e5e7eb;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.asan-nv2-pagi ul li a:hover {
    background: var(--asan-accent, #1a6fa3);
    color: #fff;
    border-color: transparent;
}
.asan-nv2-pagi ul li span.current {
    background: var(--asan-accent, #1a6fa3);
    color: #fff;
    border-color: transparent;
}
.asan-nv2-pagi ul li .dots {
    background: transparent;
    border-color: transparent;
    color: #9ca3af;
}

/* ═══════════════════════════════════════════
   12. ARAMA SONUÇLARI (.asan-search-card)
   ═══════════════════════════════════════════ */

/* Sayfa başlığı */
.asan-search-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.asan-search-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px;
}
.asan-search-count { color: var(--asan-accent, #1a6fa3); }
.asan-search-title > span:not(.asan-search-count) { color: var(--asan-accent, #1a6fa3); }
.asan-search-empty { color: #6b7280; }
.asan-search-hint  { color: #9ca3af; font-size: 14px; margin: 0 0 8px; }

/* Post tipi sekmeleri */
.asan-search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.asan-search-tab {
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #6b7280;
    background: #f3f4f6;
    border: 1.5px solid transparent;
    transition: background .2s, color .2s, border-color .2s;
    line-height: 1.6;
}
.asan-search-tab:hover {
    background: #e8f0fe;
    color: var(--asan-accent, #1a6fa3);
    border-color: var(--asan-accent, #1a6fa3);
}
.asan-search-tab.active {
    background: var(--asan-accent, #1a6fa3);
    color: #fff;
    border-color: var(--asan-accent, #1a6fa3);
}

/* Boş sonuç önerileri */
.asan-search-suggestions { margin-top: 8px; }
.asan-search-tips {
    margin: 0 0 16px;
    padding: 0 0 0 18px;
    color: #9ca3af;
    font-size: 13px;
}
.asan-search-tips li { margin-bottom: 4px; }

/* 2-kolon grid — eşit yükseklik */
.loop-grid.asan-search-grid { align-items: stretch; }
.loop-grid.asan-search-grid > [class*="col-sm-6"] {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Kart — dikey düzen */
.asan-search-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: box-shadow .3s ease, transform .3s ease;
}
.asan-search-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.11);
    transform: translateY(-2px);
}
.asan-search-card.no-thumb .asan-sc-body { padding: 20px; }

/* Görsel — tam genişlik */
.asan-sc-img {
    width: 100%;
    height: 190px;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.asan-sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.asan-search-card:hover .asan-sc-img img { transform: scale(1.05); }

/* İçerik */
.asan-sc-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Meta */
.asan-sc-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.asan-sc-type {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.asan-st-post    { background: #eff6ff; color: #1d4ed8; }
.asan-st-service { background: #f0fdf4; color: #15803d; }
.asan-st-project { background: #fef3c7; color: #b45309; }
.asan-st-page    { background: #f5f3ff; color: #7c3aed; }

.asan-sc-date,
.asan-sc-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #8a95a3;
}
.asan-sc-date svg, .asan-sc-read svg { opacity: .7; flex-shrink: 0; }

/* Başlık */
.asan-sc-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
}
.asan-sc-title a { color: #1a202c; text-decoration: none; transition: color .2s; }
.asan-search-card:hover .asan-sc-title a { color: var(--asan-accent, #1a6fa3); }

/* Özet */
.asan-sc-excerpt {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Devamını oku */
.asan-sc-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--asan-accent, #1a6fa3);
    text-decoration: none;
    transition: gap .2s;
    margin-top: auto;
    align-self: flex-start;
    position: relative;
    z-index: 3;
}
.asan-sc-readmore:hover { gap: 10px; }

/* Tam kart overlay */
.asan-sc-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

/* Arama sayfası sayfalama */
.asan-search-pagi { margin-top: 20px; }

@media (max-width: 575px) {
    .asan-sc-img { height: 180px; }
    .asan-sc-body { padding: 14px 16px 16px; }
}

/* ═══════════════════════════════════════════
   13. [asan_related_content] — Diğer İçerikler
   ═══════════════════════════════════════════ */
.asan-related-box {
    background: #fff;
    border: 1px solid #dce6f4;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 0 28px;
    box-shadow: 0 4px 24px rgba(12,31,63,0.08);
}

/* Başlık — koyu header, alt accent çizgi */
.asan-related-title {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0d1f3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 14px 18px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    border-bottom: 2px solid #2563eb;
}
.asan-related-title::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Liste */
.asan-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.asan-related-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.asan-related-item:last-child { border-bottom: 0; }

/* Link — left accent bar + smooth hover (thumbnail kaldırıldı: text-only) */
.asan-related-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 12px 20px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: background .2s, padding-left .2s;
}
.asan-related-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: transparent;
    transition: background .2s;
}
.asan-related-link:hover {
    background: #f0f6ff;
    padding-left: 22px;
}
.asan-related-link:hover::before { background: #2563eb; }

/* Arrow → sağda */
.asan-related-link::after {
    content: '→';
    flex-shrink: 0;
    font-size: 13px;
    color: transparent;
    transition: color .2s, transform .2s;
    margin-left: auto;
    padding-left: 6px;
}
.asan-related-link:hover::after {
    color: #2563eb;
    transform: translateX(3px);
}

/* Thumbnail kaldırıldı — PHP shortcode text-only olarak güncellendi */
.asan-related-thumb { display: none; }

/* Info */
.asan-related-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1 1 auto;
}

/* Tür badge — küçük, köşeli */
.asan-related-type {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    line-height: 1.6;
}
.asan-related-type.type-post    { background: #dbeafe; color: #1e40af; }
.asan-related-type.type-service { background: #d1fae5; color: #065f46; }
.asan-related-type.type-page    { background: #ede9fe; color: #5b21b6; }

/* Başlık — thumbnail olmadığı için tam genişlik, 2 satır ile sınırlandırılmış */
.asan-related-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a2b4a;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.asan-related-link:hover .asan-related-name { color: #0d1f3c; }

/* ═══════════════════════════════════════════
   10. ERİŞİLEBİLİRLİK
   ═══════════════════════════════════════════ */
.asan-btn:focus-visible,
.asan-cta-btn-call:focus-visible,
.asan-cta-btn-wa:focus-visible,
.asan-mobile-bar a:focus-visible,
.asan-qcta-btn:focus-visible,
.asan-card-overlay-link:focus-visible,
.asan-related-link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
/* ═══════════════════════════════════════════
   17. ERİŞİLEBİLİRLİK — Dokunma Hedefi Boyutları
   ═══════════════════════════════════════════ */
/* WCAG 2.5.5: Minimum 44×44px dokunma hedefi */
.top_bar .contntent.media a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.top_bar .contntent.phone a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (prefers-reduced-motion: reduce) {
    .asan-call,
    .asan-bubble,
    .asan-card-img img,
    .asan-list-img img,
    .service_content.asan-linked-card .image.image_fit img {
        animation: none !important;
        transition: none !important;
    }
}
