
:root {
    --cd-hero-min-h: 60vh;
    --cd-hero-min-h-mobile: 52vh;
    --cd-content-max: 1000px;
    --cd-body-max: 720px;
    --cd-sidebar-w: 48px;
    --cd-sidebar-gap: 2rem;
    --cd-share-size: 40px;
    --cd-progress-h: 3px;
    --cd-hero-overlay: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    --cd-share-bg: var(--fe-color-surface);
    --cd-share-border: var(--fe-color-border);
    --cd-author-bg: var(--fe-color-bg-alt);
    --cd-chip-bg: var(--fe-color-bg-alt);
    --cd-chip-text: var(--fe-color-text);
    --cd-chip-hover-bg: var(--fe-color-primary-soft);
    --cd-chip-hover-text: var(--fe-color-primary);
    --cd-comment-bg: var(--fe-color-bg-alt);
}

[data-theme="dark"] {
    --cd-hero-overlay: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.15) 100%);
    --cd-share-bg: var(--fe-color-surface);
    --cd-share-border: var(--fe-color-border);
    --cd-author-bg: var(--fe-color-surface);
    --cd-chip-bg: var(--fe-color-surface);
    --cd-chip-text: var(--fe-color-text);
    --cd-chip-hover-bg: rgba(244,63,94,0.15);
    --cd-chip-hover-text: var(--fe-color-primary);
    --cd-comment-bg: var(--fe-color-surface);
}

@keyframes cd-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton {
    background: linear-gradient(
        90deg,
        var(--fe-color-bg-alt) 0%,
        var(--fe-color-border) 45%,
        var(--fe-color-bg-alt) 55%,
        var(--fe-color-bg-alt) 100%
    );
    background-size: 200% 100%;
    animation: cd-skeleton-shimmer 1.4s ease-in-out infinite;
    border-radius: var(--fe-radius);
    pointer-events: none;
}
[data-theme="dark"] .skeleton {
    background: linear-gradient(
        90deg,
        var(--fe-color-surface) 0%,
        var(--fe-color-border) 45%,
        var(--fe-color-surface) 55%,
        var(--fe-color-surface) 100%
    );
    background-size: 200% 100%;
}
.skeleton-line { height: 1em; }
.skeleton-block { display: block; }

.cd-hero-skeleton { display: none; }
.cd-hero-skeleton .skeleton {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.06) 0%,
        rgba(255,255,255,0.14) 45%,
        rgba(255,255,255,0.06) 55%,
        rgba(255,255,255,0.06) 100%
    );
    background-size: 200% 100%;
    animation: cd-skeleton-shimmer 1.4s ease-in-out infinite;
}
.cd-hero-skeleton__meta .skeleton { vertical-align: middle; }
.cd-hero--loading .cd-hero__body { display: none; }
.cd-hero--loading .cd-hero-skeleton { display: block; }

.cd-below-hero-skeleton { display: none; }
.cd-hero--loading ~ .cd-below-hero-skeleton { display: block; }
.cd-hero--loading ~ .cd-content-wrap,
.cd-hero--loading ~ .cd-author-card,
.cd-hero--loading ~ .cd-after-content,
.cd-hero--loading ~ .cd-share-mobile { display: none !important; }
.cd-below-hero-skeleton__inner {
    max-width: var(--cd-content-max);
    margin: 0 auto;
    padding: 2.5rem var(--fe-spacing-lg) 0;
}
.cd-below-hero-skeleton .skeleton {
    background: var(--fe-color-bg-alt);
    animation: cd-skeleton-shimmer 1.4s ease-in-out infinite;
}
.cd-below-hero-skeleton__author {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 1.875rem;
    background: var(--cd-author-bg);
    border-radius: 14px;
    border: 1px solid var(--fe-color-border);
    margin: 3rem 0 2rem;
}
.cd-below-hero-skeleton__author-lines { flex: 1; min-width: 0; }
.cd-below-hero-skeleton__interest { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--fe-color-border); }
.cd-below-hero-skeleton__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.cd-below-hero-skeleton__card { min-width: 0; }

.cd-hero-skeleton__breadcrumb { width: 140px; height: 0.875rem; margin-bottom: 0.75rem; }
.cd-hero-skeleton__badge { width: 72px; height: 1.25rem; border-radius: 100px; margin-bottom: 0.75rem; }
.cd-hero-skeleton__title { width: 85%; max-width: 640px; height: 2rem; margin-bottom: 0.75rem; border-radius: 6px; }
.cd-hero-skeleton__title2 { width: 60%; max-width: 400px; height: 2rem; margin-bottom: 1rem; border-radius: 6px; }
.cd-hero-skeleton__excerpt { height: 1rem; border-radius: 6px; }
.cd-hero-skeleton__excerpt--w80 { width: 80%; max-width: 560px; margin-bottom: 0.5rem; }
.cd-hero-skeleton__excerpt--w70 { width: 70%; max-width: 480px; margin-bottom: 0.5rem; }
.cd-hero-skeleton__excerpt--w45 { width: 45%; max-width: 320px; margin-bottom: 1.25rem; }
.cd-hero-skeleton__meta .skeleton { display: inline-block; vertical-align: middle; }
.cd-hero-skeleton__meta-avatar { width: 24px; height: 24px; border-radius: 50%; margin-right: 0.5rem; }
.cd-hero-skeleton__meta-line { height: 0.875rem; display: inline-block; vertical-align: middle; }
.cd-hero-skeleton__meta-line--88 { width: 88px; margin-right: 1rem; }
.cd-hero-skeleton__meta-line--72 { width: 72px; margin-right: 1rem; }
.cd-hero-skeleton__meta-line--64 { width: 64px; margin-right: 0; }

.cd-below-hero-skeleton__line { height: 1em; display: block; margin-bottom: 0.75rem; border-radius: 4px; }
.cd-below-hero-skeleton__line--100 { width: 100%; }
.cd-below-hero-skeleton__line--98 { width: 98%; }
.cd-below-hero-skeleton__line--95 { width: 95%; }
.cd-below-hero-skeleton__line--70 { width: 70%; }
.cd-below-hero-skeleton__line--88 { width: 88%; }
.cd-below-hero-skeleton__line--60 { width: 60%; margin-bottom: 2rem; }
.cd-below-hero-skeleton__author-avatar { width: 72px; height: 72px; border-radius: 50%; display: block; flex-shrink: 0; }
.cd-below-hero-skeleton__author-title { width: 140px; height: 1.125rem; display: block; margin-bottom: 0.5rem; border-radius: 4px; }
.cd-below-hero-skeleton__author-line { height: 0.9375rem; display: block; border-radius: 4px; }
.cd-below-hero-skeleton__author-line--90 { width: 90%; margin-bottom: 0.25rem; }
.cd-below-hero-skeleton__author-line--70 { width: 70%; }
.cd-below-hero-skeleton__interest-title { width: 200px; height: 1.25rem; display: block; margin-bottom: 0.75rem; border-radius: 4px; }
.cd-below-hero-skeleton__divider { width: 100%; height: 1px; display: block; margin-bottom: 1.25rem; }
.cd-below-hero-skeleton__card-img { width: 100%; aspect-ratio: 16/9; display: block; border-radius: var(--fe-radius); }
.cd-below-hero-skeleton__card-line { display: block; border-radius: 4px; }
.cd-below-hero-skeleton__card-line--mt { margin-top: 0.5rem; height: 0.875rem; }
.cd-below-hero-skeleton__card-line--mt35 { margin-top: 0.35rem; height: 1rem; }
.cd-below-hero-skeleton__card-line--w60 { width: 60%; }
.cd-below-hero-skeleton__card-line--w55 { width: 55%; }
.cd-below-hero-skeleton__card-line--w70 { width: 70%; }
.cd-below-hero-skeleton__card-line--w90 { width: 90%; }
.cd-below-hero-skeleton__card-line--w85 { width: 85%; }
.cd-below-hero-skeleton__card-line--w95 { width: 95%; }

.cd-skeleton__hero-placeholder {
    min-height: 40vh;
    border-radius: var(--fe-radius-lg);
}

@media (max-width: 991px) {
    .cd-below-hero-skeleton__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .cd-below-hero-skeleton__inner { padding: 2rem 1rem 0; }
    .cd-below-hero-skeleton__author { flex-direction: column; align-items: center; text-align: center; padding: 1.25rem 1.5rem; margin: 2rem 0 1.5rem; }
    .cd-below-hero-skeleton__author-lines { width: 100%; }
    .cd-below-hero-skeleton__grid { grid-template-columns: 1fr; gap: 1rem; }
}

.cd-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: var(--cd-progress-h);
    background: var(--fe-color-primary);
    z-index: 301;
    transition: width 0.1s linear;
    pointer-events: none;
}
.cd-progress--done {
    opacity: 0;
    transition: width 0.1s linear, opacity 0.5s ease 0.3s;
}

.cd-hero {
    position: relative;
    min-height: var(--cd-hero-min-h);
    display: flex;
    align-items: flex-end;
    overflow: visible;
    
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: calc(-1 * var(--fe-spacing-lg));
    margin-bottom: -1px;
    
    padding-top: 42px;
}

.cd-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 3;
    background: var(--fe-color-bg);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V20C1320 4 1200 0 1080 8 960 16 840 32 720 36 600 40 480 28 360 20 240 12 120 8 0 16z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48h1440V20C1320 4 1200 0 1080 8 960 16 840 32 720 36 600 40 480 28 360 20 240 12 120 8 0 16z'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
}
.cd-hero--no-img {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
[data-theme="dark"] .cd-hero--no-img {
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
}

.cd-hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--cd-hero-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    overflow: hidden;
}

.cd-hero__img-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.cd-hero__caption {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    left: auto;
    z-index: 2;
    max-width: min(85%, 420px);
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 0 1px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
    .cd-hero__caption {
        top: 0.5rem;
        right: 0.5rem;
        left: auto;
        max-width: 90%;
        font-size: 0.6875rem;
        padding: 0.3rem 0.5rem;
    }
}

