:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f7f8fa;
    --border: #e7e9ee;
    --text: #17191f;
    --muted: #667085;
    --brand: #f97316;
    --brand-dark: #c2410c;
    --link: #1d4ed8;
    --radius: 18px;
    --shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    --container: 1180px;
    --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--brand-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
}

.site-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.site-brand strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.1;
}

.site-brand small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.3;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
}

.header-search {
    width: min(100%, 430px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.header-search input,
.widget-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    padding: 0 0 0 12px;
}

.header-search button,
.widget-search button,
.button {
    border: 0;
    cursor: pointer;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
    padding: 10px 16px;
    transition: 0.2s ease;
}

.header-search button:hover,
.widget-search button:hover,
.button:hover {
    background: var(--brand-dark);
    color: #fff;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.language-switcher a:hover {
    background: #fff;
    color: var(--brand-dark);
}

.nav-wrap {
    border-top: 1px solid var(--border);
}

.category-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.category-nav li {
    position: relative;
}

.category-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #344054;
    font-size: 0.94rem;
    font-weight: 650;
}

.category-nav a:hover {
    background: var(--surface-soft);
    color: var(--brand-dark);
}

.category-nav li ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 190px;
    display: none;
    list-style: none;
    padding: 8px;
    margin: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 3px;
    box-shadow: var(--shadow);
}

.category-nav li:hover > ul {
    display: block;
}

.category-nav li ul a {
    width: 100%;
    border-radius: 3px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 3px;
    padding: 9px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
    border-radius: 3px;
}

.site-main {
    padding: 28px 0 48px;
}

.layout {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.content-area {
    min-width: 0;
}

.site-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 18px;
}

.widget,
.card,
.archive-box,
.not-found-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.widget {
    padding: 18px;
}

.widget h2 {
    margin: 0 0 12px;
    font-size: 1.05rem;
}

.widget-search form {
    display: flex;
    gap: 8px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li + li {
    border-top: 1px solid var(--border);
}

.sidebar-related-list a {
    display: -webkit-box;
    padding: 11px 0;
    color: #1f2937;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar-related-list a:hover {
    color: var(--brand-dark);
}

.sidebar-tag-cloud {
    gap: 8px;
    margin-top: 0;
}

.sidebar-tag-cloud .tag-pill {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 0.86rem;
}

.sidebar-debug {
    display: block;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.45;
}

.clean-list a {
    display: flex;
    padding: 10px 0;
    color: #344054;
    font-weight: 600;
}

.breadcrumb {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-inline-start: 8px;
    color: #98a2b3;
}

.page-title {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.page-description {
    margin: -8px 0 24px;
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.post-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.2s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.post-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--surface-soft);
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-body {
    padding: 16px;
}

.post-card-category {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.post-card h2,
.post-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.35;
}

.post-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.category-groups {
    display: grid;
    gap: 26px;
}

.category-group {
    display: grid;
    gap: 14px;
}

.category-group-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-group-dot {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12);
}

.category-group-heading h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.2;
}

.category-group-heading a {
    color: var(--text);
    text-decoration: none;
}

.category-group-heading a:hover {
    color: var(--brand-dark);
}

.category-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.category-card-grid .post-card {
    min-height: 100%;
}

.category-card-grid .post-card-body {
    display: grid;
    align-content: start;
    min-height: 210px;
    grid-template-rows: auto auto 1fr auto;
}

.category-card-grid .post-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.55;
}

.tag-card-grid .post-card-body {
    min-height: 190px;
}

.all-post-card .post-card-body {
    display: grid;
    align-content: start;
    min-height: 230px;
    grid-template-rows: auto auto 1fr auto;
}

.all-post-card .post-card-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.55;
}

.archive-groups {
    display: grid;
    gap: 28px;
}

.archive-year-title {
    margin: 4px 0 -6px;
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    line-height: 1.1;
}

.archive-month-block {
    display: grid;
    gap: 14px;
}

