:root {
    --primary: #0b5fff;
    --primary-dark: #0950d8;
    --primary-light: #3b82f6;
    --accent: #ff3d00;
    --success: #10b981;
    --warning: #f59e0b;
    --verify: #1f7aec;
    --text: #0b1220;
    --text-secondary: #5b6475;
    --text-muted: #94a3b8;
    --bg: #f5f7fb;
    --bg-secondary: #f1f5f9;
    --card: #ffffff;
    --border: rgba(15,23,42,.05);
    --border-light: #f1f5f9;
    --shadow: 0 1px 2px rgba(15,23,42,.06), 0 8px 30px rgba(15,23,42,.08);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 6px rgba(0,0,0,0.04), 0 10px 40px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --sidebar-width: 260px;
    --aside-width: 320px;
    --content-width: 760px;
    --transition: 0.2s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 15px; line-height: 1.55; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-light);
    z-index: 9999;
}
.reading-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.1s ease-out;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-overlay.open { display: block; opacity: 1; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: var(--card);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.mobile-nav-close:hover { background: var(--bg); }
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav-links { padding: 0.5rem; }
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { background: var(--bg); color: var(--primary); }
.mobile-nav-links svg { width: 18px; height: 18px; flex-shrink: 0; }

.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}
.mobile-menu-btn, .mobile-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}
.mobile-menu-btn:hover, .mobile-search-btn:hover { background: var(--bg); }
.mobile-menu-btn svg, .mobile-search-btn svg { width: 22px; height: 22px; }

.mobile-logo, .site-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.mobile-logo-box, .site-logo-box {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.2; }
.brand-primary { font-weight: 700; font-size: 0.9375rem; color: var(--text); }
.brand-secondary { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }

.site-layout {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, var(--content-width)) var(--aside-width);
    gap: 1rem;
    align-items: start;
}

.site-sidebar {
    position: sticky;
    top: 1rem;
    background: var(--card);
    
    padding: 1.25rem;
    box-shadow: var(--shadow);
}
.site-logo { margin-bottom: 1.25rem; }
.sidebar-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: var(--bg);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}
.sidebar-search svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.sidebar-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--text);
    outline: none;
}
.sidebar-search input::placeholder { color: var(--text-muted); }

.site-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.site-nav a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.site-nav a:hover { background: var(--bg); color: var(--text); }
.site-nav a.active { background: var(--primary); color: white; }
.site-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
}
.site-nav a:hover .nav-count { background: var(--border); }
.site-nav a.active .nav-count { background: rgba(255,255,255,0.2); color: white; }

.sidebar-divider {
    height: 1px;
    background: var(--border-light);
    margin: 1rem 0;
}
.sidebar-section-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
}
.site-nav-pages a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.site-nav-pages a svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}
.site-nav-pages a:hover svg { opacity: 1; }

.site-main { min-width: 0; }

.site-aside {
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.aside-widget {
    background: var(--card);
    
    padding: 1rem;
    box-shadow: var(--shadow);
}
.aside-widget-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.aside-widget-title svg { width: 16px; height: 16px; color: var(--primary); }

.aside-trending-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: opacity 0.2s;
}
.aside-trending-item:last-child { border-bottom: none; }
.aside-trending-item:hover { opacity: 0.7; }
.trending-rank {
    width: 24px;
    height: 24px;
    background: var(--bg);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.trending-content { flex: 1; min-width: 0; }
.trending-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trending-meta { font-size: 0.6875rem; color: var(--text-muted); margin-top: 0.25rem; display: block; }

.aside-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.2s;
}
.aside-cat-item:last-child { border-bottom: none; }
.aside-cat-item:hover { color: var(--primary); }
.cat-name { font-size: 0.8125rem; font-weight: 500; }
.cat-count { font-size: 0.75rem; color: var(--text-muted); }

/* HERO SLIDER - Eski tema gibi geniş */
.hero-section {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}
.hero-slider {
    display: flex;
    transition: transform 0.5s ease;
}
.hero-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
}
.hero-cat {
    display: inline-block;
    background: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 700px;
}
.hero-title a { color: inherit; }
.hero-title a:hover { text-decoration: underline; }
.hero-excerpt { display: none; }
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    z-index: 10;
}
.hero-nav:hover { background: white; transform: translateY(-50%) scale(1.05); }
.hero-nav svg { width: 20px; height: 20px; color: var(--text); }
.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }
.hero-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.hero-slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}
.hero-slider-dot.active { background: white; transform: scale(1.2); }