.cd-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--cd-hero-overlay);
    z-index: 1;
}

.cd-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--fe-main-max);
    margin: 0 auto;
    padding: 3rem var(--fe-spacing-lg) 4rem;
    color: #fff;
}

.cd-hero--video .cd-hero__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 88px;
    height: 88px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.cd-hero--video .cd-hero__play:hover {
    background: var(--fe-color-primary);
    transform: translate(-50%, -50%) scale(1.05);
}
.cd-hero__play-icon { display: flex; align-items: center; justify-content: center; }
.cd-hero__play-icon svg { margin-left: 4px; }
.cd-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.cd-hero__video-wrap iframe {
    width: 100%;
    max-width: 900px;
    height: 100%;
    max-height: min(80vh, 506px);
    border: none;
    border-radius: 8px;
}
.cd-hero__video-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 5;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cd-hero__video-close:hover {
    background: var(--fe-color-primary);
}
.cd-hero--playing .cd-hero__video-close {
    display: flex;
}
.cd-hero--playing .cd-hero__overlay,
.cd-hero--playing .cd-hero__content {
    opacity: 0;
    pointer-events: none;
}
.cd-hero--playing .cd-hero__video-wrap {
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
}
.cd-hero--playing .cd-hero__play {
    display: none;
}

/* Video hero: oynatırken kapak görseli gizli, düz koyu zemin */
.cd-hero--video.cd-hero--playing {
    background: #0a0a0a;
}
.cd-hero--video.cd-hero--playing .cd-hero__bg,
.cd-hero--video.cd-hero--playing .cd-hero__caption {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Video içerik türü: izleme sayfası — iframe HTML'de; oynatıcı sadece cd-hero--playing iken */
.cd-hero--video-watch.cd-hero--playing .cd-hero__overlay {
    opacity: 1;
    background: #0a0a0a;
}
.cd-hero--video-watch.cd-hero--playing .cd-hero__video-wrap--watch {
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
    background: #0a0a0a;
}
.cd-hero--video-watch.cd-hero--playing .cd-hero__video-close {
    display: flex;
}
.cd-hero--video-watch:not(.cd-hero--playing) .cd-hero__video-wrap--watch {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
.cd-hero--video-watch:not(.cd-hero--playing) .cd-hero__play {
    display: flex;
}
.cd-hero--video-watch.cd-hero--playing .cd-hero__content {
    opacity: 1;
    pointer-events: auto;
    align-self: flex-end;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding-top: 2rem;
}

.cd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}
.cd-breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.15s;
}
.cd-breadcrumb a:hover { color: #fff; }
.cd-breadcrumb__home { display: inline-flex; align-items: center; gap: 0.25rem; }
.cd-breadcrumb__home:hover { text-decoration: none; }
.cd-breadcrumb__home:hover svg { color: #fff; }
.cd-breadcrumb__sep { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.cd-breadcrumb span { color: rgba(255,255,255,0.95); font-weight: 600; }

.cd-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.8125rem;
}

.cd-hero__meta-author {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.9);
}
.cd-hero__meta-author a,
.cd-hero__meta-author__link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s, text-decoration 0.15s;
}
.cd-hero__meta-author a:hover,
.cd-hero__meta-author__link:hover { color: rgba(255,255,255,0.9); }
.cd-hero__meta-author__avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.cd-hero__meta-author__avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
}
.cd-hero--code-detail .cd-hero__meta-author {
    display: none;
}

.cd-comment-count {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s;
}
.cd-comment-count:hover { color: #fff; }
.cd-comment-count svg { flex-shrink: 0; stroke: currentColor; }

.cd-hero__meta-codes {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.cd-hero__meta-codes:hover { color: #fff; }
.cd-hero__meta-codes svg { flex-shrink: 0; stroke: currentColor; opacity: 0.85; }

.cd-vote-count-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
}
.cd-vote-count-meta svg { flex-shrink: 0; fill: #f59e0b; width: 14px; height: 14px; }

.cd-hero__top-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cd-hero--has-review .cd-hero__top-badges {
    width: fit-content;
    max-width: calc(100% - 10rem);
    margin-bottom: 1rem;
}
.cd-category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--fe-color-primary);
    border-radius: 100px;
    min-height: 1.75rem;
    box-sizing: border-box;
    text-decoration: none;
    transition: background 0.15s;
}
.cd-category-badge:hover {
    background: var(--fe-color-primary-hover);
    color: #fff;
}

.cd-sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #1c1917;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid rgba(180, 140, 45, 0.35);
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.cd-sponsor-badge:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
    border-color: rgba(180, 140, 45, 0.5);
    color: #1c1917;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.cd-sponsor-badge--static {
    cursor: default;
    pointer-events: none;
}
.cd-sponsor-badge--static:hover {
    transform: none;
}
.cd-sponsor-badge__icon {
    flex-shrink: 0;
    opacity: 0.9;
}
[data-theme="dark"] .cd-sponsor-badge {
    color: #fef3c7;
    background: linear-gradient(135deg, rgba(180, 140, 45, 0.5) 0%, rgba(161, 98, 7, 0.45) 100%);
    border-color: rgba(254, 243, 199, 0.25);
}
[data-theme="dark"] .cd-sponsor-badge:hover {
    background: linear-gradient(135deg, rgba(180, 140, 45, 0.65) 0%, rgba(161, 98, 7, 0.6) 100%);
    color: #fef9c3;
}

.cd-sponsor-badge--newsletter {
    color: #0c4a6e;
    background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 100%);
    border-color: rgba(3, 105, 161, 0.4);
}
.cd-sponsor-badge--newsletter:hover {
    background: linear-gradient(135deg, #bae6fd 0%, #38bdf8 100%);
    border-color: rgba(3, 105, 161, 0.55);
    color: #0c4a6e;
}
[data-theme="dark"] .cd-sponsor-badge--newsletter {
    color: #e0f2fe;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.55) 0%, rgba(12, 74, 110, 0.6) 100%);
    border-color: rgba(125, 211, 252, 0.35);
}
[data-theme="dark"] .cd-sponsor-badge--newsletter:hover {
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.7) 0%, rgba(12, 74, 110, 0.75) 100%);
    color: #f0f9ff;
}

.cd-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
}
.cd-read-time svg { opacity: 0.7; stroke: currentColor; }

.cd-related-entities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
}
.cd-hero__top-badges .cd-related-entities {
    margin-top: 0;
    gap: 0.5rem;
}

.cd-hero__top-badges .cd-related-entity {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.04em;
    gap: 0.35rem;
    border-radius: 100px;
    min-height: 1.75rem;
    box-sizing: border-box;
}
.cd-hero__top-badges .cd-related-entity__thumb {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    font-size: 10px;
}
.cd-hero__top-badges .cd-related-entity__thumb--company {
    font-size: 9px;
}
.cd-hero__top-badges .cd-related-entity__name {
}
.cd-related-entity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.cd-related-entity:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.cd-related-entity__thumb {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.cd-related-entity__thumb--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}
.cd-related-entity__thumb--company {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    font-size: 11px;
    color: #fff;
}
.cd-related-entity__name {
    white-space: nowrap;
}

.cd-hero__date-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    text-decoration: none;
}
.cd-hero__date-wrap svg { opacity: 0.7; stroke: currentColor; flex-shrink: 0; }

.cd-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    background: rgba(0,0,0,0.45);
    border-radius: 100px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cd-updated-badge svg { stroke: currentColor; opacity: 0.9; flex-shrink: 0; }

.cd-hero__title {
    margin: 0 0 0.75rem;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4), 0 0 24px rgba(0,0,0,0.35);
    max-width: 100%;
}

.cd-hero__excerpt {
    margin: 0 0 0;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.4), 0 0 20px rgba(0,0,0,0.3);
    max-width: 100%;
}

.cd-content-wrap {
    position: relative;
    max-width: var(--cd-content-max);
    margin: 0 auto;
    padding: 1.5rem var(--fe-spacing-lg) 0;
    display: flex;
    gap: var(--cd-sidebar-gap);
}

.cd-share-sidebar {
    position: sticky;
    top: var(--sh-total-height, 140px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: var(--cd-sidebar-w);
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 0.25rem;
}

.cd-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--cd-share-size);
    height: var(--cd-share-size);
    border-radius: 50%;
    border: 1px solid var(--cd-share-border);
    background: var(--cd-share-bg);
    color: var(--fe-color-text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s, background 0.15s, border-color 0.15s, transform 0.15s;
    position: relative;
    padding: 0;
    font-family: inherit;
}
.cd-share-btn:hover {
    color: var(--fe-color-primary);
    border-color: var(--fe-color-primary);
    transform: scale(1.1);
}