.archive-month-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.archive-month-heading h3 {
    margin: 0;
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.archive-month-heading p {
    margin: 5px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.archive-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.archive-sidebar-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.archive-sidebar-list a {
    display: block;
    color: var(--text);
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.archive-sidebar-list a:hover {
    color: var(--brand-dark);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: #fff;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.pagination a:hover,
.pagination .is-active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.pagination .is-disabled {
    color: var(--muted);
    background: var(--surface-soft);
}

@media (max-width: 980px) {
    .category-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-group-heading {
        align-items: flex-start;
    }

    .category-card-grid {
        grid-template-columns: 1fr;
    }

    .archive-post-grid {
        grid-template-columns: 1fr;
    }

    .archive-month-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
    gap: 18px;
}

.home-hero-card.is-main {
    grid-row: span 2;
}

.home-hero-card.is-main .post-card-image {
    aspect-ratio: 16 / 10;
}

.home-hero-card.is-main .post-card-body {
    padding: 20px;
}

.home-hero-card.is-main h2 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.home-hero-card.is-small {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
}

.home-hero-card.is-small .post-card-image {
    aspect-ratio: auto;
    min-height: 100%;
}

.home-hero-card.is-small .post-card-body {
    padding: 14px;
}

.home-hero-card.is-small p {
    display: none;
}

.home-horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 280px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 8px;
}

.home-horizontal-scroll .post-card {
    scroll-snap-align: start;
}

.home-most-read-card .post-card-image {
    aspect-ratio: 4 / 3;
}

.home-most-read-card .post-card-body {
    padding: 13px;
}

.home-most-read-card h2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.98rem;
}

.home-most-read-card p {
    display: none;
}

.home-scroll-actions {
    display: inline-flex;
    gap: 8px;
}

.home-scroll-actions button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: #fff;
    color: #1f2937;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.home-scroll-actions button:hover {
    border-color: #fed7aa;
    color: var(--brand-dark);
}

.single-article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(18px, 3vw, 32px);
}

.single-header {
    margin-bottom: 20px;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.single-content {
    font-size: 1.06rem;
}

.single-content h2,
.single-content h3 {
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.single-content p {
    margin: 0 0 1.1em;
}

.single-featured {
    float: left;
    width: min(42%, 360px);
    margin: 6px 24px 14px 0;
    border-radius: 3px;
    overflow: hidden;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}

.single-featured img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ad-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 16px;
    background:
        repeating-linear-gradient(
            45deg,
            #f7f8fa,
            #f7f8fa 10px,
            #f0f2f5 10px,
            #f0f2f5 20px
        );
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius);
    color: #98a2b3;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.ad-home {
    margin: 0 0 24px;
    min-height: 120px;
	border-radius: 3px;
}

.ad-category {
    margin: 22px 0;
    min-height: 110px;
	border-radius: 3px;
}

.ad-post {
    clear: both;
    margin: 24px 0;
    min-height: 120px;
	border-radius: 3px;
}

.ad-sidebar {
    min-height: 280px;
	border-radius: 3px;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--surface-soft);
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner p {
    margin: 4px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    color: #344054;
    font-weight: 650;
}

[dir="rtl"] .category-nav li ul {
    left: auto;
    right: 0;
}

[dir="rtl"] .single-featured {
    float: right;
    margin: 6px 0 14px 24px;
}