.feed-section { margin-bottom: 2rem; }
.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.feed-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.feed-section-title svg { width: 20px; height: 20px; color: var(--primary); }
.feed-list { display: flex; flex-direction: column; gap: 1rem; }

.feed-card {
    background: var(--card);
    border: 1px solid var(--border);
    
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.feed-card:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.feed-card-main {
    display: grid;
    grid-template-columns: minmax(0,1fr) 190px;
    gap: 1rem;
    align-items: start;
}
.feed-card-content { flex: 1; min-width: 0; }
.feed-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.feed-card-cat {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
}
.feed-card-date { font-size: 0.75rem; color: var(--text-muted); }
.feed-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    margin-bottom: 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.feed-card-title a { color: inherit; }
.feed-card-title a:hover { color: var(--primary); }
.feed-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.65rem;
}
.feed-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.author-mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.author-mini-name {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.verified-mini { width: 14px; height: 14px; color: var(--verify); }

.feed-card-thumb {
    width: 190px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(15,23,42,.02);
    aspect-ratio: 16/9;
    
    position: relative;
}
.feed-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-indicator {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-indicator svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feed-card-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}
.feed-action {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.feed-action:hover { background: var(--bg); color: var(--text); }
.feed-action svg { width: 18px; height: 18px; }
.feed-action.like-btn.liked { color: var(--accent); }
.feed-action.like-btn.liked svg { fill: var(--accent); }

.feed-loader {
    display: none;
    justify-content: center;
    padding: 2rem;
}
.feed-loader.visible { display: flex; }
.loader-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* SINGLE PAGE - Eski tema gibi geniş */
.single-page { }
.single-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.single-back:hover { background: var(--bg); color: var(--text); }
.single-back svg { width: 18px; height: 18px; }

.single-article {
    background: var(--card);
    
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}
.single-hero { padding: 2rem 2rem 1.5rem; }
.single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.single-breadcrumb a { color: var(--text-secondary); transition: color 0.2s; }
.single-breadcrumb a:hover { color: var(--primary); }
.single-breadcrumb svg { width: 14px; height: 14px; }

.single-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 1rem;
}
.single-meta { margin-bottom: 1.5rem; }
.single-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar { width: 40px; height: 40px; border-radius: 50%; }
.author-details { display: flex; flex-direction: column; gap: 0.125rem; }
.author-name {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
}
.verified-icon { width: 16px; height: 16px; color: var(--verify); }
.meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}
.meta-dot { color: var(--text-muted); }
.read-time { color: var(--text-muted); }
.updated-badge {
    background: var(--success);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.single-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 0;
    width: 100%;
}
.single-thumb img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.single-thumb figcaption {
    padding: 0.75rem 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.single-video-wrapper { margin: 1.5rem 0; }
.single-video {
    position: relative;
    padding-bottom: 56.25%;
    
    overflow: hidden;
    background: var(--bg);
}
.single-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.single-video.sticky {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 320px;
    padding-bottom: 180px;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}
.sticky-video-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}
.single-video.sticky .sticky-video-close { display: flex; }
.sticky-video-close svg { width: 16px; height: 16px; }

/* İÇERİK ALANI - Eski tema gibi geniş ve büyük font */
.single-content {
    padding: 0 2rem 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}
.single-content.content-collapsed {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}
.single-content p { margin-bottom: 1.5rem; }
.single-content h2, .single-content h3, .single-content h4 {
    margin: 2rem 0 1rem;
    font-weight: 700;
    line-height: 1.3;
}
.single-content h2 { font-size: 1.625rem; }
.single-content h3 { font-size: 1.375rem; }
.single-content h4 { font-size: 1.25rem; }
.single-content a { color: var(--primary); text-decoration: none; } .single-content a:hover { text-decoration: underline; }
.single-content img { max-width: 100%; width: 100%; height: auto; border: 1px solid var(--border); display: block; object-fit: contain; margin: 1.5rem 0; }
.single-content figure { margin: 1.5rem 0; max-width: 100%; overflow: hidden; }
.single-content figure img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.single-content figcaption { margin-top: 0.6rem; color: var(--text-secondary); font-size: 0.85rem; }
.single-content .wp-block-image { max-width: 100%; margin: 1.5rem 0; overflow: hidden; }
.single-content .wp-block-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.single-content .wp-block-image.aligncenter,
.single-content .wp-block-image.alignleft,
.single-content .wp-block-image.alignright { max-width: 100%; }
.single-content .wp-block-image figcaption { text-align: center; margin-top: 0.5rem; color: var(--text-secondary); font-size: 0.85rem; }
.single-content iframe,
.single-content video,
.single-content embed { max-width: 100%; width: 100% !important; aspect-ratio: 16/9; border: 0; overflow: hidden; }
.single-content .wp-block-embed { margin: 1.5rem 0; }
.single-content .wp-block-embed__wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border: 1px solid var(--border); background: #000; }
.single-content .wp-block-embed__wrapper iframe { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.single-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}
.single-content ul, .single-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.single-content li { margin-bottom: 0.5rem; }