.cd-share-btn--x:hover { background: #0f1419; color: #fff; border-color: #0f1419; }
.cd-share-btn--facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.cd-share-btn--linkedin:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.cd-share-btn--whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.cd-share-btn--google-preferred {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.cd-share-btn--google-preferred:hover {
    background: #fff;
    border-color: rgba(66, 133, 244, 0.35);
    color: inherit;
    transform: scale(1.1);
}
.cd-share-sidebar__divider {
    display: block;
    width: 1px;
    height: 1.25rem;
    margin: 0.125rem 0;
    background: var(--cd-share-border, rgba(0, 0, 0, 0.12));
    flex-shrink: 0;
}
.cd-share-btn.cd-share-copy:hover { background: var(--fe-color-primary); color: #fff; border-color: var(--fe-color-primary); }
.cd-share-btn svg { flex-shrink: 0; }
.cd-share-btn:focus-visible {
    outline: 2px solid var(--fe-color-primary);
    outline-offset: 2px;
}

.cd-share-copy__tooltip {
    position: absolute;
    left: calc(100% + 0.5rem);
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
    color: #fff;
    background: var(--fe-color-text);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}
.cd-share-copy.is-copied .cd-share-copy__tooltip {
    opacity: 1;
    visibility: visible;
}

.cd-article {
    flex: 1;
    min-width: 0;
}

.cd-body {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--fe-color-text);
}
.cd-body p { margin: 0 0 1.5em; }
.cd-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.25em 0 0.5em;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.cd-body h2:first-child { margin-top: 0; }
.cd-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1em 0 0.5em;
    line-height: 1.35;
}
.cd-body h3:first-child { margin-top: 0; }
.cd-body h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0.75em 0 0.4em;
}
.cd-body h4:first-child { margin-top: 0; }
.cd-body strong { font-weight: 600; }
.cd-body a {
    color: var(--fe-color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}
.cd-body a:hover { color: var(--fe-color-primary-hover, var(--fe-color-primary)); }
/* Harici linklere rahatsiz etmeyen mini ikon */
.cd-body a[target="_blank"]:not(:has(img))::after {
    content: "\2197";
    display: inline-block;
    margin-left: 0.2em;
    font-size: 0.68em;
    line-height: 1;
    vertical-align: 0.28em;
    opacity: 0.62;
    transition: opacity 0.15s ease;
}
.cd-body a[target="_blank"]:hover::after {
    opacity: 0.85;
}

.cd-body ul,
.cd-body ol {
    margin: 0 0 1em;
    list-style-position: outside;
}
/* Sırasız liste: özel yuvarlak + hafif halka (TinyMCE bullist) */
.cd-body ul:not(.cd-link-boost__items) {
    list-style: none !important;
    padding-left: 0;
}
.cd-body ul:not(.cd-link-boost__items) > li {
    position: relative;
    padding-left: 1.45em;
    margin-bottom: 0.35em;
}
.cd-body ul:not(.cd-link-boost__items) > li::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0.93em;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--fe-color-primary);
    box-shadow: 0 0 0 3px var(--fe-color-primary-soft, rgba(244, 63, 94, 0.2));
}
.cd-body ul:not(.cd-link-boost__items) ul > li::before {
    width: 0.4rem;
    height: 0.4rem;
    background: transparent;
    border: 2px solid var(--fe-color-primary);
    box-shadow: none;
}
.cd-body ul:not(.cd-link-boost__items) ul ul > li::before {
    width: 0.32rem;
    height: 0.32rem;
    background: var(--fe-color-text-muted);
    border: none;
    box-shadow: none;
    opacity: 0.85;
}
.cd-body ol {
    padding-left: 1.65rem;
}
.cd-body ol > li::marker {
    color: var(--fe-color-primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.cd-body li:last-child { margin-bottom: 0; }
.cd-body li p { margin: 0 0 0.35em; }
.cd-body li p:last-child { margin-bottom: 0; }

.cd-body blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--fe-color-primary);
    font-size: 1.1875rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--fe-color-text-muted);
    background: var(--fe-color-bg-alt);
    border-radius: 0 var(--fe-radius-lg) var(--fe-radius-lg) 0;
}
.cd-body blockquote p:last-child { margin-bottom: 0; }

.cd-body figure {
    position: relative;
    margin: 2rem 0;
    padding: 0;
    display: block;
    overflow: hidden;
    border-radius: var(--fe-radius-lg);
}
.cd-body figure img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    margin: 0;
}
.cd-body-credit {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    left: auto;
    max-width: min(85%, 420px);
    padding: 0.3rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.7), 0 0 1px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.cd-body figcaption {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: auto;
    max-width: min(85%, 420px);
    padding: 0.3rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
    font-style: normal;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.7), 0 0 1px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.cd-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--fe-radius-lg);
    display: block;
    margin: 1.5rem auto;
}
.cd-body p:has(> img:only-child) {
    margin: 0;
}

.cd-body hr {
    border: 0;
    height: 0;
    margin: 2rem 0;
    padding: 0;
    border-top: 1px solid var(--fe-color-border);
    background: transparent;
}
.cd-body hr.liste-sep {
    position: relative;
    height: 1px;
    margin: 2.5rem 0;
    border: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--fe-color-border) 12%,
        var(--fe-color-primary) 50%,
        var(--fe-color-border) 88%,
        transparent 100%
    );
    overflow: visible;
}
.cd-body hr.liste-sep::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fe-color-primary);
    box-shadow: 0 0 0 4px var(--fe-color-bg);
}

/* Sarmalanmamış tablolar (blockquote vb.) */
.cd-body table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.9375rem;
}
.cd-body table th,
.cd-body table td {
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--fe-color-border);
    text-align: left;
}
.cd-body table th {
    font-weight: 600;
    background: var(--fe-color-bg-alt);
}

.cd-body .cd-table-wrap {
    margin: 1.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--fe-radius-lg);
    border: 1px solid var(--fe-color-border);
    background: var(--fe-color-bg-alt);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
[data-theme="dark"] .cd-body .cd-table-wrap {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.cd-body .cd-table-wrap table {
    width: 100%;
    min-width: min(100%, 32rem);
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.875rem;
    border: 0;
    background: var(--fe-color-bg);
    border-radius: calc(var(--fe-radius-lg) - 1px);
    overflow: hidden;
}
.cd-body .cd-table-wrap th,
.cd-body .cd-table-wrap td {
    padding: 0.65rem 0.85rem;
    border: 0;
    border-bottom: 1px solid var(--fe-color-border);
    border-right: 1px solid var(--fe-color-border);
    text-align: left;
    vertical-align: top;
}
.cd-body .cd-table-wrap th:last-child,
.cd-body .cd-table-wrap td:last-child {
    border-right: 0;
}
.cd-body .cd-table-wrap tr:last-child th,
.cd-body .cd-table-wrap tr:last-child td {
    border-bottom: 0;
}
.cd-body .cd-table-wrap thead th {
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--fe-color-text);
    background: var(--fe-color-bg-alt);
}
.cd-body .cd-table-wrap tbody tr:nth-child(even) td {
    background: rgba(148, 163, 184, 0.06);
}
[data-theme="dark"] .cd-body .cd-table-wrap tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.cd-body .cd-editor-note {
    margin: 1.5rem 0;
    padding: 1.1rem 1.25rem;
    border-left: 4px solid #64748b;
    border-radius: 0 var(--fe-radius-lg) var(--fe-radius-lg) 0;
    background: var(--fe-color-bg-alt);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--fe-color-text);
}
.cd-body .cd-editor-note p { margin: 0 0 0.65em; }
.cd-body .cd-editor-note p:last-child { margin-bottom: 0; }
.cd-body .cd-editor-note > :first-child { margin-top: 0; }
.cd-body .cd-editor-note--editor {
    border-left-color: #64748b;
}
.cd-body .cd-editor-note--tip {
    border-left-color: var(--fe-color-primary);
    background: var(--fe-color-primary-soft, rgba(244, 63, 94, 0.08));
}
.cd-body .cd-editor-note--info {
    border-left-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
}
.cd-body .cd-editor-note--warn {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.10);
}

.cd-body pre {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--fe-color-bg-alt);
    border-radius: var(--fe-radius);
    overflow-x: auto;
    font-family: var(--fe-font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
}
.cd-body code {
    font-family: var(--fe-font-mono);
    font-size: 0.875em;
    padding: 0.15em 0.35em;
    background: var(--fe-color-bg-alt);
    border-radius: 3px;
}
.cd-body pre code {
    padding: 0;
    background: none;
    border-radius: 0;
}

.cd-body iframe {
    max-width: 100%;
    margin: 1.5rem 0;
    border: 0;
    border-radius: var(--fe-radius-lg);
    vertical-align: top;
}

.cd-body .ad-slot-content-in {
    margin-top: -0.8em;
    margin-bottom: 3em;
    padding-top: 0;
    padding-bottom: 0;
}

