/* ===== NOBEL DESIGN SYSTEM — Haberinyo ===== */
:root {
    --ink: #121212;
    --ink-light: #333333;
    --ink-muted: #666666;
    --ink-faint: #999999;
    --bg-paper: #FFFFFF;
    --bg-newsprint: #F8F8F8;
    --accent-navy: #003366;
    --accent-red: #E30613;
    --border-hairline: #E5E5E5;
    --border-light: #F0F0F0;
    --font-headline: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-meta: 'Inter', sans-serif;
}

/* === Base === */
html { font-size: 16px; position: relative; min-height: 100%; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-newsprint);
    color: var(--ink-light);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* === Typography === */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: 2.25rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { font-size: 1.05rem; color: var(--ink-light); }

/* Meta text */
.meta-text {
    font-family: var(--font-meta);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
}

/* === Header — Haberinyo Dark Navbar === */
.header-nobel {
    background: #0a0a0a;
    border-bottom: none;
    z-index: 1050;
}
.header-brand-row {
    text-align: center;
    padding: 1.1rem 0 0.6rem;
}
.header-brand {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 2.6rem;
    color: #fff !important;
    letter-spacing: -0.03em;
    text-decoration: none !important;
    display: inline-block;
    line-height: 1.1;
}
.header-brand .brand-dot { color: var(--accent-red); }
.header-brand:hover { opacity: 0.85; }
.header-cat-row {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    position: relative;
}
.header-toggler {
    display: block;
    margin: 0 auto;
    padding: 8px 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}
.header-cat-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}
.header-cat-link {
    font-family: var(--font-meta);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    padding: 0.55rem 1.3rem;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.header-cat-link:hover {
    color: #fff;
}
.header-cat-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: all 0.25s ease;
    transform: translateX(-50%);
}
.header-cat-link:hover::after { width: 60%; }

/* Oyun dropdown */
.header-cat-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.header-cat-dropdown-toggle::after { display: none !important; }
.header-cat-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 160px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.header-cat-dropdown:hover .header-cat-dropdown-menu { display: block; }
.header-cat-dropdown-item {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-meta);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.header-cat-dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* Separator dots between links */
.header-cat-link + .header-cat-link::before,
.header-cat-link + .header-cat-dropdown .header-cat-link::before {
    content: '·';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    pointer-events: none;
}
@media (max-width: 991.98px) {
    .header-brand { font-size: 2rem; }
    .header-brand-row { padding: 0.7rem 0 0.3rem; }
    .header-cat-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 0.5rem;
    }
    .header-cat-link {
        padding: 0.5rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .header-cat-link + .header-cat-link::before { display: none; }
    .header-cat-dropdown { display: block; text-align: center; }
    .header-cat-dropdown-menu {
        position: static;
        transform: none;
        display: block;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: auto;
    }
    .header-cat-dropdown-toggle { display: none; }
    .header-cat-dropdown-item {
        padding: 0.5rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}

/* === Hero Section === */
.hero-section { margin-bottom: 2.5rem; }

/* === Modern Slider === */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 460px;
    border: 1px solid var(--border-hairline);
    background: var(--ink);
}
.slider-track { position: relative; width: 100%; height: 100%; }
.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.slider-slide.active {
    opacity: 1;
    z-index: 2;
}
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.slider-slide.active img { transform: scale(1.04); }
.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.85) 100%);
    z-index: 3;
}
.slider-category {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--accent-red);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}
.slider-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.slider-date {
    display: block;
    font-family: var(--font-meta);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.6rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slider:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: rgba(255,255,255,0.3); }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 1.2rem;
    right: 1.5rem;
    z-index: 5;
    display: flex;
    gap: 6px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}
.slider-dot:hover { border-color: #fff; }

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 5;
}
.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-red);
}

/* Hero Side Cards */
.hero-side-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 224px;
    border: 1px solid var(--border-hairline);
}
.hero-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.hero-side-card:hover img { transform: scale(1.05); }
.hero-side-card .side-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
}
.hero-side-card .side-category {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--accent-navy);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.4rem;
}
.hero-side-card .side-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