.read-more-wrapper {
    position: relative;
    margin-top: -100px;
    padding-top: 100px;
    text-align: center;
}
.read-more-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--card));
    pointer-events: none;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.2s;
}
.read-more-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.read-more-btn svg { width: 18px; height: 18px; }
.read-more-wrapper.hidden { display: none; }
.single-content.expanded { max-height: none; }

.single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-light);
}
.tags-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
}
.tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-item {
    padding: 0.375rem 0.75rem;
    background: var(--bg);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.tag-item:hover { background: var(--primary); color: white; }

.single-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-light);
}
.share-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
}
.share-buttons { display: flex; gap: 0.5rem; }
.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.share-btn svg { width: 18px; height: 18px; }
.share-facebook { background: #1877f2; color: white; }
.share-twitter { background: #000; color: white; }
.share-whatsapp { background: #25d366; color: white; }
.share-linkedin { background: #0077b5; color: white; }
.share-copy { background: var(--bg); color: var(--text-secondary); }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.comments-section {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
}
.comments-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.comments-title svg { width: 20px; height: 20px; color: var(--primary); }
.comment-count { color: var(--text-secondary); font-weight: 400; }

.comment-form-wrapper { margin-bottom: 2rem; }
.comment-form-comment textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    resize: vertical;
    margin-bottom: 1rem;
}
.comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.comment-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.comment-form-author input,
.comment-form-email input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
}
.comment-form-author input:focus,
.comment-form-email input:focus {
    outline: none;
    border-color: var(--primary);
}
.comment-submit-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.2s;
}
.comment-submit-btn:hover { background: var(--primary-dark); }

.comments-list { display: flex; flex-direction: column; gap: 1rem; }
.comment-item { padding: 1rem; background: var(--bg); border-radius: var(--radius-sm); }
.comment-body { display: flex; gap: 0.75rem; }
.comment-author-avatar img { width: 40px; height: 40px; border-radius: 50%; }
.comment-content { flex: 1; }
.comment-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.comment-author-name { font-weight: 600; font-size: 0.9375rem; }
.comment-date { font-size: 0.8125rem; color: var(--text-muted); }
.comment-text { font-size: 0.9375rem; line-height: 1.6; color: var(--text-secondary); }
.comment-reply { margin-top: 0.5rem; }
.comment-reply a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
}

.entity-section, .bridge-section, .related-section {
    margin-top: 1.5rem;
}
.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}
.section-title svg { width: 20px; height: 20px; color: var(--primary); }