.cd-code-detail {
    margin-top: 2.5rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--fe-color-border);
}
.cd-code-detail__title {
    margin: 0 0 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fe-color-text);
}
.cd-code-update-at-start,
.cd-code-passive-reason {
    font-size: 0.9375rem;
    color: var(--fe-color-text-muted, #666);
    margin: 0 0 1.25rem;
}
.cd-code-detail__update-info {
    font-size: 0.9375rem;
    color: var(--fe-color-text-muted, #666);
    margin: 0 0 1rem;
}
.cd-code-detail__block {
    background: var(--fe-color-surface, #fff);
    border-radius: var(--fe-radius-lg, 12px);
    border: 1px solid var(--fe-color-border);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cd-code-detail__block:last-child { margin-bottom: 0; }
.cd-code-detail__block--active {
    background: var(--fe-color-bg-alt, #f8fafc);
}
.cd-code-detail__block--expired {
    background: var(--fe-color-surface, #fff);
}
.cd-code-detail__block--info {
    background: var(--fe-color-bg-alt, #f8fafc);
}
.cd-code-detail__block-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fe-color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cd-code-detail__block-title--muted { color: var(--fe-color-text-muted, #64748b); }
.cd-code-detail__block-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.9;
}
.cd-code-detail__block--active .cd-code-detail__block-icon { background: #16a34a; }
.cd-code-detail__block--expired .cd-code-detail__block-icon { background: var(--fe-color-text-muted); }
.cd-code-detail__block--info .cd-code-detail__block-icon { background: var(--fe-color-text-muted); }

.cd-code-detail__block-title--green { color: #16a34a; }
.cd-code-detail__block-title--green .cd-code-detail__block-icon { background: transparent; width: auto; height: auto; }
.cd-code-detail__block-title--red { color: #dc2626; }
.cd-code-detail__block-title--red .cd-code-detail__block-icon { background: transparent; width: auto; height: auto; }
.cd-code-detail__block-icon--check,
.cd-code-detail__block-icon--cross { font-size: 1.1em; line-height: 1; }

.cd-code-detail__code-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
@media (max-width: 900px) {
    .cd-code-detail__code-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .cd-code-detail__code-grid { grid-template-columns: repeat(2, 1fr); }
}

.cd-code-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--fe-radius-md, 8px);
    border: 1px solid;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    word-break: break-all;
}
.cd-code-chip--active {
    border-color: rgba(22, 163, 74, 0.45);
    color: var(--fe-color-text, #1e293b);
    font-weight: 600;
}
.cd-code-chip--active:hover {
    border-color: #16a34a;
    background: rgba(22, 163, 74, 0.06);
}
.cd-code-chip--passive {
    border-color: var(--fe-color-border, #e2e8f0);
    color: var(--fe-color-text-muted, #64748b);
    font-weight: 400;
}
.cd-code-chip--passive:hover {
    border-color: var(--fe-color-text-muted);
    background: var(--fe-color-bg-alt, #f8fafc);
}
.cd-code-chip__text { display: inline; }
.cd-code-chip__done { display: none; }
.cd-code-chip.is-copied .cd-code-chip__text { display: none; }
.cd-code-chip.is-copied .cd-code-chip__done { display: inline; color: #16a34a; font-weight: 600; }
.cd-code-chip.is-copied.cd-code-chip--active { border-color: #16a34a; background: rgba(22, 163, 74, 0.1); }
.cd-code-chip.is-copied.cd-code-chip--passive { border-color: #16a34a; background: rgba(22, 163, 74, 0.08); color: #16a34a; }

[data-theme="dark"] .cd-code-detail {
    border-top-color: var(--fe-color-border);
}
[data-theme="dark"] .cd-code-detail__block,
[data-theme="dark"] .cd-code-detail__block--active,
[data-theme="dark"] .cd-code-detail__block--expired,
[data-theme="dark"] .cd-code-detail__block--info {
    background: var(--fe-color-surface);
    border-color: var(--fe-color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .cd-code-chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .cd-code-chip--active {
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.5);
}
[data-theme="dark"] .cd-code-chip--active:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: #22c55e;
}
[data-theme="dark"] .cd-code-chip--passive {
    color: var(--fe-color-text-muted);
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .cd-code-chip--passive:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}
[data-theme="dark"] .cd-code-chip.is-copied .cd-code-chip__done { color: #4ade80; }
[data-theme="dark"] .cd-code-chip.is-copied.cd-code-chip--active {
    background: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}
[data-theme="dark"] .cd-code-chip.is-copied.cd-code-chip--passive {
    background: rgba(34, 197, 94, 0.12);
    border-color: #22c55e;
    color: #4ade80;
}

.cd-code-detail__code-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cd-code-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    background: var(--fe-color-bg-alt, #f8fafc);
    border-radius: var(--fe-radius-md, 8px);
    border: 1px solid var(--fe-color-border);
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
    font-size: 0.9375rem;
}
.cd-code-line--expired {
    background: var(--fe-color-surface);
    opacity: 0.85;
}
.cd-code-line__text {
    flex: 1;
    min-width: 0;
    word-break: break-all;
    color: var(--fe-color-text);
    font-weight: 500;
    border: none;
    background: none;
    padding: 0;
}
.cd-code-copy {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fe-color-primary);
    background: rgba(226, 27, 51, 0.08);
    border: 1px solid rgba(226, 27, 51, 0.3);
    border-radius: var(--fe-radius-sm, 6px);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cd-code-copy:hover {
    background: var(--fe-color-primary);
    color: #fff;
    border-color: var(--fe-color-primary);
}
.cd-code-copy__done { display: none; }
.cd-code-copy.is-copied .cd-code-copy__label { display: none; }
.cd-code-copy.is-copied .cd-code-copy__done { display: inline; color: #16a34a; }
.cd-code-copy.is-copied { background: rgba(22, 163, 74, 0.1); border-color: rgba(22, 163, 74, 0.4); color: #15803d; }

.cd-code-detail__content--no-codes {
    font-size: 0.9375rem;
    color: var(--fe-color-text-muted);
    font-style: italic;
    padding: 0.5rem 0;
}
.cd-code-detail__content--text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fe-color-text);
}
.cd-code-detail__content--text p { margin: 0 0 0.5em; }
.cd-code-detail__content--text p:last-child { margin-bottom: 0; }

.cd-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--fe-color-border);
}

.cd-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cd-chip-text);
    background: var(--cd-chip-bg);
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid var(--fe-color-border);
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s;
}
.cd-tag:hover {
    color: var(--cd-chip-hover-text);
    background: var(--cd-chip-hover-bg);
    border-color: var(--fe-color-primary);
    transform: translateY(-1px);
}

.cd-sources {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.cd-source {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cd-chip-text);
    background: var(--cd-chip-bg);
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid var(--fe-color-border);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.cd-source:hover {
    color: var(--cd-chip-hover-text);
    background: var(--cd-chip-hover-bg);
    border-color: var(--fe-color-primary);
}
.cd-source--text {
    cursor: default;
}
.cd-source__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.85;
}
.cd-source__icon svg {
    display: block;
    vertical-align: middle;
}

.cd-share-inline {
    display: none; 
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--fe-color-border);
}
.cd-share-inline__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fe-color-text-muted);
    margin-right: 0.25rem;
}
.cd-share-inline .cd-share-btn {
    width: 36px;
    height: 36px;
}
.cd-share-inline .cd-share-copy__tooltip {
    left: auto;
    right: 0;
    top: auto;
    bottom: calc(100% + 0.5rem);
    transform: none;
}

.cd-author-card {
    max-width: var(--cd-content-max);
    margin: 1.5rem auto 2rem;
    padding: 0 var(--fe-spacing-lg);
}
.cd-author-card__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 1.875rem;
    background: var(--cd-author-bg);
    border-radius: 14px;
    border: 1px solid var(--fe-color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.cd-author-card__inner:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.cd-author-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--fe-color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.cd-author-card__avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--fe-color-primary-soft);
    color: var(--fe-color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.cd-author-card__info {
    flex: 1;
    min-width: 0;
}
.cd-author-card__name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
}
.cd-author-card__name-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}
.cd-author-card__name-wrap .cd-author-card__social {
    display: inline-flex;
    gap: 0.375rem;
    margin-left: 0.25rem;
    vertical-align: middle;
}
.cd-author-card__name-row .cd-author-card__title::before {
    content: '·';
    margin-right: 0.5rem;
    color: var(--fe-color-text-muted);
    font-weight: 400;
}
.cd-author-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--fe-color-text);
    text-decoration: none;
    transition: color 0.15s;
}
a.cd-author-card__name:hover { color: var(--fe-color-primary); }
.cd-author-card__title {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--fe-color-text-muted);
}
.cd-author-card__bio {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: var(--fe-color-text-muted);
}
.cd-author-card__social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cd-author-card__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--fe-color-text);
    opacity: 0.85;
    transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.cd-author-card__social a:hover { opacity: 1; background: var(--fe-color-bg-alt); }
.cd-author-card__social a[data-social="facebook"]:hover { color: #1877F2; }
.cd-author-card__social a[data-social="twitter"]:hover { color: #000000; }
.cd-author-card__social a[data-social="youtube"]:hover { color: #FF0000; }
.cd-author-card__social a[data-social="instagram"]:hover { color: #E4405F; }
.cd-author-card__social a[data-social="pinterest"]:hover { color: #BD081C; }
.cd-author-card__social a[data-social="tiktok"]:hover { color: #000000; }
.cd-author-card__social a[data-social="linkedin"]:hover { color: #0A66C2; }
.cd-author-card__social a[data-social="steam"]:hover { color: #1b2838; }
.cd-author-card__social a[data-social="discord"]:hover { color: #5865F2; }
.cd-author-card__social a[data-social="email"]:hover { color: #ea4335; }
.cd-author-card__social a[data-social="rss"]:hover { color: #FFA500; }
.cd-author-card__social a[data-social="website"]:hover { color: var(--fe-color-primary); }
.cd-author-card__social a[data-social="microsoft"]:hover { color: #00A4EF; }
.cd-author-card__social a[data-social="other"]:hover { color: var(--fe-color-primary); }
.cd-author-card__social svg {
    width: 18px;
    height: 18px;
}

.cd-after-content {
    max-width: var(--cd-content-max);
    margin: 1rem auto 0;
    padding: 0 var(--fe-spacing-lg);
}

.cd-vote {
    position: relative;
    margin: 2.5rem 0;
    padding: 2rem 2rem 1.75rem;
    background: var(--fe-color-bg-alt);
    border-radius: var(--fe-radius-lg, 12px);
    border: 1px solid var(--fe-color-border);
    text-align: center;
}
.cd-vote__header {
    margin-bottom: 1.25rem;
}
.cd-vote__title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--fe-color-heading);
    margin: 0;
}
.cd-vote__title svg { color: var(--fe-color-primary); }

.cd-vote__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.cd-vote__avg {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.cd-vote__avg-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--fe-color-primary);
    line-height: 1;
}
.cd-vote__avg-max {
    font-size: 0.9375rem;
    color: var(--fe-color-text-muted);
    font-weight: 500;
}
.cd-vote__avg-stars {
    display: flex;
    gap: 2px;
}
.cd-vote__avg-star {
    fill: var(--fe-color-border);
    opacity: 0.25;
    transition: opacity 0.3s ease;
}
.cd-vote__avg-star.is-filled { fill: var(--fe-color-primary); opacity: 1; }
.cd-vote__count {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fe-color-text-muted);
    background: var(--fe-color-surface, var(--fe-color-bg));
    padding: 0.2rem 0.75rem;
    border-radius: 100px;
    border: 1px solid var(--fe-color-border);
}

.cd-vote__action {
    margin-top: 0.5rem;
}
.cd-vote__prompt {
    font-size: 0.875rem;
    color: var(--fe-color-text-muted);
    margin: 0 0 0.75rem;
}

.cd-vote__stars-input {
    display: inline-flex;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}
.cd-vote__star {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    transition: transform 0.15s ease;
}
.cd-vote__star svg {
    fill: var(--fe-color-border);
    transition: fill 0.2s ease, transform 0.2s ease;
}
.cd-vote__star:hover svg,
.cd-vote__star.is-lit svg {
    fill: #f59e0b;
    transform: scale(1.15);
}
.cd-vote__star:active svg {
    transform: scale(0.95);
}
.cd-vote__star:focus-visible {
    outline: 2px solid var(--fe-color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}
.cd-vote__send:focus-visible {
    outline: 2px solid var(--fe-color-primary);
    outline-offset: 2px;
}

.cd-vote__stars-input:hover .cd-vote__star svg { fill: var(--fe-color-border); transform: scale(1); }
.cd-vote__stars-input .cd-vote__star:hover svg,
.cd-vote__stars-input .cd-vote__star:hover ~ .cd-vote__star svg {
    fill: var(--fe-color-border);
}

.cd-vote__selected-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--fe-color-text);
    animation: fadeIn 0.2s ease;
}
.cd-vote__send {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--fe-color-primary);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cd-vote__send:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.cd-vote__send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.cd-vote__done {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #059669;
    margin: 0;
    padding: 0.75rem 0;
}
.cd-vote__done--anim {
    animation: voteSuccess 0.4s ease;
}
[data-theme="dark"] .cd-vote__done { color: #34d399; }

.cd-vote__error {
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc2626;
    padding: 0.5rem 0;
}
[data-theme="dark"] .cd-vote__error { color: #f87171; }

.cd-vote__loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(var(--fe-color-bg-rgb, 255,255,255), 0.7);
    backdrop-filter: blur(4px);
    border-radius: var(--fe-radius-lg, 12px);
    z-index: 5;
}
.cd-vote__loading:not([hidden]) {
    display: flex;
}
.cd-vote__spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--fe-color-border);
    border-top-color: var(--fe-color-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes voteSuccess {
    0% { opacity: 0; transform: scale(0.8); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .cd-vote { padding: 1.25rem; }
    .cd-vote__avg-value { font-size: 1.75rem; }
    .cd-vote__star svg { width: 28px; height: 28px; }
    .cd-vote__summary { gap: 0.625rem; }
}

.cd-comments {
    margin-top: 3rem;
    padding-top: 0;
    border-top: none;
}

.cd-comments__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.cd-comments__title {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
    color: var(--fe-color-text);
    letter-spacing: -0.02em;
}
.cd-comments__hr {
    flex: 1 1 auto;
    min-width: 1rem;
    height: 3px;
    margin: 0;
    border: none;
    background: linear-gradient(90deg, var(--fe-color-border) 0%, var(--fe-color-primary) 50%, var(--fe-color-border) 100%);
    border-radius: 2px;
}
.cd-comments__write-btn {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--fe-color-primary);
    border: none;
    border-radius: var(--fe-radius);
    cursor: pointer;
    transition: background 0.2s;
}
.cd-comments__write-btn:hover { background: var(--fe-color-primary-hover); }

#cd-comments { scroll-margin-top: 9rem; } 
#yorumlar { scroll-margin-top: 0; } 

.cd-section-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 1.75rem;
    color: var(--fe-color-text);
    letter-spacing: -0.02em;
}
.cd-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.625rem;
    height: 1.625rem;
    padding: 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--fe-color-primary);
    border-radius: 100px;
}

.cd-comments__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
}
.cd-comments__empty {
    font-size: 1rem;
    color: var(--fe-color-text-muted);
    margin-bottom: 2rem;
    padding: 2rem;
    text-align: center;
    background: var(--cd-comment-bg);
    border-radius: var(--fe-radius-lg);
    border: 1px dashed var(--fe-color-border);
}
.cd-comments__pending-msg {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--fe-color-text-muted);
    background: var(--fe-color-bg-alt);
}
.cd-comments__flash {
    margin: 0 0 1rem;
}

.cd-comment {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--fe-color-border);
}
.cd-comment:first-child { padding-top: 0; }
.cd-comment:last-child { border-bottom: none; }
.cd-comment__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fe-color-primary-soft);
    color: var(--fe-color-primary);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}
.cd-comment__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cd-comment__role {
    display: inline-block;
    margin-left: 0.375rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 4px;
    background: var(--fe-color-primary-soft);
    color: var(--fe-color-primary);
}
.cd-comment__role--guest {
    background: var(--fe-color-bg-alt);
    color: var(--fe-color-text-muted);
}
.cd-comment__role--owner {
    background: rgba(120, 53, 15, 0.2);
    color: #b45309;
}
.cd-comment__role--admin {
    background: rgba(127, 29, 29, 0.2);
    color: #b91c1c;
}
.cd-comment__role--moderator {
    background: rgba(124, 45, 18, 0.2);
    color: #c2410c;
}
.cd-comment__role--editor {
    background: var(--fe-color-primary-soft);
    color: var(--fe-color-primary);
}
.cd-comment__role--contributor {
    background: rgba(21, 94, 117, 0.2);
    color: #0e7490;
}
.cd-comment__role--member {
    background: rgba(30, 64, 175, 0.15);
    color: #2563eb;
}
.cd-comment--pending {
    background: var(--fe-color-bg-alt);
    margin: 1.25rem 0 0.75rem 0;
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    border-left: 4px solid var(--fe-color-warning, #b45309);
    border-radius: 0 var(--fe-radius) var(--fe-radius) 0;
}
.cd-comment--pending:first-child { padding-top: 1.25rem; }
.cd-comment--pending .cd-comment__badge-pending {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 100px;
    color: var(--fe-color-text-muted);
    background: rgba(0, 0, 0, 0.06);
}
[data-theme="dark"] .cd-comment--pending .cd-comment__badge-pending {
    background: rgba(255, 255, 255, 0.1);
}
.cd-comment__edit-link {
    margin-left: auto;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fe-color-primary);
    text-decoration: none;
}
.cd-comment__edit-link:hover { color: var(--fe-color-primary-hover, var(--fe-color-primary)); }
.cd-comment-edit-wrap {
    margin-top: 1rem;
}
.cd-comment-edit-wrap[hidden] { display: none !important; }
.cd-comment__body { flex: 1; min-width: 0; }
.cd-comment__header {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}
.cd-comment__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--fe-color-text);
}
.cd-comment__date {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--fe-color-text-muted);
}
.cd-comment__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fe-color-text);
}