/* === Section Header === */
.section-header {
    border-bottom: 2px solid var(--ink);
    padding-bottom: 0.8rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.section-header .header-line {
    flex: 1;
    height: 0;
}

/* === News Card — Nobel Style === */
.news-card {
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-card:hover { border-color: var(--ink-muted); }
.news-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.news-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .card-img-wrap img { transform: scale(1.04); }
.news-card .card-category {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    font-family: var(--font-meta);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--accent-navy);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}
.news-card .card-body-inner {
    padding: 1rem 1rem 0.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 auto;
    transition: color 0.2s ease;
}
.news-card .card-title a {
    color: inherit;
    text-decoration: none;
}
.news-card:hover .card-title { color: var(--accent-navy); }
.news-card .card-meta {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-card .card-meta span {
    font-family: var(--font-meta);
    font-size: 0.7rem;
    color: var(--ink-faint);
    font-weight: 500;
}

/* === Pagination — Nobel === */
.pagination-nobel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    margin: 2.5rem 0;
}
.pagination-nobel a, .pagination-nobel span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.6rem;
    font-family: var(--font-meta);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-muted);
    border: 1px solid var(--border-hairline);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--bg-paper);
}
.pagination-nobel a:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.pagination-nobel .active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.pagination-nobel .disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* === Footer — Nobel === */
.footer-nobel {
    background: var(--bg-paper);
    border-top: 1px solid var(--border-hairline);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}
.footer-nobel .footer-brand {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1rem;
}
.footer-nobel .footer-desc {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.footer-nobel h6 {
    font-family: var(--font-meta);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.footer-nobel ul { list-style: none; padding: 0; margin: 0; }
.footer-nobel ul li { margin-bottom: 0.4rem; }
.footer-nobel ul a {
    font-size: 0.85rem;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nobel ul a:hover { color: var(--ink); }
.footer-copyright {
    font-size: 0.75rem;
    color: var(--ink-faint);
    border-top: 1px solid var(--border-hairline);
    padding-top: 1.2rem;
    margin-top: 2rem;
}

/* === Search Box === */
.search-box-nobel {
    position: relative;
}
.search-box-nobel input {
    background: var(--bg-newsprint);
    border: 1px solid var(--border-hairline);
    border-radius: 4px;
    padding: 0.4rem 0.8rem 0.4rem 2rem;
    font-size: 0.8rem;
    min-width: 200px;
    transition: border-color 0.2s;
}
.search-box-nobel input:focus {
    outline: none;
    border-color: var(--ink-muted);
    box-shadow: none;
}
.search-box-nobel .search-icon {
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-faint);
    font-size: 0.75rem;
}
#searchSuggestions {
    border: 1px solid var(--border-hairline) !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

/* === Test Recommendation Section === */
.test-recommendation {
    margin: 3rem 0 2.5rem;
    padding: 2rem 2rem 1.8rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #fef3f2 100%);
    border: 1px solid var(--border-hairline);
    border-radius: 8px;
}
.test-rec-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.test-rec-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.test-rec-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
}
.test-rec-subtitle {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin: 0.2rem 0 0;
    line-height: 1.4;
}

/* Test Card */
.test-card {
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.test-card:hover {
    border-color: var(--accent-navy);
    transform: translateY(-3px);
}
.test-card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--bg-newsprint);
}
.test-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.test-card:hover .test-card-img img { transform: scale(1.05); }
.test-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-navy), #1a5276);
    color: rgba(255,255,255,0.3);
}
.test-type-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    font-family: var(--font-meta);
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--accent-red);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}
.test-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.test-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 0.4rem;
    transition: color 0.2s;
}
.test-card:hover .test-card-title { color: var(--accent-navy); }
.test-card-desc {
    font-size: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.5;
    margin: 0 0 auto;
}
.test-card-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--border-light);
    font-family: var(--font-meta);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-navy);
    transition: gap 0.2s ease;
}
.test-card:hover .test-card-cta { gap: 0.7rem; }