@media (max-width: 980px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .nav-toggle {
        display: inline-block;
    }

    .header-actions {
        width: 100%;
        order: 3;
    }

    .nav-wrap {
        display: none;
    }

    .nav-wrap.is-open {
        display: block;
    }

    .category-nav > ul {
        display: grid;
        gap: 6px;
    }

    .category-nav li ul {
        position: static;
        display: block;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 16px;
        background: transparent;
    }

    .layout {
        grid-template-columns: 1fr;
    }

    .site-sidebar {
        position: static;
    }

    .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-card.is-main {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .container,
    .layout {
        width: min(100% - 22px, var(--container));
    }

    .header-search {
        width: 100%;
    }

    .language-switcher {
        overflow-x: auto;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
    }

    .home-hero-card.is-small {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .home-scroll-actions {
        display: none;
    }

    .single-featured {
        float: none;
        width: 100%;
        margin: 0 0 18px;
    }

    [dir="rtl"] .single-featured {
        float: none;
        margin: 0 0 18px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* =========================================================
   SAYFA / Etiketler Sayfası
========================================================= */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
	border-radius: 3px;
}


.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: #344054;
    font-size: 0.94rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.tag-pill:hover {
    background: #fff7ed;
    border-color: #fed7aa;
    color: var(--brand-dark);
}

/* =========================================================
   SAYFA / Arama Sayfası
========================================================= */
.search-page-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 8px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.search-page-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    padding: 12px 14px;
}

.search-page-form button {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 12px 20px;
}

.search-page-form button:hover {
    background: var(--brand-dark);
}

@media (max-width: 640px) {
    .search-page-form {
        border-radius: 3px;
        flex-direction: column;
    }

    .search-page-form button {
        width: 100%;
    }
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.button-light {
    background: var(--surface-soft);
    color: var(--text);
    border: 1px solid var(--border);
}

.button-light:hover {
    background: #fff7ed;
    color: var(--brand-dark);
    border-color: #fed7aa;
}
/* =========================================================
   SAYFA / Arşiv Sayfası
========================================================= */
.archive-year-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.archive-year-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    background: #fff;
}

.archive-year-list li + li {
    border-top: 1px solid var(--border);
}

.archive-year-list a {
    font-weight: 800;
    color: var(--text);
}

.archive-year-list span {
    color: var(--muted);
    font-size: 0.94rem;
}

.archive-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.archive-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.archive-row-date {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.archive-row-content h2 {
    margin: 4px 0 6px;
    font-size: 1.1rem;
    line-height: 1.35;
}

.archive-row-content p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 640px) {
    .archive-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   404 PAGE
   404.asp sayfasındaki yönlendirme butonları
========================================================= */

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.button-light {
    background: var(--surface-soft);
    color: var(--text);
    border: 1px solid var(--border);
}

.button-light:hover {
    background: #fff7ed;
    color: var(--brand-dark);
    border-color: #fed7aa;
}

/* =========================================================
   MONTHLY ARCHIVE PAGE
   aylik-arsiv.asp sayfasındaki ay gezinmesi ve boş arşiv alanı
========================================================= */

.month-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.month-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #344054;
    font-size: 0.94rem;
    font-weight: 800;
    transition: 0.2s ease;
}

.month-nav a:hover {
    background: #fff7ed;
    border-color: #fed7aa;
    color: var(--brand-dark);
}

.empty-archive {
    text-align: left;
}

.empty-archive h2 {
    margin-top: 0;
}

/* =========================================================
   SINGLE POST PAGE
   yazi.asp sayfasındaki single yazı gövdesi, etiketler,
   yazar kutusu ve sola yaslı görsel detayları
========================================================= */

.single-content .lead {
    color: #344054;
    font-size: 1.16rem;
    font-weight: 500;
}

.single-featured figcaption {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.4;
    background: var(--surface-soft);
    border-top: 1px solid var(--border);
}

.single-content ul,
.single-content ol {
    margin: 0 0 1.2em 1.2em;
    padding: 0;
}

.single-content li {
    margin-bottom: 0.45em;
}

.netlopedi-slider {
    clear: both;
    margin: 10px auto 22px;
    max-width: 100%;
}

.netlopedi-slider-left {
    float: left;
    clear: left;
    margin: 6px 24px 14px 0;
}

.netlopedi-slider-right {
    float: right;
    clear: right;
    margin: 6px 0 14px 24px;
}

.netlopedi-slider-track {
    display: flex;
    transition: transform 0.25s ease;
    will-change: transform;
}

.netlopedi-slider-viewport {
    max-width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.netlopedi-slider-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.netlopedi-slider-track img,
.netlopedi-slider-placeholder {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    aspect-ratio: var(--slider-ratio, 4 / 3);
    object-fit: cover;
    border-radius: 3px;
}

.netlopedi-slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.netlopedi-slider-controls button,
.netlopedi-lightbox-button,
.netlopedi-lightbox-close {
    border-radius: 3px;
}

.netlopedi-slider-controls button {
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
}

.netlopedi-slider-controls button:hover {
    border-color: #fed7aa;
    color: var(--accent);
}

.netlopedi-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.78);
}

.netlopedi-lightbox.is-open {
    display: flex;
}

.netlopedi-lightbox-dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: 90vh;
}