.cd-comment--reply {
    margin-left: 2.5rem;
}
.cd-comment__reply-btn {
    margin-left: auto;
    padding: 0.2rem 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fe-color-primary);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--fe-radius);
    transition: color 0.15s, background 0.15s;
}
.cd-comment__reply-btn:hover {
    color: var(--fe-color-primary-hover, var(--fe-color-primary));
    background: var(--fe-color-primary-soft);
}

.cd-comment-form__reply-caption {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: var(--fe-color-text-muted);
}
.cd-comment-form__reply-caption[hidden] { display: none !important; }
.cd-comment-form__reply-cancel {
    margin-left: 0.25rem;
    padding: 0;
    font-size: inherit;
    color: var(--fe-color-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}
.cd-comment-form__reply-cancel:hover { color: var(--fe-color-primary-hover, var(--fe-color-primary)); }

.cd-comment-form {
    margin-top: 2rem;
    padding: 1.75rem;
    background: var(--cd-comment-bg);
    border-radius: var(--fe-radius-lg);
    border: 1px solid var(--fe-color-border);
}
.cd-comment-form__row {
    margin-bottom: 1.125rem;
}
.cd-comment-form__row:last-of-type {
    margin-bottom: 1.25rem;
}
.cd-comment-form__as-user {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--fe-color-text-muted);
}
.cd-comment-form__as-user strong { color: var(--fe-color-text); }
.cd-comment-form__label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fe-color-text);
}
.cd-comment-form__hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: var(--fe-color-text-muted);
}
.cd-comment-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    line-height: 1.5;
    color: var(--fe-color-text);
    background: var(--fe-color-bg);
    border: 1px solid var(--fe-color-border);
    border-radius: var(--fe-radius-lg);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cd-comment-form__input:focus {
    border-color: var(--fe-color-primary);
    box-shadow: 0 0 0 3px var(--fe-color-primary-soft);
}
.cd-comment-form__textarea {
    min-height: 120px;
    resize: vertical;
    field-sizing: content;
}
.cd-comment-form .button {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--fe-radius-lg);
}
.cd-comment-form .button.is-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}
.cd-comment-form .button.is-loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.125rem;
    height: 1.125rem;
    margin: -0.5625rem 0 0 -0.5625rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: cd-spin 0.6s linear infinite;
    color: #fff;
}
@keyframes cd-spin {
    to { transform: rotate(360deg); }
}

.cd-interest {
    margin-top: 3.5rem;
    padding: 2.5rem 0 2rem;
}

.cd-interest__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.cd-interest__title {
    flex: 0 0 auto;
    margin: 0;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--fe-color-text);
}
.cd-interest__hr {
    flex: 1 1 auto;
    min-width: 1rem;
    height: 3px;
    margin: 0;
    border: none;
    background: linear-gradient(90deg, var(--fe-color-border) 0%, var(--fe-color-primary) 50%, var(--fe-color-border) 100%);
    border-radius: 2px;
}

.cd-comments__form-wrap[hidden] { display: none !important; }
.cd-comments__form-wrap:not([hidden]) { display: block; margin-top: 1.5rem; }
.cd-comments-skeleton { display: none; }
.cd-comments--loading .cd-comments__main { visibility: hidden; position: absolute; left: -9999px; }
.cd-comments--loading .cd-comments-skeleton { display: block; }
.cd-comments-skeleton__item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--fe-color-border);
}
.cd-comments-skeleton__lines { flex: 1; min-width: 0; }
.cd-comments-skeleton__item .skeleton-line { border-radius: 4px; }
.cd-comments-skeleton__avatar { width: 44px; height: 44px; border-radius: 50%; display: block; flex-shrink: 0; }
.cd-comments-skeleton__line { height: 0.875rem; display: block; border-radius: 4px; }
.cd-comments-skeleton__line--120 { width: 120px; margin-bottom: 0.5rem; }
.cd-comments-skeleton__line--100 { width: 100%; margin-bottom: 0.25rem; }
.cd-comments-skeleton__line--85 { width: 85%; }
.cd-comments-skeleton__line--100px { width: 100px; margin-bottom: 0.5rem; }
.cd-comments-skeleton__line--70 { width: 70%; }