/* === Category Page — Nobel === */
.cat-breadcrumb {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: 1.2rem;
}
.cat-breadcrumb a {
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.cat-breadcrumb a:hover { color: var(--ink); }
.cat-breadcrumb .sep { margin: 0 0.4rem; color: var(--border-hairline); }
.cat-breadcrumb .current { color: var(--ink); font-weight: 700; }

.cat-header { margin-bottom: 2rem; }
.cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.3rem;
    letter-spacing: -0.02em;
}
.cat-desc {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin: 0 0 0.8rem;
    line-height: 1.5;
}
.cat-accent-line {
    width: 50px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

/* Top 2 Hero Cards */
.cat-top-duo {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.cat-hero-link {
    flex: 1;
    min-width: 0;
    display: block;
}
.cat-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    height: 420px;
    border: 1px solid var(--border-hairline);
}
.cat-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-hero-card:hover img { transform: scale(1.04); }
.cat-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.85) 100%);
}
.cat-hero-badge {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--accent-red);
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 0.6rem;
}
.cat-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.cat-hero-overlay time {
    font-family: var(--font-meta);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

/* Content Split */
.cat-content-split {
    margin-top: 2.5rem;
}

/* Sticky Sidebar */
.cat-sidebar {
    position: sticky;
    top: 120px;
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    padding: 1.2rem;
}
.sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--ink);
}
.sidebar-header i {
    color: var(--accent-red);
    font-size: 0.9rem;
}
.sidebar-header h4 {
    font-family: var(--font-meta);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}
.sidebar-list { display: flex; flex-direction: column; gap: 0.8rem; }
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item:hover { background: var(--bg-newsprint); border-radius: 4px; }
.sidebar-rank {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--border-hairline);
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.sidebar-item:nth-child(1) .sidebar-rank { color: var(--accent-red); }
.sidebar-item:nth-child(2) .sidebar-rank { color: var(--accent-navy); }
.sidebar-item:nth-child(3) .sidebar-rank { color: var(--ink-muted); }
.sidebar-img {
    width: 64px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-info { flex: 1; min-width: 0; }
.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 0.2rem;
    transition: color 0.2s;
}
.sidebar-item:hover .sidebar-title { color: var(--accent-navy); }
.sidebar-date {
    font-family: var(--font-meta);
    font-size: 0.65rem;
    color: var(--ink-faint);
}

/* Category Empty State */
.cat-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--ink-muted);
}
.cat-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; }
.cat-empty p { font-size: 1rem; margin-bottom: 1.5rem; }
.cat-empty-btn {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--accent-navy);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}
.cat-empty-btn:hover { background: var(--ink); color: #fff; }

/* === Responsive === */
@media (max-width: 991px) {
    .hero-slider { height: 340px; }
    .slider-title { font-size: 1.3rem; }
    .slider-overlay { padding: 1.5rem; }
    .hero-side-card { height: 165px; }
    .cat-hero-card { height: 300px; }
    .cat-top-duo { flex-direction: column; }
    .cat-sidebar { position: static; margin-top: 1.5rem; }
}
@media (max-width: 767px) {
    .hero-slider { height: 280px; }
    .slider-overlay { padding: 1.2rem; }
    .slider-title { font-size: 1.1rem; }
    .slider-category { font-size: 0.55rem; }
    .hero-side-card { height: 180px; }
    .news-card .card-img-wrap { height: 160px; }
    .test-recommendation { padding: 1.2rem; }
    .test-rec-header { flex-direction: column; text-align: center; }
    .cat-hero-card { height: 250px; }
    .cat-hero-title { font-size: 1.1rem; }
    .cat-hero-overlay { padding: 1.2rem; }
}

/* === News Detail — Nobel === */
.nd-wrapper { padding-bottom: 1rem; }
.nd-breadcrumb {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}
.nd-breadcrumb a { color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.nd-breadcrumb a:hover { color: var(--ink); }
.nd-breadcrumb .sep { margin: 0 0.4rem; color: var(--border-hairline); }
.nd-breadcrumb .current { color: var(--ink); font-weight: 600; }

.nd-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}
@media (min-width: 1024px) {
    .nd-title { font-size: 2.25rem; line-height: 2.5rem; }
}

.nd-summary {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
    margin: 0 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-red);
}

.nd-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.8rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}
.nd-meta-left {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-meta);
    font-size: 0.78rem;
    color: var(--ink-muted);
}
.nd-meta-left i { color: var(--ink-faint); }
.nd-meta-sep { color: var(--border-hairline); }
.nd-share { display: flex; gap: 0.4rem; }
.nd-share-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-hairline);
    color: var(--ink-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}
.nd-share-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.nd-share-x:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.nd-share-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }

.nd-featured-img {
    margin: 0 0 1.8rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-hairline);
}
.nd-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.nd-body {
    margin-bottom: 2rem;
}
.nd-body-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-light);
}
.nd-body-text p { margin-bottom: 1.2rem; }
.nd-body-text a { color: var(--accent-navy); text-decoration: underline; }