.entity-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.entity-card {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    background: var(--card);
    
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.entity-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.entity-name { font-weight: 600; font-size: 0.9375rem; color: var(--text); }
.entity-count { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

.bridge-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.bridge-card {
    background: var(--card);
    
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.bridge-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.bridge-thumb {
    height: 120px;
    background-size: cover;
    background-position: center;
}
.bridge-content { padding: 1rem; }
.bridge-cat {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.bridge-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.related-card {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--card);
    
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.2s;
}
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.related-thumb, .related-card-thumb {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.related-thumb img, .related-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-body, .related-card-body { flex: 1; min-width: 0; }
.related-meta, .related-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}
.related-cat, .related-card-cat {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}
.related-date, .related-card-date { font-size: 0.6875rem; color: var(--text-muted); }
.related-title, .related-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-title a, .related-card-title a { color: inherit; }
.related-title a:hover, .related-card-title a:hover { color: var(--primary); }

.inlink-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    margin: 1.25rem 0;
    transition: all 0.2s;
}
.inlink-card:hover { background: var(--border-light); transform: translateX(4px); }
.inlink-thumb {
    width: 60px;
    height: 45px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.inlink-thumb img { width: 100%; height: 100%; object-fit: cover; }
.inlink-body { flex: 1; min-width: 0; }
.inlink-cat {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.inlink-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.inlink-arrow { color: var(--text-muted); transition: all 0.2s; }
.inlink-card:hover .inlink-arrow { color: var(--primary); transform: translateX(4px); }
.inlink-arrow svg { width: 20px; height: 20px; }

/* İçerik İçi Link Kartı (InPage Reklam) - Görseldeki Tasarım */
.inpage-ad-card {
    margin: 2rem 0;
    clear: both;
    padding: 0;
}

.inpage-ad-card.inpage-ad-center {
    width: 100%;
}

.inpage-ad-card.inpage-ad-left {
    float: left;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 1rem;
}

.inpage-ad-card.inpage-ad-right {
    float: right;
    width: 48%;
    margin-left: 2%;
    margin-bottom: 1rem;
}

/* Ana Kart Kutusu - Kırmızı Kesikli Çerçeve (Görselsiz) */
.inpage-ad-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ffffff;
    border: 2px dashed #e53935;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    padding: 16px 20px;
}

.inpage-ad-link:hover {
    border-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.15);
}

/* Görsel Alanı - Kaldırıldı */
/* .inpage-ad-thumb - artık kullanılmıyor */

/* Etiket - "Ayrıca Okuyun" */
.inpage-ad-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e53935;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.inpage-ad-label svg {
    width: 14px;
    height: 14px;
}

/* Görsel Alanı */
.inpage-ad-thumb {
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    order: -1;
}

.inpage-ad-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inpage-ad-link:hover .inpage-ad-thumb img {
    transform: scale(1.05);
}

/* İçerik Alanı */
.inpage-ad-content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.inpage-ad-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* CTA Ok */
.inpage-ad-cta {
    display: none;
}

/* Temizleme */
.inpage-ad-card.inpage-ad-left::after,
.inpage-ad-card.inpage-ad-right::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive - Tablet ve Mobil */
@media (max-width: 768px) {
    /* Mobilde öne çıkan görsel 16:9 tam genişlikte */
    .single-thumb {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        aspect-ratio: 16/9;
        border-radius: 0;
    }
    
    .single-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .inpage-ad-card.inpage-ad-left,
    .inpage-ad-card.inpage-ad-right {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .inpage-ad-link {
        flex-direction: row;
        align-items: center;
        padding: 14px 16px;
    }
    
    .inpage-ad-content {
        padding: 0;
    }
    
    .inpage-ad-content {
        padding: 14px 16px;
    }
    
    .inpage-ad-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .inpage-ad-label {
        font-size: 10px;
        padding: 6px 12px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 400px) {
    .inpage-ad-link {
        padding: 12px 14px;
    }
    
    .inpage-ad-title {
        font-size: 13px;
    }
}

/* Çapraz Domain Önerilen İçerik */
.crossdomain-featured {
    margin-bottom: 1.5rem;
    padding: 0;
}

.crossdomain-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.crossdomain-label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.crossdomain-card {
    display: flex;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(11, 95, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.crossdomain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(11, 95, 255, 0.3);
}

.crossdomain-thumb {
    width: 200px;
    min-height: 160px;
    background-size: cover;
    background-position: center;
    background-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    position: relative;
}

.crossdomain-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

.crossdomain-body {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crossdomain-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crossdomain-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crossdomain-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s;
}

.crossdomain-card:hover .crossdomain-cta {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.crossdomain-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.crossdomain-card:hover .crossdomain-cta svg {
    transform: translateX(4px);
}

/* Responsive - Cross Domain */
@media (max-width: 600px) {
    .crossdomain-card {
        flex-direction: column;
    }
    
    .crossdomain-thumb {
        width: 100%;
        height: 160px;
        min-height: auto;
    }
    
    .crossdomain-body {
        padding: 1rem;
    }
    
    .crossdomain-title {
        font-size: 1rem;
    }
}

.infinite-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}
.infinite-loader.visible { display: flex; }

.archive-page { }
.archive-header {
    background: var(--card);
    
    padding: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.archive-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.archive-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.archive-desc { color: var(--text-secondary); font-size: 0.9375rem; margin-bottom: 0.5rem; }
.archive-count { font-size: 0.875rem; color: var(--text-muted); }

.no-posts {
    text-align: center;
    padding: 3rem;
    background: var(--card);
    
}
.no-posts svg { width: 48px; height: 48px; color: var(--text-muted); margin-bottom: 1rem; }
.no-posts p { color: var(--text-secondary); margin-bottom: 1rem; }
.back-home-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.2s;
}
.back-home-btn:hover { background: var(--primary-dark); }

.page-container { }
.page-article {
    background: var(--card);
    
    overflow: hidden;
    box-shadow: var(--shadow);
}
.page-header { padding: 2rem 2rem 1rem; }
.page-title { font-size: 2rem; font-weight: 700; }
.page-content {
    padding: 0 2rem 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
}
.page-content p { margin-bottom: 1.5rem; }

.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    padding: 2rem 1rem 1rem;
}
.footer-content {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.footer-logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.footer-brand-name { font-weight: 700; font-size: 1.125rem; }
.footer-tagline { color: var(--text-secondary); font-size: 0.875rem; }
.footer-links { display: flex; gap: 3rem; }
.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.5rem; }
.social-link {
    width: 36px;
    height: 36px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all 0.2s;
}
.social-link:hover { background: var(--primary); color: white; }
.social-link svg { width: 18px; height: 18px; }
.social-link.social-google { background: #4285f4; color: white; }
.social-link.social-google:hover { background: #3367d6; }
.footer-bottom {
    max-width: 1320px;
    margin: 1.5rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .site-layout { grid-template-columns: var(--sidebar-width) minmax(0, 1fr); }
    .site-aside { display: none; }
}

@media (max-width: 900px) {
    .mobile-header { display: flex; }
    .mobile-nav { display: block; }
    .site-layout {
        display: block;
        padding: 0;
        margin: 0;
        gap: 0;
    }
    .site-sidebar { display: none; }
    .hero-slide { aspect-ratio: 16/9; height: 380px; margin: 0; }
    .hero-title { font-size: 1.8rem; max-width: 90%; text-shadow: 0 2px 8px rgba(0,0,0,.9); }
    .hero-content { padding: 1.5rem; }
    
    .feed-section { margin: 0; }
    .feed-header { padding: 1rem; margin: 0; }
    .feed-list { gap: 0; }
    .feed-card {
        margin: 0;
        padding: 1rem;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: none;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .feed-card:hover { transform: none; box-shadow: none; }
    .feed-card-main { grid-template-columns: minmax(0,1fr); gap: 1rem; }
    .feed-card-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        order: -1;
        
    }
    .single-hero { padding: 1.5rem; }
    .single-title { font-size: 1.625rem; }
    .single-content { padding: 0 1.5rem 1.5rem; font-size: 1.0625rem; }
    .single-tags, .single-share { padding: 1rem 1.5rem; }
    .comments-section { padding: 1.5rem; }
    .comment-fields { grid-template-columns: 1fr; }
    .bridge-cards { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 600px) {
    .hero-slide { aspect-ratio: 4/3; height: auto; }
    .hero-nav { display: none; }
    .hero-title { font-size: 1.5rem; }
    .single-title { font-size: 1.5rem; }
}

/* Mobile Nav Pages Section */
.mobile-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 0.75rem 1rem;
}
.mobile-nav-pages {
    padding: 0.5rem;
}
.mobile-nav-section-title {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.mobile-nav-pages a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.mobile-nav-pages a:hover {
    background: var(--bg);
    color: var(--text);
}
.mobile-nav-pages svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* Fix: Mobile Nav Pages SVG Size */
.mobile-nav-pages a svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    flex-shrink: 0;
}

/* Performance: Hero Slide IMG */
.hero-slide {
    position: relative;
    overflow: hidden;
}
.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Performance: Hero Dots - GPU accelerated */
.hero-slider-dot {
    background: rgba(255,255,255,0.9) !important;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero-slider-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Lightbox Gallery */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    padding: 6px 16px;
    border-radius: 20px;
    z-index: 10;
}
.lightbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 50px 60px 70px;
}
.lightbox-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    touch-action: pan-x pan-y pinch-zoom;
}
.lightbox-img {
    max-width: 95vw;
    max-height: 92vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.15s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-zoom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 25px;
    z-index: 10;
}
.lightbox-zoom button {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-zoom button:hover { background: rgba(255,255,255,0.25); }
.lb-zoom-level {
    color: #fff;
    font-size: 13px;
    min-width: 45px;
    text-align: center;
}
.single-content img:not([class*="avatar"]):not([class*="icon"]) {
    cursor: zoom-in;
}
@media (max-width: 768px) {
    .lightbox-container { padding: 45px 10px 60px; }
    .lightbox-nav { width: 36px; height: 36px; }
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
    .lightbox-img { max-width: 98vw; max-height: 88vh; }
    .lightbox-close { top: 8px; right: 8px; width: 36px; height: 36px; font-size: 26px; }
    .lightbox-counter { top: 12px; padding: 4px 12px; font-size: 13px; }
    .lightbox-zoom { bottom: 15px; padding: 5px 10px; gap: 6px; }
    .lightbox-zoom button { width: 30px; height: 30px; font-size: 16px; }
    .lb-zoom-level { font-size: 12px; min-width: 40px; }
}