.cd-comments__load-more-wrap {
    margin-top: 1.5rem;
    text-align: center;
}
.cd-comments__load-more-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--fe-color-primary);
    background: var(--fe-color-primary-soft);
    border: 1px solid var(--fe-color-primary);
    border-radius: var(--fe-radius);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cd-comments__load-more-btn:hover {
    background: var(--fe-color-primary);
    color: #fff;
}
.cd-comments-load-more-skeleton {
    display: none;
    padding: 0.5rem 0;
}
.cd-comments-load-more-skeleton:not([hidden]) {
    display: block;
}
.cd-comments-load-more-skeleton .cd-comments-skeleton__item {
    padding: 1rem 0;
}

.cd-share-mobile {
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    justify-content: center;
    gap: 0;
    background: var(--cd-share-bg);
    border-top: 1px solid var(--cd-share-border);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    backdrop-filter: blur(16px) saturate(1.5);
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}
.cd-share-mobile--hidden {
    transform: translateY(100%);
}
.cd-share-mobile__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 72px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--fe-color-text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s;
    padding: 0;
    font-family: inherit;
    position: relative;
}
.cd-share-mobile__btn:hover { color: var(--fe-color-primary); }

.cd-share-mobile__btn--x:hover { color: #0f1419; }
.cd-share-mobile__btn--facebook:hover { color: #1877f2; }
.cd-share-mobile__btn--whatsapp:hover { color: #25d366; }
.cd-share-mobile__btn--google-preferred {
    flex: 0 0 auto;
    width: var(--cd-share-size);
    height: var(--cd-share-size);
    min-width: var(--cd-share-size);
    max-width: var(--cd-share-size);
    align-self: center;
    margin-inline: 0.35rem 0.15rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.cd-share-mobile__btn--google-preferred:hover {
    color: inherit;
    border-color: rgba(66, 133, 244, 0.35);
    transform: scale(1.06);
    transition: transform 0.15s, border-color 0.15s;
}
[data-theme="dark"] .cd-share-mobile__btn--google-preferred {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.cd-share-mobile__btn:focus-visible {
    outline: 2px solid var(--fe-color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}
.cd-share-mobile .cd-share-copy__tooltip {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: calc(100% + 0.5rem);
}

.content-detail .content-score { font-size: 1.5rem; font-weight: 700; color: var(--fe-color-primary); margin-bottom: 0.5rem; }
.content-detail .content-verdict { font-size: 1.0625rem; font-weight: 600; margin-bottom: var(--fe-spacing); color: var(--fe-color-text); }
.content-detail .content-pros-cons { margin: var(--fe-spacing-lg) 0; }
.content-detail .content-pros-cons strong { font-weight: 600; }
.content-detail .content-pros-cons ul { margin: 0.25rem 0 1rem; padding-left: 1.25rem; }

.content-detail .content-steps { margin-top: var(--fe-spacing-lg); }
.content-detail .content-steps h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: var(--fe-spacing); }
.content-detail .content-step { margin-bottom: var(--fe-spacing-lg); padding-bottom: var(--fe-spacing); border-bottom: 1px solid var(--fe-color-border); }
.content-detail .content-step:last-child { border-bottom: 0; }
.content-detail .content-step h3 { font-size: 1.0625rem; font-weight: 600; margin: 0 0 0.35rem; }

.content-detail .content-guest { font-size: 0.9375rem; font-weight: 500; color: var(--fe-color-text-muted); margin-bottom: var(--fe-spacing); }
.content-detail .content-qa { margin-top: var(--fe-spacing-lg); }
.content-detail .content-qa p { margin-bottom: var(--fe-spacing); line-height: 1.7; }
.content-detail .content-qa strong { font-weight: 600; }

@media (max-width: 1199px) {
    .cd-share-sidebar { display: none; }
    .cd-share-inline { display: flex; }
}

@media (max-width: 768px) {
    .cd-hero { min-height: var(--cd-hero-min-h-mobile); }
    .cd-breadcrumb { display: none; }
    .cd-hero__title { font-size: 2rem; max-width: 100%; }
    .cd-hero__excerpt { font-size: 1rem; max-width: 100%; }
    .cd-hero__content { padding: 2rem 1rem 3.5rem; }
    .cd-hero::after { height: 32px; }
    .cd-content-wrap { padding: 1.25rem 1rem 0; }
    .cd-body { font-size: 1.0625rem; }
    .cd-author-card { padding: 0 1rem; }
    .cd-author-card__inner { padding: 1.25rem 1.5rem; }
    .cd-author-card__avatar { width: 56px; height: 56px; }
    
    .cd-author-card__name-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .cd-author-card__name-row .cd-author-card__social { margin-left: 0; margin-top: 0.25rem; }
    .cd-author-card__social { justify-content: flex-start; }
    .cd-after-content { padding: 0 1rem; }
    .cd-share-mobile { display: flex; }
}

@media (max-width: 480px) {
    .cd-hero { min-height: 48vh; }
    .cd-hero__content { padding-left: 0.75rem; padding-right: 0.75rem; padding-bottom: 3rem; }
    .cd-hero::after { height: 24px; }
    .cd-hero__title { font-size: 1.625rem; letter-spacing: -0.02em; }
    .cd-hero__excerpt { font-size: 0.9375rem; }
    .cd-hero__meta { gap: 0.5rem; }
    .cd-content-wrap { padding-left: 0.75rem; padding-right: 0.75rem; }
    .cd-author-card { padding-left: 0.75rem; padding-right: 0.75rem; }
    .cd-after-content { padding-left: 0.75rem; padding-right: 0.75rem; }
    .cd-body { font-size: 1rem; line-height: 1.75; }
    .cd-body h2 { font-size: 1.25rem; }
    .cd-body h3 { font-size: 1.0625rem; }
    .cd-body blockquote { padding: 1rem; font-size: 1.0625rem; }
    .cd-author-card__inner { flex-direction: column; align-items: center; text-align: center; padding: 1rem 1rem; gap: 0.5rem; }
    .cd-author-card__avatar { margin-bottom: 0.35rem; }
    .cd-author-card__name-row { flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem; }
    .cd-author-card__name-wrap { flex-direction: column; align-items: center; gap: 0.2rem; }
    .cd-author-card__name-row .cd-author-card__social { margin-left: 0; margin-top: 0.25rem; }
    .cd-author-card__social { justify-content: center; }
    .cd-author-card__title { margin-top: 0.15rem; }
    .cd-author-card__bio { margin-top: 0.25rem; }
    .cd-comment { padding: 1rem 0; gap: 0.625rem; }
    .cd-comment__avatar { width: 36px; height: 36px; font-size: 0.8125rem; }
    .cd-comment-form { padding: 1.25rem; }
}

.cd-review-badge {
    position: absolute;
    
    right: calc(25% - 65px);
    top: 28%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    z-index: 4;
    pointer-events: none;
    animation: cd-badge-enter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.4s;
}
@keyframes cd-badge-enter {
    from { opacity: 0; transform: translateY(-50%) scale(0.5); }
    to   { opacity: 1; transform: translateY(-50%) scale(1); }
}
.cd-review-badge__ring {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 6px 32px rgba(0,0,0,0.5));
}
.cd-review-badge__arc {
    transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cd-review-badge__inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
}
.cd-review-badge__value {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--score-color, #10b981);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.cd-review-badge__max {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-left: 2px;
    line-height: 1;
}
.cd-review-badge__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
}
[data-theme="dark"] .cd-review-badge__inner {
    background: rgba(0,0,0,0.65);
    border-color: rgba(255,255,255,0.18);
}
[data-theme="dark"] .cd-review-badge__label {
    background: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
}

@media (min-width: 1400px) {
    .cd-review-badge { right: calc(20% - 70px); }
}

@media (max-width: 1024px) {
    .cd-review-badge { right: 3rem; }
    .cd-review-badge__ring,
    .cd-review-badge__inner { width: 120px; height: 120px; }
    .cd-review-badge__value { font-size: 2.75rem; }
    .cd-review-badge__max { font-size: 1rem; }
}

@media (max-width: 768px) {
    .cd-review-badge { right: 1.5rem; top: 3rem; transform: none; }
    .cd-review-badge__ring,
    .cd-review-badge__inner { width: 100px; height: 100px; }
    .cd-review-badge__value { font-size: 2.25rem; }
    .cd-review-badge__max { font-size: 0.875rem; }
    .cd-review-badge__label { font-size: 0.75rem; padding: 0.2rem 0.75rem; }
    
    .cd-hero--has-review .cd-hero__top-badges {
        width: 100%;
        max-width: none;
        margin-top: 5rem;
        margin-bottom: 0.75rem;
    }
    .cd-hero--has-review .cd-hero__title { margin-top: 0.75rem; }
}

@media (max-width: 640px) {
    .cd-review-badge {
        right: auto;
        left: 50%;
        top: 4.5rem;
        transform: translate(-50%, -50%);
        gap: 0.375rem;
        animation-name: cd-badge-enter-mobile;
    }
    @keyframes cd-badge-enter-mobile {
        from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
        to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }
    .cd-review-badge__ring,
    .cd-review-badge__inner { width: 80px; height: 80px; }
    .cd-review-badge__value { font-size: 1.75rem; }
    .cd-review-badge__max { font-size: 0.75rem; }
    .cd-review-badge__ring { filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
    .cd-review-badge__label { font-size: 0.6875rem; padding: 0.175rem 0.5rem; }
    
    .cd-hero--has-review .cd-hero__top-badges {
        width: 100%;
        max-width: none;
        margin-top: 6.5rem;
        margin-bottom: 0.75rem;
    }
    .cd-hero--has-review .cd-hero__title {
        margin-top: 0.75rem;
    }
}

.cd-category-badge .category-icon,
.hp-badge .category-icon,
.lp-featured__badge .category-icon,
.lp-card__badge .category-icon,
.card__pill .category-icon,
.meta-line__cat .category-icon,
.gc-card__badge .category-icon,
.interest-card__cat .category-icon,
.sh-nav-cat-link .category-icon {
    color: #fff;
    filter: brightness(0) invert(1);
}

.cd-review-verdict {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--cd-author-bg);
    border-radius: var(--fe-radius-lg, 12px);
    border: 1px solid var(--fe-color-border);
}
.cd-review-verdict__heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--fe-color-heading);
}

.cd-review-verdict__score-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.cd-review-verdict__gauge {
    position: relative;
    width: 120px;
    height: 120px;
}
.cd-review-verdict__ring {
    width: 100%;
    height: 100%;
}
.cd-review-verdict__arc {
    transition: stroke-dashoffset 1s ease;
}
.cd-review-verdict__score-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.cd-review-verdict__value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--score-color, #10b981);
    line-height: 1;
}
.cd-review-verdict__max {
    font-size: 1.125rem;
    color: var(--fe-color-text-muted);
    font-weight: 500;
    margin-left: 1px;
    line-height: 1;
}
.cd-review-verdict__label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--score-color, inherit);
}
.cd-review-verdict__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--fe-color-text);
    margin: 0 0 1.5rem;
}