.nd-block {
    margin-top: 2rem;
}
.nd-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.8rem;
    line-height: 1.3;
}
.nd-block-img {
    margin: 1.2rem 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-hairline);
}
.nd-block-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Author Card */
.nd-author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-newsprint);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    margin-bottom: 2rem;
}
.nd-author-card img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-hairline);
    flex-shrink: 0;
}
.nd-author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}
.nd-author-role {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-muted);
    margin: 0.15rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.nd-author-bio {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin: 0.4rem 0 0;
    line-height: 1.5;
}

/* Tags */
.nd-tags {
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: var(--bg-newsprint);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
}
.nd-tags-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-meta);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
}
.nd-tags-header i { color: var(--accent-navy); font-size: 0.85rem; }
.nd-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.nd-tag {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
}
.nd-tag:hover {
    border-color: var(--accent-navy);
    color: var(--accent-navy);
    background: #f0f4ff;
}

/* Comments Section */
.nd-comments {
    margin-bottom: 2rem;
}
.nd-comments-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--ink);
}
.nd-comments-header i { color: var(--accent-red); font-size: 0.9rem; }
.nd-comments-header h4 {
    font-family: var(--font-meta);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}
.nd-comments-header .nd-comment-count {
    font-family: var(--font-meta);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--ink-faint);
    background: var(--bg-newsprint);
    border: 1px solid var(--border-hairline);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-left: auto;
}
.nd-comment-item {
    display: flex;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}
.nd-comment-item:last-child { border-bottom: none; }
.nd-comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-newsprint);
    border: 1px solid var(--border-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-navy);
    flex-shrink: 0;
}
.nd-comment-body { flex: 1; min-width: 0; }
.nd-comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}
.nd-comment-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
}
.nd-comment-date {
    font-family: var(--font-meta);
    font-size: 0.65rem;
    color: var(--ink-faint);
}
.nd-comment-text {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin: 0;
}
.nd-no-comments {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--ink-faint);
}
.nd-no-comments i { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
.nd-no-comments p { font-size: 0.85rem; margin: 0; }

/* Comment Form — Premium UX */
.nd-comment-form-wrap {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}
.cf-card {
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.3s;
}
.cf-card:focus-within {
    border-color: var(--accent-navy);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.06);
}
.cf-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.cf-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-navy), #1a5276);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.cf-prompt h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}
.cf-prompt p {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    color: var(--ink-muted);
    margin: 0.1rem 0 0;
}
.cf-alert { font-size: 0.82rem; padding: 0.7rem 1rem; border-radius: 6px; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.cf-alert-hidden { display: none; }
.cf-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.cf-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.cf-textarea-wrap {
    position: relative;
    margin-bottom: 0.8rem;
}
.cf-textarea {
    width: 100%;
    border: 1px solid var(--border-hairline);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--bg-newsprint);
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}
.cf-textarea::placeholder { color: var(--ink-faint); }
.cf-textarea:focus {
    border-color: var(--accent-navy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.06);
}
.cf-char-count {
    position: absolute;
    bottom: 0.5rem;
    right: 0.8rem;
    font-family: var(--font-meta);
    font-size: 0.62rem;
    color: var(--ink-faint);
    pointer-events: none;
}
.cf-bottom {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cf-name-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-hairline);
    border-radius: 8px;
    padding: 0 0.8rem;
    background: var(--bg-newsprint);
    transition: border-color 0.2s, background 0.2s;
}
.cf-name-wrap:focus-within {
    border-color: var(--accent-navy);
    background: #fff;
}
.cf-name-wrap i {
    color: var(--ink-faint);
    font-size: 0.78rem;
    flex-shrink: 0;
}
.cf-name-input {
    border: none;
    background: transparent;
    padding: 0.65rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--ink);
    width: 100%;
    outline: none;
}
.cf-name-input::placeholder { color: var(--ink-faint); }
.cf-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border: none;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-meta);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    flex-shrink: 0;
    white-space: nowrap;
}
.cf-submit-btn:hover { background: var(--accent-navy); }
.cf-submit-btn:active { transform: scale(0.97); }
.cf-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Popular News List (Sidebar) */
.nd-popular-list { display: flex; flex-direction: column; gap: 0; }
.nd-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    transition: background 0.2s;
}
.nd-popular-item:last-child { border-bottom: none; }
.nd-popular-item:hover { background: var(--bg-newsprint); border-radius: 4px; }
.nd-popular-img {
    width: 72px;
    height: 54px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.nd-popular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.nd-popular-item:hover .nd-popular-img img { transform: scale(1.06); }
.nd-popular-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 54px;
}
.nd-popular-info h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin: 0;
    transition: color 0.2s;
}
.nd-popular-item:hover .nd-popular-info h6 { color: var(--accent-navy); }
.nd-popular-info time {
    font-family: var(--font-meta);
    font-size: 0.62rem;
    color: var(--ink-faint);
    align-self: flex-end;
    margin-top: auto;
}

