/* Page builder content blocks — forms (preview + bare) */
.pb-heading { margin: 0 0 0.65rem; line-height: 1.35; }
.pb-heading:not([style*="color"]) { color: inherit; }
.pb-text { margin-bottom: 0.85rem; }
.pb-text p { margin-bottom: 0.5rem; }
.pb-text p:last-child { margin-bottom: 0; }
.pb-figure { margin: 0 0 0.85rem; }
.pb-img-stack__bg { display: block; width: 100%; height: 100%; min-height: 1px; line-height: 0; border-radius: 8px; background-color: #1a1d23; background-repeat: no-repeat; }
.pb-figure > img { display: block; max-width: 100%; height: auto; border-radius: 8px; vertical-align: bottom; }
.pb-img-natural { display: block; margin: 0 auto; max-width: 100%; line-height: 0; }
.pb-img-natural__img,
.pb-img-natural img { display: block; width: 100%; height: auto; max-width: 100%; border-radius: 8px; }
.pb-img-natural__link { display: block; line-height: 0; }
.pb-figure figcaption { margin-top: 0.4rem; font-size: 0.8rem; color: #6b7280; text-align: center; }
.pb-img-stack { position: relative; display: block; margin: 0 auto; min-height: 0; }
.pb-img-stack__inner { position: relative; width: 100%; height: 100%; line-height: 0; border-radius: 8px; overflow: hidden; }
.pb-img-stack__inner--pan { min-height: 1px; }
.pb-img-stack__media { position: absolute; left: 0; top: 0; right: 0; bottom: 0; overflow: hidden; }
.pb-img-stack__link, .pb-img-stack__ph { display: block; width: 100%; height: 100%; line-height: 0; }
button.pb-img-lightbox-trigger,
button.pb-img-stack__link.pb-img-lightbox-trigger {
    appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    cursor: zoom-in;
    font: inherit;
    color: inherit;
    text-align: inherit;
}
button.pb-img-natural__link.pb-img-lightbox-trigger {
    display: block;
    width: 100%;
    line-height: 0;
    cursor: zoom-in;
}
.pb-img-tile {
    display: grid;
    grid-template-columns: repeat(var(--pb-img-tile-cols, 3), minmax(0, 1fr));
    gap: clamp(0.85rem, 2.2vw, 1.25rem);
    margin: 0 0 1.15rem;
}
.pb-img-tile__item {
    appearance: none;
    border: 1px solid #d8dee8;
    padding: clamp(0.45rem, 1.2vw, 0.65rem);
    margin: 0;
    cursor: zoom-in;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 22px rgba(15, 23, 42, 0.07);
    height: auto;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.pb-img-tile__item:focus-visible {
    outline: 2px solid var(--accent, #4ebeef);
    outline-offset: 2px;
}
.pb-img-tile__frame {
    display: block;
    position: relative;
    width: 100%;
    height: var(--pb-img-tile-h, 200px);
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #e8edf4;
    background: #f1f5f9;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}
.pb-img-tile__bg {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform 0.45s ease;
}
.pb-img-tile__zoom {
    position: absolute;
    right: clamp(0.7rem, 1.8vw, 0.95rem);
    bottom: clamp(0.7rem, 1.8vw, 0.95rem);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
    pointer-events: none;
    z-index: 2;
}
.pb-block-section--dark .pb-img-tile__item {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.pb-block-section--dark .pb-img-tile__frame {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .pb-img-tile__item:hover {
        transform: translateY(-3px);
        border-color: rgba(78, 190, 239, 0.45);
        box-shadow:
            0 2px 4px rgba(15, 23, 42, 0.05),
            0 14px 32px rgba(15, 23, 42, 0.12);
    }
    .pb-img-tile__item:hover .pb-img-tile__bg { transform: scale(1.05); }
    .pb-img-tile__item:hover .pb-img-tile__zoom {
        opacity: 1;
        transform: translateY(0);
    }
    .pb-block-section--dark .pb-img-tile__item:hover {
        border-color: rgba(78, 190, 239, 0.4);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
    }
}
@media (max-width: 900px) {
    .pb-img-tile { grid-template-columns: repeat(min(var(--pb-img-tile-cols, 3), 2), minmax(0, 1fr)); }
}
@media (max-width: 540px) {
    .pb-img-tile { grid-template-columns: 1fr; }
}
.pb-img-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10060;
    background: rgba(8, 15, 28, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
}
.pb-img-lightbox[hidden] { display: none !important; }
.pb-img-lightbox__img {
    max-width: min(100%, 1400px);
    max-height: calc(100vh - 4.5rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}
.pb-img-lightbox__close,
.pb-img-lightbox__prev,
.pb-img-lightbox__next {
    position: absolute;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
.pb-img-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
}
.pb-img-lightbox__prev,
.pb-img-lightbox__next {
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.75rem;
    line-height: 1;
}
.pb-img-lightbox__prev { left: 1rem; }
.pb-img-lightbox__next { right: 1rem; }
.pb-img-lightbox__close:hover,
.pb-img-lightbox__prev:hover,
.pb-img-lightbox__next:hover { background: rgba(255, 255, 255, 0.22); }
.pb-img-lightbox__counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}
.pb-slider { position: relative; margin: 0 auto 1rem; }
.pb-slider__viewport { position: relative; overflow: hidden; border-radius: 8px; width: 100%; min-height: 0; }
/* Slayt geçişi: fade + hafif zoom (aktif: normal, pasif: hafif yakınlaştırılmış + görünmez) */
.pb-slider__track { position: absolute; left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%; }
.pb-slider__slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    transform: scale(1.08);
    transform-origin: center center;
    transition: opacity 1.15s ease-in-out, transform 1.15s ease-in-out;
    pointer-events: none;
    z-index: 0;
}
.pb-slider__slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    pointer-events: auto;
}
.pb-slider__slide .pb-img-stack { width: 100%; height: 100%; }
.pb-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    /* Yanlar: prev/next okları (~44px) + nefes payı — metin okların üstüne binmesin */
    padding: clamp(1rem, 3vw, 1.5rem) clamp(3rem, 9vw, 4.75rem) clamp(2.25rem, 5vw, 3rem);
    pointer-events: none;
}
.pb-slider__overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse closest-side at 50% 48%, rgba(0, 0, 0, 0.48), transparent 72%);
    pointer-events: none;
    z-index: 0;
}
.pb-slider__overlay-inner {
    position: relative;
    z-index: 1;
    pointer-events: auto;
    max-width: min(42rem, 92%);
    flex: 0 1 auto;
}
.pb-slider__overlay--align-left { justify-content: flex-start; }
.pb-slider__overlay--align-center { justify-content: center; }
.pb-slider__overlay--align-right { justify-content: flex-end; }
.pb-slider__overlay--align-left .pb-slider__overlay-inner { text-align: left; }
.pb-slider__overlay--align-center .pb-slider__overlay-inner { text-align: center; }
.pb-slider__overlay--align-right .pb-slider__overlay-inner { text-align: right; }
.pb-slider__overlay-title {
    font-weight: 700;
    font-size: clamp(1.32rem, 3.85vw, 2.35rem);
    line-height: 1.26;
    color: var(--pb-ov-title, #fff);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0 0 0.4rem;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}
.pb-slider__overlay-sub {
    font-size: clamp(0.98rem, 2.15vw, 1.12rem);
    line-height: 1.48;
    color: var(--pb-ov-sub, rgba(255, 255, 255, 0.93));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    margin: 0 0 0.72rem;
    white-space: pre-wrap;
}
.pb-slider__overlay-cta { margin-top: 0.25rem; }
.pb-slider__overlay-btn {
    display: inline-block;
    margin-top: 0.15rem;
    padding: 0.52rem 1.28rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: clamp(0.88rem, 1.85vw, 0.98rem);
    text-decoration: none;
    background: var(--pb-ov-btn-bg, #0284c7);
    color: var(--pb-ov-btn-fg, #fff);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
.pb-slider__overlay-btn:hover {
    opacity: 0.92;
    color: var(--pb-ov-btn-fg, #fff);
    text-decoration: none;
}
.pb-slider__overlay-btn--static { cursor: default; }
@media (max-width: 639px) {
    .pb-slider__overlay-title {
        font-size: clamp(0.92rem, 4.85vw, 1.32rem);
        line-height: 1.22;
    }
    .pb-slider__overlay-sub {
        font-size: clamp(0.78rem, 3.55vw, 0.92rem);
        line-height: 1.42;
    }
    .pb-slider__overlay-btn {
        font-size: clamp(0.74rem, 3.25vw, 0.85rem);
        padding: 0.44rem 1.05rem;
    }
}
@keyframes pb-slider-overlay-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pb-slider__slide:not(.is-active) .pb-slider__overlay-animate {
    opacity: 0;
    transform: translateY(14px);
    animation: none !important;
}
.pb-slider__slide.is-active .pb-slider__overlay-title.pb-slider__overlay-animate {
    animation: pb-slider-overlay-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
.pb-slider__slide.is-active .pb-slider__overlay-sub.pb-slider__overlay-animate {
    animation: pb-slider-overlay-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}
.pb-slider__slide.is-active .pb-slider__overlay-cta.pb-slider__overlay-animate {
    animation: pb-slider-overlay-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
.pb-slider__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 4; background: rgba(0, 0, 0, 0.28); pointer-events: none; }
.pb-slider__progress-fill { height: 100%; width: 0%; background: rgba(78, 190, 239, 0.95); }
.pb-slider-embed-fill, .pb-slider-video-fill { position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: #0f172a; }
/* Slayt YouTube: 16:9 gömülü alanı cover gibi doldur (yanlarda şerit kalmaz); üst/alt kırpılabilir. Eski tarayıcı: yakınlaştırma yedeği. */
.pb-slider-embed-fill--chromeless { overflow: hidden; }
.pb-slider-embed-fill--chromeless .pb-slider-iframe {
    left: 50%; top: 50%; width: 100%; height: 100%;
    transform: translate(-50%, -50%) scale(1.14);
    transform-origin: center center;
}
@supports (container-type: size) {
    .pb-slider-embed-fill--chromeless { container-type: size; }
    .pb-slider-embed-fill--chromeless .pb-slider-iframe {
        width: max(100cqw, calc(100cqh * 16 / 9));
        height: max(100cqh, calc(100cqw * 9 / 16));
        max-width: none;
        max-height: none;
        transform: translate(-50%, -50%);
    }
}
.pb-slider-yt-shield,
.pb-slider-vid-shield {
    position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 2;
    background: transparent; cursor: default; pointer-events: auto;
}
.pb-slider-iframe, .pb-slider-video-el { position: absolute; left: 0; top: 0; width: 100%; height: 100%; border: 0; display: block; }
.pb-slider-video-el { background: #000; object-fit: contain; }
.pb-slider-video-fill .pb-slider-video-el { object-fit: cover; }
/* Slayt dosya videosu: kontrol çubuğu yok; hafif zoom ile yan sütun/gömülü siyah şerit azaltılır */
.pb-slider-video-fill--shield { overflow: hidden; }
.pb-slider-video-fill--shield .pb-slider-video-el {
    left: 50%; top: 50%;
    width: 100%; height: 100%;
    transform: translate(-50%, -50%) scale(1.1);
    transform-origin: center center;
    object-fit: cover;
}
@supports (container-type: size) {
    .pb-slider-video-fill--shield { container-type: size; }
    .pb-slider-video-fill--shield .pb-slider-video-el {
        width: max(100cqw, calc(100cqh * 16 / 9));
        height: max(100cqh, calc(100cqw * 9 / 16));
        max-width: none;
        max-height: none;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }
}
.pb-slider__prev, .pb-slider__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 36px; height: 36px; border: none; border-radius: 50%; background: rgba(0,0,0,0.45); color: #fff; cursor: pointer; font-size: 1.2rem; line-height: 1; }
.pb-slider__prev { left: 8px; }
.pb-slider__next { right: 8px; }
.pb-slider__dots { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; z-index: 3; }
.pb-slider__dot { width: 8px; height: 8px; border-radius: 50%; border: none; margin: 0 4px; background: rgba(255,255,255,0.45); cursor: pointer; padding: 0; }
.pb-slider__dot.is-active { background: #fff; }
.pb-video-wrap { margin: 0 0 0.85rem; }
.pb-video-inner { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; background: #0f172a; }
.pb-video-iframe, .pb-video-el { position: absolute; left: 0; top: 0; width: 100%; height: 100%; border: 0; }
.pb-video-el { background: #000; }
.pb-video-caption { margin-top: 0.35rem; font-size: 0.8rem; color: #6b7280; text-align: center; }
.pb-spacer { }
.pb-divider { border: none; border-top: 1px solid #e5e7eb; margin: 1rem 0; }
.pb-button-wrap { margin-bottom: 0.85rem; }
.pb-button { display: inline-block; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: opacity 0.15s ease; }
.pb-button:hover { opacity: 0.88; }
.pb-button--primary { background: var(--brand-mid); color: #fff; }
.pb-button--secondary { background: #475569; color: #fff; }
.pb-button--success { background: #059669; color: #fff; }
.pb-button--outline { background: transparent; color: var(--brand-mid); border: 2px solid var(--brand-mid); }
/* İstatistik alanı */
.pb-stats { margin: 0 0 1rem; }
.pb-stats__grid {
    display: grid;
    grid-template-columns: repeat(var(--pb-stats-cols, 4), 1fr);
    gap: clamp(0.85rem, 2.5vw, 1.5rem);
}
.pb-stats__item {
    text-align: center;
    padding: clamp(0.85rem, 2vw, 1.15rem);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
a.pb-stats__item,
a.pb-stats__item:hover,
a.pb-stats__item:focus {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.pb-stats__item--icon-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.65rem, 2vw, 1rem);
    text-align: left;
}
a.pb-stats__item.pb-stats__item--icon-left {
    display: flex;
}
.pb-stats__item--icon-left .pb-stats__icon {
    margin: 0;
    flex-shrink: 0;
}
.pb-stats__item--icon-left .pb-stats__body {
    flex: 1;
    min-width: 0;
}
.pb-stats__item--icon-left .pb-stats__number {
    margin-bottom: 0.25rem;
}
.pb-stats__item--img-cover {
    padding: 0;
    overflow: hidden;
}
.pb-stats__item--icon-left.pb-stats__item--img-cover {
    align-items: center;
    gap: 0;
}
.pb-stats__item--icon-left.pb-stats__item--img-cover .pb-stats__icon--cover {
    width: var(--pb-stats-icon-size, 52px);
    height: var(--pb-stats-icon-size, 52px);
    flex-shrink: 0;
    margin: 0;
    align-self: center;
}
.pb-stats__item--img-cover .pb-stats__icon-bg {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
.pb-stats__item--img-cover .pb-stats__body {
    padding: clamp(0.85rem, 2vw, 1.15rem);
    flex: 1;
    min-width: 0;
}
.pb-stats__item--img-cover:not(.pb-stats__item--icon-left) {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
.pb-stats__item--img-cover:not(.pb-stats__item--icon-left) .pb-stats__icon--cover {
    width: 100%;
    max-width: none;
    height: var(--pb-stats-icon-size, 52px);
    min-height: var(--pb-stats-icon-size, 52px);
    margin: 0 0 0.55rem;
}
.pb-stats__item--img-cover:not(.pb-stats__item--icon-left) .pb-stats__body {
    padding: 0 clamp(0.85rem, 2vw, 1.15rem) clamp(0.85rem, 2vw, 1.15rem);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .pb-stats__item--img-cover:hover .pb-stats__icon-bg {
        transform: scale(1.05);
    }
}
.pb-stats__icon--fa,
.pb-stats__icon--img img {
    transition: transform 0.3s ease;
    transform-origin: center center;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .pb-stats__item:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(78, 190, 239, 0.5);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    }
    .pb-stats__item:hover .pb-stats__icon--fa,
    .pb-stats__item:hover .pb-stats__icon--img img {
        transform: scale(1.1);
    }
}
.pb-stats__icon {
    margin: 0 auto 0.55rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-stats__icon--img img { max-width: 52px; max-height: 52px; width: auto; height: auto; display: block; }
.pb-stats__icon--fa { font-size: 1.65rem; color: var(--accent, #4ebeef); line-height: 1; }
.pb-stats__number {
    font-weight: 800;
    font-size: clamp(1.55rem, 3.8vw, 2.35rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0.35rem;
    font-variant-numeric: tabular-nums;
}
.pb-stats__number[data-pb-counter="0"],
.pb-stats__number[hidden] { display: none !important; }
.pb-stats__number-suffix { font-size: 0.78em; font-weight: 700; }
.pb-stats__number--text .pb-stats__number-suffix { font-size: 1em; }
.pb-stats__label {
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    color: rgba(242, 248, 252, 0.82);
    line-height: 1.35;
}
@media (max-width: 900px) {
    .pb-stats__grid { grid-template-columns: repeat(min(var(--pb-stats-cols, 4), 2), 1fr); }
}
@media (max-width: 540px) {
    .pb-stats__grid { grid-template-columns: 1fr; }
}
/* Buton grupları */
.pb-btn-group { margin: 0 0 1rem; }
.pb-btn-group__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--pb-btn-group-title-color, #fff);
}
.pb-btn-group__grid {
    display: grid;
    grid-template-columns: repeat(var(--pb-btn-group-cols, 4), 1fr);
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
}
.pb-btn-group__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 72px;
    padding: clamp(0.75rem, 2vw, 1rem);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--pb-btn-group-label-color, #f2f8fc);
    text-decoration: none;
    text-align: center;
    transition: opacity 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.pb-btn-group__item:hover {
    opacity: 0.92;
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--pb-btn-group-label-color, #f2f8fc);
    text-decoration: none;
}
.pb-btn-group__item--cover {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: #1a1d23;
}
.pb-btn-group__item--cover:hover { opacity: 1; transform: scale(1.02); }
.pb-btn-group__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pb-btn-group__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}
.pb-btn-group__media--img img {
    max-width: 48px;
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}
.pb-btn-group__media--fa {
    font-size: 1.5rem;
    color: var(--accent, #4ebeef);
    line-height: 1;
}
.pb-btn-group__label {
    font-size: clamp(0.78rem, 1.8vw, 0.9rem);
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
}
.pb-btn-group__item--cover .pb-btn-group__label {
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: 100%;
    padding: 0.65rem 0.5rem 0.75rem;
    color: var(--pb-btn-group-label-color, #fff);
    font-weight: 700;
    font-size: clamp(0.68rem, 1.5vw, 0.82rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
@media (max-width: 900px) {
    .pb-btn-group__grid { grid-template-columns: repeat(min(var(--pb-btn-group-cols, 4), 2), 1fr); }
}
@media (max-width: 540px) {
    .pb-btn-group__grid { grid-template-columns: 1fr; }
}
/* Medya içerikleri listesi (sayfa oluşturucu) — açık zemin, koyu metin */
.fb-form-pb-block .pb-medya-list   {
    margin: 0 0 1.5rem;
    color: #1a2535;
}
.fb-form-pb-block .pb-medya-list__cats __cats  {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.25rem;
}
.fb-form-pb-block .pb-medya-list__cat __cat  {
    border: 1px solid #c5d4e0;
    background: #f8fafc;
    color: #334155;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.fb-form-pb-block .pb-medya-list__cat:hover __cat:hover  {
    background: #eef6fc;
    border-color: #7ec8ea;
    color: #0077b6;
}
.fb-form-pb-block .pb-medya-list__cat.is-active __cat.is-active  {
    background: linear-gradient(135deg, #0077b6 0%, #0094d4 100%);
    border-color: #0077b6;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 119, 182, 0.22);
}
.fb-form-pb-block .pb-medya-list__items--vertical __items--vertical  {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.fb-form-pb-block .pb-medya-list__items--horizontal __items--horizontal  {
    display: grid;
    grid-template-columns: repeat(var(--pb-medya-cols, 3), minmax(0, 1fr));
    gap: 1rem;
}
.fb-form-pb-block .pb-medya-list__card __card  {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 51, 89, 0.04);
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.fb-form-pb-block .pb-medya-list__card:hover __card:hover  {
    border-color: rgba(0, 119, 182, 0.28);
    box-shadow: 0 10px 28px rgba(0, 51, 89, 0.1);
    transform: translateY(-2px);
}
.fb-form-pb-block .pb-medya-list__card-link __card-link  {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #1a2535;
    text-decoration: none;
}
.fb-form-pb-block .pb-medya-list__card-link:hover __card-link:hover  {
    color: #1a2535;
    text-decoration: none;
}
.fb-form-pb-block .pb-medya-list__items--vertical .pb-medya-list__card-link __items--vertical .pb-medya-list__card-link  {
    flex-direction: row;
    align-items: stretch;
}
.fb-form-pb-block .pb-medya-list__items--vertical .pb-medya-list__thumb __items--vertical .pb-medya-list__thumb  {
    flex: 0 0 220px;
    max-width: 220px;
    min-height: 150px;
}
.fb-form-pb-block .pb-medya-list__items--horizontal .pb-medya-list__thumb __items--horizontal .pb-medya-list__thumb  {
    aspect-ratio: 16 / 10;
}
.fb-form-pb-block .pb-medya-list__thumb __thumb  {
    background: linear-gradient(145deg, #e8eef3 0%, #dfe8f0 100%);
    overflow: hidden;
    position: relative;
}
.fb-form-pb-block .pb-medya-list__thumb img __thumb img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}
.fb-form-pb-block .pb-medya-list__card:hover .pb-medya-list__thumb img __card:hover .pb-medya-list__thumb img  {
    transform: scale(1.03);
}
.fb-form-pb-block .pb-medya-list__thumb--empty __thumb--empty  {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fb-form-pb-block .pb-medya-list__thumb-ph __thumb-ph  {
    font-size: 2rem;
    color: #94a3b8;
    opacity: 0.65;
}
.fb-form-pb-block .pb-medya-list__body __body  {
    padding: 1rem 1.15rem 1.1rem;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.fb-form-pb-block .pb-medya-list__meta __meta  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.45rem;
}
.fb-form-pb-block .pb-medya-list__cat-label __cat-label  {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0077b6;
    background: rgba(0, 119, 182, 0.08);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
}
.fb-form-pb-block .pb-medya-list__title __title  {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}
.fb-form-pb-block .pb-medya-list__date __date  {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}
.fb-form-pb-block .pb-medya-list__excerpt __excerpt  {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #475569;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fb-form-pb-block .pb-medya-list__read-more __read-more  {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0077b6;
}
.fb-form-pb-block .pb-medya-list__read-more i __read-more i  {
    font-size: 0.72rem;
    margin-left: 0.2rem;
    transition: transform 0.15s;
}
.fb-form-pb-block .pb-medya-list__card:hover .pb-medya-list__read-more i __card:hover .pb-medya-list__read-more i  {
    transform: translateX(3px);
}
.fb-form-pb-block .pb-medya-list__empty __empty  {
    padding: 2rem 1rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}
.fb-form-pb-block .pb-medya-list__footer __footer  {
    margin-top: 1rem;
    text-align: center;
}
.fb-form-pb-block .pb-medya-list__pagination __pagination  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}
.fb-form-pb-block .pb-medya-list__page __page  {
    min-width: 2.1rem;
    height: 2.1rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}
.fb-form-pb-block .pb-medya-list__page.is-active __page.is-active  {
    background: #0077b6;
    border-color: #0077b6;
    color: #fff;
}
.fb-form-pb-block .pb-medya-list__more __more  {
    border-color: #0077b6;
    color: #0077b6;
    font-weight: 600;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
}
.fb-form-pb-block .pb-medya-list__more:hover __more:hover  {
    background: #0077b6;
    color: #fff;
}
@media (max-width: 720px) {
    .fb-form-pb-block .pb-medya-list__items--horizontal __items--horizontal  {
        grid-template-columns: 1fr;
    }
    .fb-form-pb-block .pb-medya-list__items--vertical .pb-medya-list__card-link __items--vertical .pb-medya-list__card-link  { flex-direction: column; }
    .fb-form-pb-block .pb-medya-list__items--vertical .pb-medya-list__thumb __items--vertical .pb-medya-list__thumb  { flex: 0 0 auto; max-width: none; min-height: 0; }
}
/* Medya yazısı detay — sol kapak + içerik, sağ meta + paylaş + kategori listesi (sabit) */
.site-medya-article__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: stretch;
}
.site-medya-article__aside {
    align-self: stretch;
    min-width: 0;
}
.site-medya-article__aside-inner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.35rem 0 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.site-medya-article__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    align-self: flex-end;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(0, 51, 89, 0.1);
}
.site-medya-article__cat {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0077b6;
    line-height: 1.35;
    word-break: break-word;
}
.site-medya-article__date {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}
.site-medya-article__date i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 0.78rem;
    opacity: 0.7;
}
.site-medya-article__share-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    align-self: flex-end;
    margin-bottom: 1.25rem;
}
.site-medya-article__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 51, 89, 0.12);
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
    box-shadow: 0 1px 4px rgba(0, 51, 89, 0.06);
}
.site-medya-article__share-btn:hover {
    background: #0077b6;
    border-color: #0077b6;
    color: #fff;
    transform: translateY(-1px);
}
.site-medya-article__related {
    margin-top: 0.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(0, 51, 89, 0.1);
}
.site-medya-article__related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.site-medya-article__related-link {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 51, 89, 0.1);
    box-shadow: 0 1px 6px rgba(0, 51, 89, 0.05);
    padding: 0;
    min-height: 44px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.site-medya-article__related-link:hover {
    border-color: rgba(0, 119, 182, 0.35);
    box-shadow: 0 3px 12px rgba(0, 51, 89, 0.08);
    background: #f8fafc;
}
.site-medya-article__related-thumb {
    flex: 0 0 56px;
    width: 56px;
    align-self: stretch;
    border-radius: 0;
    overflow: hidden;
    background: #e8eef3;
    line-height: 0;
}
.site-medya-article__related-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 44px;
    object-fit: cover;
}
.site-medya-article__related-thumb-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 44px;
    color: #94a3b8;
    font-size: 0.9rem;
}
.site-medya-article__related-title {
    flex: 1;
    min-width: 0;
    align-self: center;
    padding: 0.45rem 0.6rem 0.45rem 0.55rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    color: #1e293b;
}
.site-medya-article__related-link:hover .site-medya-article__related-title {
    color: #0077b6;
}
.site-medya-article__main {
    background: #fff;
    border: 1px solid rgba(0, 51, 89, 0.08);
    border-radius: 16px;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    box-shadow: 0 4px 28px rgba(0, 51, 89, 0.07);
    min-width: 0;
}
.site-medya-article__cover {
    margin: 0 0 1.5rem;
}
.site-medya-article__cover-frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 51, 89, 0.1);
    background: #f1f5f9;
    line-height: 0;
}
.site-medya-article__cover img {
    display: block;
    height: 420px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.site-medya-article__cover-zoom {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, transform 0.12s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.site-medya-article__cover-zoom:hover {
    background: rgba(0, 119, 182, 0.95);
    transform: scale(1.05);
}
.site-medya-article__content { min-width: 0; }
.site-medya-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: rgba(8, 15, 28, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
}
.site-medya-lightbox[hidden] {
    display: none !important;
}
.site-medya-lightbox__img {
    max-width: min(100%, 1400px);
    max-height: calc(100vh - 3rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}
.site-medya-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
.site-medya-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 880px) {
    .site-medya-article__layout {
        grid-template-columns: 1fr;
    }
    .site-medya-article__aside .site-page__sidebar-inner {
        position: static;
        max-height: none;
        overflow: visible;
    }
    .site-medya-article__meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        align-self: auto;
        gap: 0.65rem 1rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.85rem;
    }
    .site-medya-article__aside-inner {
        align-items: stretch;
    }
    .site-medya-article__share-list {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        align-self: auto;
        margin-bottom: 1rem;
    }
    .site-medya-article__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }
    .site-medya-article__cover img {
        height: auto;
        max-height: 420px;
    }
}
/* Quill font sınıfları */
.ql-font-serif { font-family: Georgia, "Times New Roman", serif; }
.ql-font-monospace { font-family: "Courier New", Consolas, monospace; }
.ql-font-segoe-ui { font-family: "Segoe UI", sans-serif; }
.ql-font-arial { font-family: Arial, Helvetica, sans-serif; }
.ql-font-georgia { font-family: Georgia, serif; }
.ql-font-tahoma { font-family: Tahoma, Geneva, sans-serif; }
.ql-font-verdana { font-family: Verdana, Geneva, sans-serif; }
.ql-font-trebuchet { font-family: "Trebuchet MS", Helvetica, sans-serif; }
/* Tablo */
.pb-table-wrap { margin-bottom: 0.85rem; overflow-x: auto; }
.pb-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.pb-table th, .pb-table td { border: 1px solid #d1d5db; padding: 0.5rem 0.75rem; text-align: left; vertical-align: middle; }
.pb-table th > *, .pb-table td > * { text-align: inherit; vertical-align: inherit; }
.pb-table th img, .pb-table td img { max-width: 100%; height: auto; vertical-align: middle; display: inline; }
.pb-table thead th { background: rgb(145, 202, 240); font-weight: 700; color: #1f2937; }
.pb-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.03); }
/* İç sayfa: sol alt menü + sağ içerik */
.site-page__layout {
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 4vw, 3rem);
    box-sizing: border-box;
}
.site-page__layout--with-sidebar {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    /* stretch: sol sütun satır kadar uzar; böylece sticky menü sayfa kayınca görünür kalır */
    align-items: stretch;
}
.site-page__layout--with-sidebar .site-page__body {
    background: #fff;
    border: 1px solid rgba(0, 51, 89, 0.08);
    border-radius: 16px;
    padding: clamp(1.35rem, 1.35rem, 1.35rem);
    box-shadow: 0 4px 28px rgba(0, 51, 89, 0.07);
}
.site-page__sidebar {
    align-self: stretch;
    min-width: 0;
}
.site-page__sidebar-inner {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--site-head-overlap) + 0.65rem);
    z-index: 2;
    max-height: calc(100vh - var(--site-head-overlap) - 1rem);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 119, 182, 0.35) rgba(0, 0, 0, 0.06);
    padding: 0;
    background: transparent;
}
.site-page__sidebar-inner::-webkit-scrollbar {
    width: 6px;
}
.site-page__sidebar-inner::-webkit-scrollbar-track {
    background: #e8ecf0;
    border-radius: 4px;
}
.site-page__sidebar-inner::-webkit-scrollbar-thumb {
    background: rgba(0, 119, 182, 0.35);
    border-radius: 4px;
}
/* Bölüm başlığı — sol menü üstü */
.site-page__sidebar-heading {
    margin: 0 0 1rem;
    padding: 0 0.15rem 0.65rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.25;
    color: var(--brand-navy);
    border-bottom: 2px solid rgba(0, 119, 182, 0.18);
}
nav.site-page__sidebar-nav {
    --sidebar-tile: linear-gradient(155deg, var(--brand-cyan-soft) 0%, var(--brand-cyan) 42%, var(--brand-bright) 100%);
    --sidebar-panel: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand-mid) 38%, var(--brand-deep) 68%, var(--brand-navy) 100%);
    background: transparent;
    border: none;
    padding: 0;
}
.site-sidebar-nav__list,
.site-sidebar-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-sidebar-nav__list {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 51, 89, 0.1);
    box-shadow: 0 8px 28px rgba(0, 51, 89, 0.1), 0 2px 6px rgba(0, 51, 89, 0.06);
}
.site-sidebar-nav__list > .site-sidebar-nav__item {
    border-bottom: 1px solid #e8ecef;
    background: #fff;
}
/* Alt panel: gradient + son çocuğun margin’i dışarı taşmasın (altta beyaz çizgi) */
.site-sidebar-nav__list > .site-sidebar-nav__item--has-sub {
    border-bottom: none;
    background: var(--sidebar-panel);
    display: flow-root;
    padding-bottom: 0.35rem;
}
.site-sidebar-nav__list > .site-sidebar-nav__item--has-sub > .site-sidebar-nav__row--split {
    background: #fff;
}
.site-sidebar-nav__list > .site-sidebar-nav__item:last-child {
    border-bottom: none;
}
.site-sidebar-nav__item--has-sub > .site-sidebar-nav__sub {
    display: block;
}
/* Kök: sol marka ikon kutusu + beyaz metin + sağ ok */
.site-sidebar-nav__row--split {
    display: flex;
    align-items: stretch;
    min-height: 4rem;
}
.site-sidebar-nav__icon-tile {
    flex: 0 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sidebar-tile);
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}
.site-sidebar-nav__icon-tile .site-sidebar-nav__ico {
    width: auto;
    color: #fff;
}
.site-sidebar-nav__icon-tile .site-sidebar-nav__ico i {
    font-size: 2.50rem;
    line-height: 1;
}
.site-sidebar-nav__icon-tile .site-sidebar-nav__ico--img img {
    width: 2.7rem;
    height: 2.7rem;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
.site-sidebar-nav__sub-media {
    flex: 0 0 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.site-sidebar-nav__sub-media .site-sidebar-nav__ico--img img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
.site-sidebar-nav__sub-media .site-sidebar-nav__ico i {
    font-size: 1.2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
}
.site-sidebar-nav__split-body {
    flex: 1;
    display: flex;
    align-items: stretch;
    min-width: 0;
    background: #fff;
}
.site-sidebar-nav__link--split,
.site-sidebar-nav__nolink--split {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 0.85rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--brand-navy);
    text-decoration: none;
    min-width: 0;
    transition: background 0.15s ease;
}
.site-sidebar-nav__link--split:hover,
.site-sidebar-nav__nolink--split:hover {
    background: rgba(78, 190, 239, 0.08);
}
.site-sidebar-nav__link--split-only,
.site-sidebar-nav__nolink--split-only {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    min-height: 4rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand-navy);
    text-decoration: none;
    transition: background 0.15s ease;
}
.site-sidebar-nav__link--split-only:hover {
    background: rgba(78, 190, 239, 0.08);
}
.site-sidebar-nav__toggle--split {
    flex: 0 0 2.65rem;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #adb5c4;
    border-left: 1px solid #eef2f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
.site-sidebar-nav__toggle--split:hover {
    background: rgba(78, 190, 239, 0.1);
    color: var(--brand-mid);
}
.site-sidebar-nav__item--has-sub.is-open > .site-sidebar-nav__row--split .site-sidebar-nav__toggle--split {
    color: var(--brand-cyan);
}
/* Açılan alt katman: lacivert–mavi gradient, beyaz yazı */
.site-sidebar-nav__list > .site-sidebar-nav__item > .site-sidebar-nav__sub {
    margin: 0;
    padding: 0.25rem 0 0.65rem;
    background: var(--sidebar-panel);
    border: none;
}
/*
 * Çerçeveli blok: yalnızca alt menüsü olan satırın (örn. Tabanca Çivileri) alt listesi.
 * İçerideki yapraklar (Plastiğe Dizili Çiviler vb.) ayrı kutu değil; tek çerçeve + girinti.
 */
.site-sidebar-nav__sub > .site-sidebar-nav__item--has-sub > .site-sidebar-nav__sub {
    margin: 0 0.5rem 0 0.5rem;
    border-radius: 12px;
}
.site-sidebar-nav__sub > .site-sidebar-nav__item--has-sub:last-child > .site-sidebar-nav__sub {
    margin-bottom: 0.25rem;
}
.site-sidebar-nav__sub > .site-sidebar-nav__item--has-sub > .site-sidebar-nav__sub > li > .site-sidebar-nav__link--leaf-sub,
.site-sidebar-nav__sub > .site-sidebar-nav__item--has-sub > .site-sidebar-nav__sub > li > .site-sidebar-nav__nolink--leaf-sub {
    border-bottom: none;
    padding: 0.65rem 2.35rem 0.65rem 1rem;
    margin: 0.12rem 0.2rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}
.site-sidebar-nav__sub > .site-sidebar-nav__item--has-sub > .site-sidebar-nav__sub > li > .site-sidebar-nav__link--leaf-sub::after {
    right: 1rem;
}
.site-sidebar-nav__row--in-sub {
    display: flex;
    align-items: stretch;
    border-bottom: none;
}
.site-sidebar-nav__link--in-sub,
.site-sidebar-nav__nolink--in-sub {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0.82rem 0.55rem 0.82rem 0.80rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    color: rgba(255, 255, 255, 0.98);
    text-decoration: none;
    min-width: 0;
    transition: background 0.18s ease, color 0.15s ease;
}
.site-sidebar-nav__link--in-sub:hover,
.site-sidebar-nav__nolink--in-sub:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.site-sidebar-nav__toggle--in-sub {
    flex: 0 0 2.5rem;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease, background 0.15s ease;
}
.site-sidebar-nav__toggle--in-sub:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.site-sidebar-nav__item--has-sub.is-open > .site-sidebar-nav__row--in-sub .site-sidebar-nav__toggle--in-sub {
    color: #fff;
}
.site-sidebar-nav__link--leaf-sub,
.site-sidebar-nav__nolink--leaf-sub {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    margin: 0;
    padding: 0.78rem 2.25rem 0.78rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition: background 0.18s ease, color 0.15s ease;
}
.site-sidebar-nav__link--leaf-sub .site-sidebar-nav__txt,
.site-sidebar-nav__nolink--leaf-sub .site-sidebar-nav__txt {
    flex: 1;
    min-width: 0;
}
.site-sidebar-nav__sub > li:last-child > .site-sidebar-nav__link--leaf-sub,
.site-sidebar-nav__sub > li:last-child > .site-sidebar-nav__nolink--leaf-sub,
.site-sidebar-nav__sub > li:last-child > .site-sidebar-nav__row--in-sub {
    border-bottom: none;
}
.site-sidebar-nav__link--leaf-sub::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.68rem;
    position: absolute;
    right: 1.05rem;
    opacity: 0.9;
    color: #fff;
}
.site-sidebar-nav__link--leaf-sub:hover {
    background: rgba(255, 255, 255, 0.08);
}
.site-sidebar-nav__ico {
    flex-shrink: 0;
    text-align: center;
}
.site-sidebar-nav__txt {
    flex: 1;
    min-width: 0;
}
.site-sidebar-nav__toggle {
    flex: 0 0 2.45rem;
}
.site-sidebar-nav__toggle:focus-visible {
    outline: 2px solid var(--brand-cyan);
    outline-offset: 1px;
    z-index: 1;
}
.site-sidebar-nav__toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    line-height: 1;
    transition: transform 0.22s ease;
}
.site-sidebar-nav__item--has-sub.is-open > .site-sidebar-nav__row .site-sidebar-nav__toggle::after {
    transform: rotate(180deg);
}
/* Aktif: marka vurgusu */
.site-sidebar-nav__link--split.is-current,
.site-sidebar-nav__nolink--split.is-current {
    background: rgba(78, 190, 239, 0.12);
    box-shadow: inset 3px 0 0 var(--brand-mid);
}
.site-sidebar-nav__link--split-only.is-current {
    background: rgba(78, 190, 239, 0.12);
    box-shadow: inset 3px 0 0 var(--brand-mid);
}
.site-sidebar-nav__link--leaf-sub.is-current {
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
}
.site-sidebar-nav__link--in-sub.is-current {
    background: rgba(0, 0, 0, 0.16);
    box-shadow: inset 4px 0 0 var(--brand-cyan);
    color: #fff;
}
.site-sidebar-nav__nolink--leaf-sub.is-current,
.site-sidebar-nav__nolink--in-sub.is-current {
    background: rgba(0, 0, 0, 0.14);
    box-shadow: inset 4px 0 0 var(--brand-cyan-soft);
    color: #fff;
}
.site-sidebar-nav__nolink {
    cursor: default;
}
@media (max-width: 880px) {
    .site-breadcrumb-strip {
        display: none;
    }
    .site-page__layout--with-sidebar {
        grid-template-columns: 1fr;
    }
    .site-page__sidebar-inner {
        position: static;
        max-height: none;
        overflow: visible;
        z-index: auto;
    }
    .site-page__layout--with-sidebar .site-page__body {
        border-radius: 14px;
    }
    /*
     * Mobil çekmece menü: .site-nav için genel (masaüstü) kurallar bu @media’dan sonra
     * geldiği için listeyi yatay sarar ve link rengini/nowrap’i bozuyordu — son söz burada.
     */
    .site-nav .site-nav__list {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        align-content: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }
    .site-nav .site-nav__link,
    .site-nav .site-nav__nolink {
        display: block !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
        color: #0f172a !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .site-nav .site-nav__nolink {
        color: #0f172a !important;
    }
    .site-nav .site-nav__home,
    .site-nav .site-nav__home .site-nav__home-text {
        color: #0f172a !important;
        opacity: 1 !important;
    }
    .site-nav .site-nav__home {
        width: 100% !important;
        display: inline-flex !important;
    }
    .site-nav .site-nav__item--has-sub > .site-nav__link::after,
    .site-nav .site-nav__item--has-sub > .site-nav__nolink::after {
        content: "\f054" !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        font-size: 0.7rem !important;
        margin-left: 0 !important;
        opacity: 1 !important;
        color: var(--brand-mid) !important;
        position: absolute !important;
        right: 1.1rem !important;
        top: 50% !important;
        left: auto !important;
        float: none !important;
        display: block !important;
        transform: translateY(-50%) !important;
        vertical-align: unset !important;
    }
    .site-nav .site-nav__item--has-sub.is-open > .site-nav__link::after,
    .site-nav .site-nav__item--has-sub.is-open > .site-nav__nolink::after {
        transform: translateY(-50%) rotate(90deg) !important;
    }
    .site-nav .site-nav__sub .site-nav__link,
    .site-nav .site-nav__sub .site-nav__nolink {
        color: #334155 !important;
        white-space: normal !important;
    }
}
main { flex: 1; }