.cd-review-verdict__pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.cd-review-verdict__col {
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    border-radius: 0;
    border-left: 4px solid;
}
.cd-review-verdict__col--pros {
    border-left-color: #059669;
    background: rgba(5, 150, 105, 0.06);
}
.cd-review-verdict__col--cons {
    border-left-color: #dc2626;
    background: rgba(220, 38, 38, 0.06);
}
[data-theme="dark"] .cd-review-verdict__col--pros {
    border-left-color: #34d399;
    background: rgba(52, 211, 153, 0.08);
}
[data-theme="dark"] .cd-review-verdict__col--cons {
    border-left-color: #f87171;
    background: rgba(248, 113, 113, 0.08);
}
.cd-review-verdict__col-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}
.cd-review-verdict__col-title--pros { color: #059669; }
.cd-review-verdict__col-title--cons { color: #dc2626; }
[data-theme="dark"] .cd-review-verdict__col-title--pros { color: #34d399; }
[data-theme="dark"] .cd-review-verdict__col-title--cons { color: #f87171; }
.cd-review-verdict__col-title svg { flex-shrink: 0; }
.cd-review-verdict__col-title--pros svg { stroke: #059669; }
.cd-review-verdict__col-title--cons svg { stroke: #dc2626; }
[data-theme="dark"] .cd-review-verdict__col-title--pros svg { stroke: #34d399; }
[data-theme="dark"] .cd-review-verdict__col-title--cons svg { stroke: #f87171; }
.cd-review-verdict__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cd-review-verdict__col li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--fe-color-text);
}
.cd-review-verdict__col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.cd-review-verdict__col--pros li::before { background: #059669; }
.cd-review-verdict__col--cons li::before { background: #dc2626; }
[data-theme="dark"] .cd-review-verdict__col--pros li::before { background: #34d399; }
[data-theme="dark"] .cd-review-verdict__col--cons li::before { background: #f87171; }

@media (max-width: 600px) {
    .cd-review-verdict__pros-cons { grid-template-columns: 1fr; }
    .cd-review-verdict { padding: 1.25rem; }
    .cd-review-verdict__gauge { width: 100px; height: 100px; }
    .cd-review-verdict__value { font-size: 2rem; }
}

.cd-guide-steps-count {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.15s;
}
.cd-guide-steps-count:hover { color: #fff; }
.cd-guide-steps-count svg { flex-shrink: 0; stroke: currentColor; }
.cd-guide-steps {
    margin: 2.5rem 0;
}
.cd-guide-steps__heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fe-color-heading);
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fe-color-primary);
}
.cd-guide-steps__heading svg { stroke: var(--fe-color-primary); flex-shrink: 0; }
.cd-guide-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: guide-step;
}
.cd-guide-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--fe-color-border);
    position: relative;
}
.cd-guide-step:last-child { border-bottom: none; }
.cd-guide-step__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fe-color-primary);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    line-height: 1;
    margin-top: 0.125rem;
}
.cd-guide-step__content { flex: 1; min-width: 0; }
.cd-guide-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--fe-color-heading);
}
.cd-guide-step__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--fe-color-text);
    margin: 0;
}
.cd-guide-step__img {
    width: 100%;
    height: auto;
    border-radius: var(--fe-radius, 8px);
    margin-top: 1rem;
    object-fit: cover;
}

@media (max-width: 600px) {
    .cd-guide-step { gap: 0.75rem; padding: 1rem 0; }
    .cd-guide-step__number { width: 32px; height: 32px; font-size: 0.875rem; }
    .cd-guide-step__title { font-size: 1rem; }
}

.cd-interview-guest-hero {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.625rem 1rem;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12);
    width: fit-content;
}
.cd-interview-guest-hero__photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.cd-interview-guest-hero__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fe-color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}
.cd-interview-guest-hero__info {
    display: flex;
    flex-direction: column;
}
.cd-interview-guest-hero__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}
.cd-interview-guest-hero__title {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

.cd-interview-guest {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    margin: 0 0 2rem;
    background: var(--cd-author-bg);
    border-radius: var(--fe-radius-lg, 12px);
    border: 1px solid var(--fe-color-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cd-interview-guest__media {
    flex-shrink: 0;
}
.cd-interview-guest__photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fe-color-primary-soft);
    display: block;
}
.cd-interview-guest__photo--placeholder {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fe-color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    border-radius: 50%;
    border: 3px solid var(--fe-color-primary-soft);
}
.cd-interview-guest__info { display: flex; flex-direction: column; gap: 0.25rem; }
.cd-interview-guest__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fe-color-primary);
}
.cd-interview-guest__name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--fe-color-heading);
    margin: 0;
    line-height: 1.3;
}
.cd-interview-guest__title {
    font-size: 0.9375rem;
    color: var(--fe-color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.cd-interview-qa {
    margin: 2.5rem 0;
}
.cd-interview-qa__heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fe-color-heading);
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--fe-color-primary);
}
.cd-interview-qa__heading svg { stroke: var(--fe-color-primary); flex-shrink: 0; }
.cd-interview-qa__list { display: flex; flex-direction: column; gap: 0; }
.cd-interview-qa__item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--fe-color-border);
}
.cd-interview-qa__item:last-child { border-bottom: none; }
.cd-interview-qa__question,
.cd-interview-qa__answer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.cd-interview-qa__question { margin-bottom: 1rem; }
.cd-interview-qa__q-icon,
.cd-interview-qa__a-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.875rem;
    line-height: 1;
}
.cd-interview-qa__q-icon {
    background: var(--fe-color-primary);
    color: #fff;
}
.cd-interview-qa__q-icon--img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--fe-color-bg-alt);
    border: 1px solid var(--fe-color-border);
}
.cd-interview-qa__a-icon {
    background: var(--fe-color-bg-alt);
    color: var(--fe-color-text-muted);
    border: 1px solid var(--fe-color-border);
}
.cd-interview-qa__a-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--fe-color-border);
}
.cd-interview-qa__q-text {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--fe-color-heading);
    margin: 0;
    line-height: 1.6;
    padding-top: 0.25rem;
}
.cd-interview-qa__a-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--fe-color-text);
    padding-top: 0.25rem;
}

@media (max-width: 600px) {
    .cd-interview-guest { flex-direction: column; text-align: center; padding: 1.25rem 1.5rem; gap: 0.75rem; }
    .cd-interview-guest__info { align-items: center; }
    .cd-interview-guest__photo,
    .cd-interview-guest__photo--placeholder { width: 72px; height: 72px; font-size: 1.5rem; }
    .cd-interview-guest__name { font-size: 1.25rem; }
    .cd-interview-qa__item { padding: 1rem 0; }
    .cd-interview-qa__q-icon,
    .cd-interview-qa__a-icon { width: 28px; height: 28px; font-size: 0.75rem; }
    .cd-interview-qa__q-icon--img { width: 28px; height: 28px; }
    .cd-interview-qa__a-avatar { width: 28px; height: 28px; }
    .cd-interview-qa__question,
    .cd-interview-qa__answer { gap: 0.75rem; }
}

@media print {
    .cd-progress,
    .cd-share-sidebar,
    .cd-share-inline,
    .cd-share-mobile,
    .cd-scroll-top,
    .cookie-notice,
    .site-header,
    .site-footer,
    .sf {
        display: none !important;
    }
    .cd-hero {
        min-height: auto;
        padding: 1.5rem 0;
    }
    .cd-hero::after {
        background: transparent;
    }
    .cd-hero__content {
        position: static;
        transform: none;
    }
    .cd-content-wrap,
    .cd-author-card,
    .cd-after-content {
        max-width: 100%;
    }
    .cd-body a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.85em;
        color: #666;
    }
}