.netlopedi-lightbox-image {
    display: block;
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
    background: #fff;
    border-radius: 3px;
}

.netlopedi-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: #fff;
    color: var(--text);
    font-weight: 900;
    cursor: pointer;
}

.netlopedi-lightbox-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.netlopedi-lightbox-button {
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #fff;
    color: var(--text);
    font-weight: 900;
    cursor: pointer;
}

.netlopedi-lightbox[data-single="1"] .netlopedi-lightbox-nav {
    display: none;
}

.article-footer {
    clear: both;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.article-tags h2,
.article-author-box h2 {
    margin-top: 0;
}

.article-author-box {
    margin-top: 20px;
}

.article-author-box p {
    margin-bottom: 0;
    color: var(--muted);
}

.post-not-found .not-found-box {
    text-align: left;
}

.not-found-search-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.not-found-search-box h2 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

/* =========================================================
   ALL POSTS PAGE
   tum-yazilar.asp sayfasındaki kategori hızlı geçiş alanı
   ve tüm yazılar listeleme yardımcı stilleri
========================================================= */

.post-filter-box {
    margin-top: 20px;
}

.post-filter-box h2 {
    margin-top: 0;
}

.post-filter-box p {
    color: var(--muted);
}

.post-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.post-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #344054;
    font-size: 0.94rem;
    font-weight: 800;
    transition: 0.2s ease;
}

.post-filter-pill:hover {
    background: #fff7ed;
    border-color: #fed7aa;
    color: var(--brand-dark);
}

.all-posts-page .post-grid {
    margin-top: 8px;
}

/* =========================================================
   MEMBER SYSTEM
   uye-kayit.asp, uye-giris.asp, hesabim.asp ve header üyelik
   bağlantıları için kullanılan stiller
========================================================= */

.member-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.member-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #344054;
    font-size: 0.82rem;
    font-weight: 800;
}

.member-nav a:hover {
    background: #fff;
    color: var(--brand-dark);
}

.auth-box {
    max-width: 760px;
}

.auth-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.auth-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

.auth-form input,
.auth-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: 0;
    background: var(--surface-soft);
    color: var(--text);
    font: inherit;
    border-radius: 3px;
    padding: 12px 14px;
}

.auth-form input:focus,
.auth-form textarea:focus {
    border-color: #fed7aa;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.auth-switch {
    margin-top: 18px;
    color: var(--muted);
}

.auth-switch a {
    color: var(--brand-dark);
    font-weight: 800;
}