/* Sidebar */
.nd-sidebar {
    position: sticky;
    top: 120px;
}
.nd-sidebar-widget {
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    padding: 1.2rem;
}
.nd-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--ink);
}
.nd-sidebar-header i { color: var(--accent-red); font-size: 0.9rem; }
.nd-sidebar-header h4 {
    font-family: var(--font-meta);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin: 0;
}

/* Infinite Scroll Divider */
.nd-scroll-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
}
.nd-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-hairline);
}
.nd-divider-text {
    font-family: var(--font-meta);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    white-space: nowrap;
}
.nd-title-loaded {
    font-size: 1.6rem;
}
@media (min-width: 1024px) {
    .nd-title-loaded { font-size: 2rem; line-height: 2.25rem; }
}

/* === Responsive === */
@media (max-width: 991px) {
    .hero-slider { height: 340px; }
    .slider-title { font-size: 1.3rem; }
    .slider-overlay { padding: 1.5rem; }
    .hero-side-card { height: 165px; }
    .cat-hero-card { height: 300px; }
    .cat-top-duo { flex-direction: column; }
    .cat-sidebar { position: static; margin-top: 1.5rem; }
    .nd-sidebar { position: static; margin-top: 1.5rem; }
}
@media (max-width: 767px) {
    .hero-slider { height: 280px; }
    .slider-overlay { padding: 1.2rem; }
    .slider-title { font-size: 1.1rem; }
    .slider-category { font-size: 0.55rem; }
    .hero-side-card { height: 180px; }
    .news-card .card-img-wrap { height: 160px; }
    .test-recommendation { padding: 1.2rem; }
    .test-rec-header { flex-direction: column; text-align: center; }
    .cat-hero-card { height: 250px; }
    .cat-hero-title { font-size: 1.1rem; }
    .cat-hero-overlay { padding: 1.2rem; }
    .nd-title { font-size: 1.5rem; line-height: 1.3; }
    .nd-meta { flex-direction: column; align-items: flex-start; }
    .nd-author-card { flex-direction: column; text-align: center; }
}

/* === Static Pages — Nobel === */
.static-page {
    padding: 2.5rem 0 3rem;
}
.static-page .page-breadcrumb {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}
.static-page .page-breadcrumb a {
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.static-page .page-breadcrumb a:hover { color: var(--ink); }
.static-page .page-breadcrumb .sep { margin: 0 0.4rem; color: var(--border-hairline); }
.static-page .page-breadcrumb .current { color: var(--ink); font-weight: 700; }

.static-page .page-header {
    margin-bottom: 2.5rem;
}
.static-page .page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.static-page .page-subtitle {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
}
.static-page .page-accent {
    width: 50px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

/* Content Card */
.content-card-nobel {
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    padding: 2rem 2.5rem;
}
.content-card-nobel h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.content-card-nobel h3 i {
    color: var(--accent-navy);
    font-size: 1rem;
}
.content-card-nobel p,
.content-card-nobel li {
    font-size: 0.95rem;
    color: var(--ink-light);
    line-height: 1.75;
}
.content-card-nobel ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0;
}
.content-card-nobel ul li {
    margin-bottom: 0.5rem;
}
.content-card-nobel section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}
.content-card-nobel section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Value Cards (About page) */
.value-card {
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    padding: 1.8rem;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    height: 100%;
}
.value-card:hover {
    border-color: var(--accent-navy);
    transform: translateY(-3px);
}
.value-card .value-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-newsprint);
    color: var(--accent-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}