.cd-guest-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 100px;
    white-space: nowrap;
}
.cd-guest-badge svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.cd-guest-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    margin: 0 0 2rem;
    background: var(--cd-author-bg, #f8f9fa);
    border-radius: var(--fe-radius-lg, 12px);
    border: 1px solid var(--fe-color-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cd-guest-author__media {
    flex-shrink: 0;
}
.cd-guest-author__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fe-color-primary-soft, rgba(99,102,241,0.2));
    display: block;
}
.cd-guest-author__photo--placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    font-weight: 700;
    font-size: 1.75rem;
    border-radius: 50%;
    border: 3px solid var(--fe-color-primary-soft, rgba(99,102,241,0.2));
}
.cd-guest-author__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.cd-guest-author__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8b5cf6;
}
.cd-guest-author__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fe-color-heading);
    line-height: 1.3;
}
.cd-guest-author__title {
    font-size: 0.9375rem;
    color: var(--fe-color-text-muted);
    line-height: 1.4;
}
.cd-guest-author__bio {
    margin: 0.375rem 0 0;
    font-size: 0.875rem;
    color: var(--fe-color-text-muted);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .cd-guest-author {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    .cd-guest-author__photo,
    .cd-guest-author__photo--placeholder {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    .cd-guest-author__name { font-size: 1.125rem; }
}

.cd-list-items {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cd-list-items__heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary, #e63946);
}

.cd-list-item {
    display: flex;
    gap: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--fe-border, #e8e8e8);
    position: relative;
}

.cd-list-item:first-child {
    border-top: 1px solid var(--fe-border, #e8e8e8);
}

.cd-list-item__rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--fe-color-accent, #e53935);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.3rem 0.45rem 0.28rem;
    border-radius: 6px 0 6px 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    pointer-events: none;
}

.cd-list-item__rank-inline {
    display: inline-block;
    color: var(--fe-color-accent, #e53935);
    font-weight: 800;
    font-size: 1em;
    margin-right: 0.3em;
    font-variant-numeric: tabular-nums;
}

.cd-list-item__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.cd-list-item__top {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.cd-list-item__img-wrap {
    flex-shrink: 0;
    position: relative;
}

.cd-list-item__img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.cd-list-item__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cd-list-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cd-list-item__title a {
    color: inherit;
    text-decoration: none;
}

.cd-list-item__title a:hover {
    color: var(--fe-color-accent, #e53935);
    text-decoration: underline;
}

.cd-list-item__meta-devpub {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    font-size: 0.8125rem;
    color: var(--fe-color-text-muted, #777);
}

.cd-list-item__meta-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    font-size: 0.8125rem;
    color: var(--fe-color-text-muted, #777);
}

.cd-list-item__meta-label {
    font-weight: 600;
    color: var(--fe-color-text, #333);
}

.cd-list-item__meta-devpub a,
.cd-list-item__meta-extra a {
    color: inherit;
    text-decoration: none;
}

.cd-list-item__meta-devpub a:hover,
.cd-list-item__meta-extra a:hover {
    color: var(--fe-color-accent, #e53935);
    text-decoration: underline;
}

.cd-list-item__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--fe-color-text, #333);
}

.cd-list-item__img--logo {
    object-fit: contain;
    background: #f5f5f5;
}

@media (max-width: 640px) {
    .cd-list-item {
        padding: 1.25rem 0;
    }
    .cd-list-item__top {
        flex-direction: column;
        gap: 0.75rem;
    }
    .cd-list-item__img {
        width: 100%;
        height: 200px;
    }
    .cd-list-item__rank-badge {
        font-size: 0.9rem;
        padding: 0.35rem 0.5rem 0.3rem;
    }
    .cd-list-item__title {
        font-size: 1rem;
        white-space: normal;
    }
}

.cd-author-card,
.cd-guest-author {
    display: none !important;
}
.cd-below-hero-skeleton__author {
    display: none !important;
}

.cd-link-boost-slot {
    margin: 2.5rem 0;
    clear: both;
    /* .cd-link-boost__badge absolute top:-… ile yukarı taşar; blockquote vb. üstünde binmesin */
    padding-top: 1.1rem;
    box-sizing: border-box;
}

.cd-body .cd-link-boost-slot img {
    max-width: none;
    margin: 0;
    border-radius: 0;
}

.cd-link-boost {
    --lb-r: 18px;
    --lb-r-inner: 14px;
    font-family: var(--fe-font-sans, system-ui, sans-serif);
    position: relative;
}

.cd-link-boost__badge {
    position: absolute;
    top: -0.55rem;
    left: -0.45rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.32rem 0.85rem 0.3rem;
    border-radius: 8px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, #f43f5e 0%, #dc2626 100%);
    box-shadow:
        0 10px 22px -12px rgba(220, 38, 38, 0.85),
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
    pointer-events: none;
    transform: none;
}

.cd-link-boost--featured .cd-link-boost__featured-card {
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
    align-items: stretch;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: var(--lb-r);
    overflow: hidden;
    background: var(--fe-color-surface);
    border: 1px solid var(--fe-color-border);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        0 12px 40px -12px rgba(15, 23, 42, 0.12);
    transition:
        border-color 0.22s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

[data-theme="dark"] .cd-link-boost--featured .cd-link-boost__featured-card {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 16px 48px -12px rgba(0, 0, 0, 0.45);
}

.cd-link-boost--featured .cd-link-boost__featured-card:hover {
    border-color: color-mix(in srgb, var(--fe-color-primary) 35%, var(--fe-color-border));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 20px 50px -14px rgba(15, 23, 42, 0.18);
    transform: translateY(-2px);
}

[data-theme="dark"] .cd-link-boost--featured .cd-link-boost__featured-card:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 22px 56px -10px rgba(0, 0, 0, 0.55);
}

.cd-link-boost__featured-visual {
    position: relative;
    min-height: 200px;
    background: var(--fe-color-bg-alt);
}

.cd-link-boost__featured-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cd-body .cd-link-boost-slot .cd-link-boost__featured-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cd-link-boost--featured .cd-link-boost__featured-card:hover .cd-link-boost__featured-media img {
    transform: scale(1.06);
}

.cd-link-boost__featured-media--empty {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, color-mix(in srgb, var(--fe-color-primary) 18%, transparent), transparent 70%),
        var(--fe-color-bg-alt);
}

.cd-link-boost__featured-body {
    padding: 1.5rem 1.65rem 1.45rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
    min-height: 200px;
}

.cd-link-boost__featured-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.cd-link-boost__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fe-color-primary);
    background: var(--fe-color-primary-soft);
    border: 1px solid color-mix(in srgb, var(--fe-color-primary) 22%, transparent);
}

.cd-link-boost__time {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fe-color-text-muted);
}

.cd-link-boost__featured-title {
    margin: 0;
    font-size: clamp(1.125rem, 2.6vw, 1.45rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    color: var(--fe-color-text);
}

.cd-link-boost__excerpt {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.58;
    color: var(--fe-color-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cd-link-boost__featured-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--fe-color-border);
}

.cd-link-boost__author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fe-color-text-muted);
}

.cd-link-boost__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--fe-color-primary);
    margin-left: auto;
}

.cd-link-boost__cta-icon {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.cd-link-boost--featured .cd-link-boost__featured-card:hover .cd-link-boost__cta-icon {
    transform: translateX(4px);
}

.cd-link-boost__list-wrap {
    border-radius: var(--lb-r);
    border: 1px solid #27344e;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(244, 63, 94, 0.14) 0%, rgba(244, 63, 94, 0) 42%),
        linear-gradient(165deg, #0f172a 0%, #0b1220 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 20px 40px -18px rgba(2, 6, 23, 0.7);
    padding: 0.5rem;
}

.cd-link-boost__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cd-body .cd-link-boost__items {
    margin: 0 !important;
    padding: 0 !important;
}

.cd-link-boost__item {
    margin: 0;
}

.cd-link-boost__item + .cd-link-boost__item {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.cd-link-boost__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.95rem 1rem;
    padding: 0.85rem 0.95rem;
    margin: 0;
    border-radius: var(--lb-r-inner);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    background: rgba(15, 23, 42, 0.18);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.24s ease,
        transform 0.2s ease;
}

.cd-link-boost__row:hover {
    background: rgba(23, 33, 56, 0.9);
    border-color: #32456b;
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px) scale(1.002);
}

.cd-link-boost__row-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}

.cd-link-boost__row-cat {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fe-color-primary);
    background: var(--fe-color-primary-soft);
}

.cd-link-boost__row-title {
    display: block;
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #f8fafc;
    transition: color 0.18s ease;
}

.cd-link-boost__row:hover .cd-link-boost__row-title {
    color: #ffffff;
}

.cd-link-boost__row-aside {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cd-link-boost__row-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 74px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #32456b;
    box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.75);
    background: #1e293b;
    line-height: 0;
}

.cd-body .cd-link-boost-slot .cd-link-boost__row-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.35s ease;
}

.cd-body .cd-link-boost-slot .cd-link-boost__row:hover .cd-link-boost__row-thumb img {
    transform: scale(1.04);
}

.cd-link-boost__row-thumb--empty {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.28), rgba(30, 41, 59, 0.65));
    opacity: 0.85;
}

.cd-link-boost__row-go {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    color: #93a4c1;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid #32456b;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.cd-link-boost__row:hover .cd-link-boost__row-go {
    color: #fff;
    background: linear-gradient(135deg, #f43f5e, #fb7185);
    border-color: #fb7185;
}

@media (max-width: 640px) {
    .cd-link-boost-slot {
        margin: 2rem 0;
        padding-top: 0.95rem;
    }

    .cd-link-boost--featured .cd-link-boost__featured-card {
        grid-template-columns: 1fr;
    }

    .cd-link-boost__featured-visual {
        min-height: 200px;
        max-height: 220px;
    }

    .cd-link-boost__featured-body {
        min-height: 0;
        padding: 1.2rem 1.2rem 1.25rem;
    }

    .cd-link-boost__list-wrap { padding: 0.85rem 0.35rem 0.35rem; }

    .cd-link-boost__row {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .cd-link-boost__row-main {
        gap: 0.2rem;
    }

    .cd-link-boost__row-aside {
        gap: 0.5rem;
        justify-content: flex-end;
    }

    .cd-link-boost__row-thumb {
        display: none;
    }

    .cd-link-boost__row-title {
        font-size: 0.94rem;
        line-height: 1.32;
    }

    .cd-link-boost__row-go {
        width: 2rem;
        height: 2rem;
    }

    .cd-link-boost__badge {
        top: -0.45rem;
        left: -0.28rem;
        min-height: 1.85rem;
        padding: 0.24rem 0.62rem 0.22rem;
        font-size: 0.64rem;
        transform: none;
    }
}

@supports not (color: color-mix(in srgb, red, blue)) {
    .cd-link-boost--featured .cd-link-boost__featured-card:hover {
        border-color: var(--fe-color-border);
    }

    .cd-link-boost__chip {
        border-color: var(--fe-color-border);
    }

    .cd-link-boost__row:hover .cd-link-boost__row-go {
        border-color: var(--fe-color-border);
    }
}