.form-message {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 3px;
    font-weight: 700;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.account-details {
    margin-top: 18px;
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.account-details p {
    margin: 0 0 8px;
}

.account-details p:last-child {
    margin-bottom: 0;
}
/* =========================================================
   COMMENTS SYSTEM
   yazi.asp içindeki yorum listesi, yorum formu ve giriş kutusu
========================================================= */

.comments-section {
    margin-top: 20px;
}

.comments-section h2 {
    margin-top: 0;
}

.comment-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.comment-item {
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.comment-author {
    font-weight: 900;
    color: var(--text);
}

.comment-date {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.86rem;
}

.comment-item p {
    margin: 10px 0 0;
}

.comment-empty {
    color: var(--muted);
}

.comment-form-wrap {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.comment-form {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.comment-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: 0;
    background: var(--surface-soft);
    color: var(--text);
    font: inherit;
    border-radius: 3px;
    padding: 12px 14px;
}

.comment-form textarea {
    min-height: 130px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #fed7aa;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.comment-login-box {
    margin-top: 14px;
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.comment-login-box p {
    margin-top: 0;
    color: var(--muted);
}

/* =========================================================
   ABOUT PAGE
   hakkimizda.asp sayfasındaki kurumsal tanıtım, değer kartları
   ve yayın ilkeleri alanı
========================================================= */

.about-hero p:last-child {
    margin-bottom: 0;
}

.about-values {
    margin-top: 24px;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-value-card {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.about-value-card h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.about-value-card p {
    margin: 0;
    color: var(--muted);
}

.about-principles {
    margin: 0;
    padding-left: 20px;
}

.about-principles li {
    margin-bottom: 8px;
}

@media (max-width: 760px) {
    .about-value-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ACCOUNT PAGE
   hesabim.asp üyelik hesabı, profil güncelleme, şifre değiştirme
   ve kullanıcı yorum geçmişi alanları
========================================================= */

.account-hero .account-actions {
    margin-top: 20px;
}

.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.account-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.account-stat-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.account-stat-card span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.account-stat-card strong {
    color: var(--text);
    font-size: 2rem;
    line-height: 1;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.account-card h2 {
    margin-top: 0;
}

.account-details {
    margin-top: 14px;
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.account-details p {
    margin: 0 0 9px;
}

.account-details p:last-child {
    margin-bottom: 0;
}

.account-form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.account-password-form {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
}

.account-form label {
    display: grid;
    gap: 7px;
    color: #344054;
    font-weight: 900;
}

.account-form input {
    width: 100%;
    border: 1px solid var(--border);
    outline: 0;
    background: var(--surface-soft);
    color: var(--text);
    font: inherit;
    border-radius: 3px;
    padding: 12px 14px;
}

.account-form input:focus {
    border-color: #fed7aa;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.account-comments {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.account-comment-item {
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 3px;
}

.account-comment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.account-comment-head a {
    color: var(--text);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.account-comment-item p {
    margin: 0 0 8px;
    color: #344054;
}

.account-comment-item small {
    color: var(--muted);
}

.account-comment-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

.account-status-pending {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.account-status-approved {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.account-status-rejected {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.account-status-muted {
    background: #fff;
    color: var(--muted);
    border: 1px solid var(--border);
}

.account-empty {
    color: var(--muted);
}

@media (max-width: 980px) {
    .account-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-grid,
    .account-password-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .account-stats-grid {
        grid-template-columns: 1fr;
    }

    .account-comment-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   ACCOUNT PAGE FULL WIDTH
   hesabim.asp sayfasında sidebar kullanılmadığı için içerik
   alanını tek kolon ve tam genişlik yapar
========================================================= */

.account-page .layout-full {
    grid-template-columns: minmax(0, 1fr);
}

.account-page .layout-full .content-area {
    width: 100%;
    max-width: 100%;
}

.account-page .single-article,
.account-page .account-hero,
.account-page .account-card {
    width: 100%;
    max-width: none;
}

.account-page .account-stats-grid,
.account-page .account-grid,
.account-page .account-comments {
    width: 100%;
    max-width: 100%;
}

/* =========================================================
   SIMPLIFIED FORM RADII
========================================================= */

input,
select,
textarea,
button,
.button,
.button-light,
.post-card,
.search-box,
.header-search,
.header-search button,
.widget-search,
.widget-search button,
.search-page-form,
.search-page-form button,
.language-switcher,
.language-switcher a,
.member-nav,
.member-nav a,
.category-nav a,
.category-nav li ul,
.category-nav li ul a,
.auth-card,
.account-card,
.comment-form,
.single-article,
.single-featured,
.single-featured img,
.single-featured figcaption,
.article-language-pill,
.single-article input,
.single-article select,
.single-article textarea,
.single-article button {
    border-radius: 3px;
}

/* =========================================================
   YAZI / Dil / Ceviri Alanı
========================================================= */
.article-language-switcher {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.article-language-label {
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
}

.article-language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-language-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 28px;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    background: var(--surface);
    color: var(--text);
    transition: 0.15s ease;
    text-decoration: none;
}

.article-language-pill.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.article-language-pill:not(.is-active):hover {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: #fff7ed;
}

input[type="file"]::file-selector-button {
    border-radius: 3px;
}