.value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
}
.value-card p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Nobel */
.contact-form-nobel {
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    padding: 2rem 2.5rem;
}
.contact-form-nobel .form-label {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
    margin-bottom: 0.4rem;
}
.contact-form-nobel .form-control {
    border: 1px solid var(--border-hairline);
    border-radius: 4px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--bg-newsprint);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-nobel .form-control:focus {
    border-color: var(--accent-navy);
    box-shadow: 0 0 0 3px rgba(0,51,102,0.08);
    background: var(--bg-paper);
    outline: none;
}
.contact-form-nobel textarea.form-control {
    resize: vertical;
    min-height: 130px;
}
.btn-nobel {
    font-family: var(--font-meta);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.btn-nobel:hover { background: var(--accent-navy); }
.btn-nobel:active { transform: scale(0.98); }

/* Contact Info Card */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    transition: border-color 0.2s;
}
.contact-info-card:hover { border-color: var(--ink-muted); }
.contact-info-card .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.15rem;
}
.contact-info-card p {
    font-size: 0.82rem;
    color: var(--ink-muted);
    margin: 0;
}

/* KVKK Notice */
.kvkk-notice {
    background: var(--bg-newsprint);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    font-size: 0.82rem;
    color: var(--ink-muted);
    text-align: center;
}

/* Social Link */
.social-link-nobel {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-hairline);
    border-radius: 50%;
    color: var(--ink-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
}
.social-link-nobel:hover {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--bg-newsprint);
}

@media (max-width: 767px) {
    .content-card-nobel { padding: 1.5rem; }
    .contact-form-nobel { padding: 1.5rem; }
    .static-page .page-title { font-size: 1.5rem; }
}

/* === Video Embed === */
.nd-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 0 1.8rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-hairline);
    background: #000;
}
.nd-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* === Audio Player — Premium === */
.nd-audio-player {
    position: relative;
    margin: 0 0 1.8rem;
    padding: 20px 24px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.nd-audio-player::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.nd-audio-label {
    font-family: var(--font-meta);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}
.nd-audio-label i {
    margin-right: 4px;
    color: rgba(99,102,241,0.6);
}
.nd-audio-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.nd-audio-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(99,102,241,0.35);
}
.nd-audio-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(99,102,241,0.5);
}
.nd-audio-btn:active { transform: scale(0.96); }
.nd-audio-track {
    flex: 1;
    min-width: 0;
    position: relative;
    cursor: pointer;
}
.nd-audio-wave {
    width: 100%;
    height: 36px;
    position: relative;
}
.nd-audio-wave canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.nd-audio-bar {
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}
.nd-audio-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    border-radius: 2px;
    transition: width 0.15s linear;
}
.nd-audio-time {
    font-family: 'Inter', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0;
}
.nd-audio-vinyl {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 80px;
    height: 80px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: conic-gradient(from 0deg, #222, #333, #222, #333, #222);
    opacity: 0.15;
    z-index: 0;
    animation: none;
}
.nd-audio-vinyl.spinning {
    animation: vinylSpin 3s linear infinite;
}
.nd-audio-vinyl-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #1a1a2e;
    border: 2px solid rgba(255,255,255,0.1);
}
@keyframes vinylSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}
@media (max-width: 575px) {
    .nd-audio-player { padding: 14px 16px 12px; }
    .nd-audio-btn { width: 38px; height: 38px; font-size: 0.85rem; }
    .nd-audio-vinyl { width: 60px; height: 60px; right: 10px; }
    .nd-audio-time { font-size: 0.65rem; min-width: 65px; }
}

/* === Author Profile Page === */
.author-page-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.author-page-avatar {
    flex-shrink: 0;
}
.author-page-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-hairline);
}
.author-page-meta {
    flex: 1;
    min-width: 0;
}
.author-page-role {
    font-family: var(--font-meta);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-muted);
    margin: 0.15rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.author-page-count {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: 0.03em;
}
.author-bio-card {
    margin-top: 1.5rem;
    background: var(--bg-paper);
    border: 1px solid var(--border-hairline);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
}
.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-hairline);
    margin-bottom: 0.8rem;
}
.author-bio-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.2rem;
}
.author-bio-role {
    display: block;
    font-family: var(--font-meta);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
}
.author-bio-text {
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin: 0 0 1rem;
}
.author-bio-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.author-bio-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-newsprint);
    border: 1px solid var(--border-hairline);
    color: var(--ink-muted);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.author-bio-socials a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* === Utility === */
.text-accent { color: var(--accent-red) !important; }
.bg-accent { background-color: var(--accent-red) !important; }
a.no-decoration { text-decoration: none; color: inherit; }
a.no-decoration:hover { color: inherit; }