/* İlim ve Medeniyet — Zengin yapı */

:root {
    --gold: #9b8761;
    --gold-dark: #7a6849;
    --gold-light: #c9b896;
    --blue: #116ea1;
    --blue-dark: #0d5880;
    --blue-light: #4a9fd4;
    --ink: #1a1a20;
    --ink-soft: #55555f;
    --cream: #f5f1ea;
    --cream-dark: #ebe5da;
    --white: #fff;
    --line: #ddd6ca;
    --serif: 'Bona Nova', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --wrap: 1240px;
    --radius: 10px;
    --shadow: 0 8px 30px rgba(26, 26, 32, .1);
    --header-bg: var(--white);
    --card-bg: var(--white);
    --hero-bg: var(--cream);
    --footer-bg: #1a1a20;
}

[data-theme="dark"] {
    color-scheme: dark;
    --ink: #f0ece4;
    --ink-soft: #a8a49c;
    --cream: #22222c;
    --cream-dark: #2c2c38;
    --white: #16161e;
    --line: #333340;
    --shadow: 0 8px 30px rgba(0, 0, 0, .35);
    --header-bg: #16161e;
    --card-bg: #1e1e28;
    --hero-bg: #1a1a22;
    --footer-bg: #0d0d10;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 10px;
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--ink-soft);
    background: var(--white);
    transition: background .3s, color .3s
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

address {
    font-style: normal
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.25
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px
}

/* Tag */
.tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(155, 135, 97, .12);
    padding: 4px 10px;
    border-radius: 3px
}

.tag--sm {
    font-size: .9rem;
    padding: 2px 8px
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.25rem;
    color: var(--ink-soft);
    margin-top: 10px
}

.meta i {
    margin-right: 4px;
    color: var(--gold);
    opacity: .8
}

.hero-slide .meta {
    color: rgba(255, 255, 255, .7)
}

.hero-slide .meta i {
    color: var(--gold-light)
}

/* Top bar */
.bar-top {
    background: var(--gold);
    color: rgba(255, 255, 255, .9);
    font-size: 1.2rem;
    font-weight: 500
}

.bar-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px
}

.bar-top i {
    margin-right: 6px
}

.bar-top__social {
    display: flex;
    gap: 12px
}

.bar-top__social a {
    color: rgba(255, 255, 255, .85);
    transition: opacity .2s
}

.bar-top__social a:hover {
    opacity: .7
}

/* Header */
.header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow .3s, background .3s
}

.header.is-scrolled {
    box-shadow: var(--shadow)
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px
}

.header__logo img {
    height: 46px
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2px
}

.header__nav > a, .nav-drop button {
    padding: 9px 14px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink-soft);
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: 6px;
    transition: all .2s
}

.header__nav > a:hover, .header__nav > a.active, .nav-drop button:hover {
    color: var(--ink);
    background: var(--cream)
}

.header__nav > a.active {
    color: var(--blue)
}

.nav-drop {
    position: relative
}

.nav-drop__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 340px;
    padding: 14px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .2s;
    z-index: 50
}

.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.nav-drop__menu a {
    padding: 8px 10px;
    font-size: 1.25rem;
    border-radius: 4px;
    transition: background .15s
}

.nav-drop__menu a:hover {
    background: var(--cream);
    color: var(--gold)
}

.header__actions {
    display: flex;
    gap: 6px
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--header-bg);
    border-radius: 8px;
    cursor: pointer;
    color: var(--ink);
    transition: all .2s
}

.btn-icon:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn-menu {
    display: none
}

/* Category strip */
.cat-strip {
    background: var(--blue);
    padding: 0;
    overflow: hidden
}

.cat-strip__scroll {
    display: flex;
    gap: 4px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none
}

.cat-strip__scroll::-webkit-scrollbar {
    display: none
}

.cat-strip__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    white-space: nowrap;
    border-radius: 6px;
    transition: all .2s;
    flex-shrink: 0
}

.cat-strip__item i {
    font-size: 1.1rem;
    opacity: .7
}

.cat-strip__item:hover, .cat-strip__item.is-active {
    background: rgba(155, 135, 97, .25);
    color: #fff
}

.cat-strip__item.is-active {
    background: var(--gold);
    color: #fff
}

.cat-strip--article .cat-strip__scroll {
    align-items: center;
    gap: 0
}

.cat-strip--article .cat-strip__item {
    padding: 8px 10px
}

.cat-strip--article .cat-strip__sep {
    color: rgba(255, 255, 255, .35);
    font-size: .75rem;
    padding: 0 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center
}

.cat-strip--article .cat-strip__item.is-active {
    background: transparent;
    color: #fff;
    font-family: var(--serif);
    font-weight: 600;
    max-width: min(520px, 55vw);
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default
}

.cat-strip--article .cat-strip__item.is-active:hover {
    background: transparent;
    color: #fff
}

.cat-strip--article .cat-strip__item:not(.is-active):hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

/* Search */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 32, .95);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.search-modal.is-open {
    opacity: 1;
    visibility: visible
}

.search-modal__box {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
    position: relative
}

.search-modal input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--serif);
    font-size: 2.8rem;
    color: #fff;
    background: none;
    border: none;
    border-bottom: 2px solid var(--gold);
    outline: none
}

.search-modal input::placeholder {
    color: rgba(255, 255, 255, .35)
}

.search-modal__close {
    position: absolute;
    top: -52px;
    right: 0;
    font-size: 3rem;
    color: rgba(255, 255, 255, .5);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1
}

.search-modal__close:hover {
    color: #fff
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--card-bg);
    z-index: 180;
    padding: 48px 24px;
    transform: translateX(100%);
    transition: transform .3s;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .1)
}

.mobile-nav.is-open {
    transform: translateX(0)
}

.mobile-nav__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-soft)
}

.mobile-nav__logo {
    height: 40px;
    margin-bottom: 28px
}

.mobile-nav nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--line)
}

.mobile-nav__social {
    display: flex;
    gap: 10px;
    margin-top: 28px
}

.mobile-nav__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    border-radius: 8px
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 170;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.backdrop.is-open {
    opacity: 1;
    visibility: visible
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 90;
    box-shadow: var(--shadow)
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    background: var(--gold-dark)
}

.search-modal__hints {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center
}

.search-modal__hints span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .45);
    width: 100%;
    text-align: center;
    margin-bottom: 4px
}

.search-modal__hints a {
    padding: 8px 14px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    transition: all .2s
}

.search-modal__hints a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

/* HERO */
.hero-block {
    padding: 24px 0;
    background: var(--hero-bg)
}

.hero-block__grid {
    display: grid;
    grid-template-columns:1fr 360px;
    gap: 20px;
    align-items: stretch
}

.hero-block__main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 460px
}

.hero-swiper {
    position: relative;
    height: 100%
}

.hero-swiper, .hero-swiper .swiper-slide {
    height: 100%
}

.hero-slide {
    display: block;
    position: relative;
    height: 460px;
    color: #fff
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease
}

.hero-slide:hover img {
    transform: scale(1.04)
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 32, .92) 0%, rgba(26, 26, 32, .3) 50%, rgba(26, 26, 32, .15) 100%);
    pointer-events: none
}

.hero-slide__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 36px 72px;
    z-index: 2;
    pointer-events: none
}

.hero-slide__content h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25
}

.hero-slide__content .meta {
    margin-top: 0;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .55)
}

.hero-slide__content .meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.hero-slide__content .tag {
    background: rgba(155, 135, 97, .4);
    color: #f0e6d6
}

.hero-slide--no-title .hero-slide__overlay {
    background: linear-gradient(to top, rgba(26, 26, 32, .55) 0%, rgba(26, 26, 32, .15) 35%, transparent 60%)
}

.hero-slide--no-title .hero-slide__content {
    bottom: 64px;
    padding: 0 36px 0
}

.hero-controls {
    position: absolute;
    bottom: 20px;
    left: 36px;
    right: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    pointer-events: none
}

.hero-controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all .2s;
    font-size: 1.3rem;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto
}

.hero-controls button i {
    pointer-events: none;
    line-height: 1
}

.hero-controls button:hover {
    background: var(--gold);
    border-color: var(--gold)
}

.hero-pagination {
    pointer-events: auto;
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 0
}

.hero-pagination.swiper-pagination-horizontal {
    display: flex !important
}

.hero-pagination .swiper-pagination-bullet {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .3);
    opacity: 1;
    transition: background .3s, width .3s;
    flex-shrink: 0
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 40px
}

/* Side news */
.hero-block__side {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.side-head {
    padding: 18px 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    background: var(--card-bg)
}

.side-head__label {
    display: flex;
    align-items: center;
    gap: 12px
}

.side-head__mark {
    width: 3px;
    height: 36px;
    background: linear-gradient(to bottom, var(--blue), var(--blue-dark));
    border-radius: 2px;
    flex-shrink: 0
}

.side-head__label strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -.01em
}

.side-head__label span {
    display: block;
    margin-top: 2px;
    font-size: 1.15rem;
    color: var(--ink-soft);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none
}

.side-head__link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    padding: 6px 12px;
    border: 1px solid rgba(155, 135, 97, .35);
    border-radius: 20px;
    transition: all .2s
}

.side-head__link:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.side-news {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    flex: 1;
    align-items: flex-start;
    transition: background .2s
}

.side-news:last-child {
    border-bottom: none
}

.side-news:hover {
    background: var(--cream)
}

.side-news img {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0
}

.side-news h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1.35;
    color: var(--ink);
    margin-top: 4px;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.7rem * 1.35 * 2)
}

.side-news:hover h3 {
    color: var(--gold)
}

/* Stats */
.stats-bar {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 28px 0
}

.stats-bar__grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
    text-align: center
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.stat span {
    display: block;
    margin-top: 6px;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .04em
}

/* Panels */
.panel {
    padding: 48px 0
}

.panel--cream {
    background: var(--cream)
}

.panel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px
}

.panel__head--sm {
    align-items: center;
    margin-bottom: 20px
}

.panel__head--sm h2 {
    font-size: 2.2rem
}

.panel__label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px
}

.panel__head h2 {
    font-size: 2.8rem
}

.panel__link {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap
}

.panel__link:hover {
    text-decoration: underline
}

.panel__head-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.panel__nav {
    display: flex;
    gap: 8px
}

.panel__nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: var(--card-bg);
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s
}

.panel__nav button:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

/* Cards (editor) */
.card {
    display: block;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: transform .25s, box-shadow .25s;
    height: 100%
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform .5s;
    flex-shrink: 0
}

.card:hover img {
    transform: scale(1.05)
}

.card__body {
    padding: 16px 18px 20px
}

.card__body h3 {
    font-size: 1.5rem;
    line-height: 1.35;
    margin-top: 8px;
    transition: color .2s
}

.card:hover h3 {
    color: var(--gold)
}

/* Editör seçkisi — eşit kart yüksekliği */
.editor-swiper .swiper-wrapper {
    align-items: stretch
}

.editor-swiper .swiper-slide {
    height: auto;
    display: flex
}

.editor-swiper .card {
    display: flex;
    flex-direction: column;
    width: 100%
}

.editor-swiper .card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.editor-swiper .card__body .tag {
    align-self: flex-start;
    flex-shrink: 0
}

.editor-swiper .card__body h3 {
    width: 100%;
    flex: 1;
    font-size: 1.7rem;
    line-height: 1.4;
    min-height: 7.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author showcase */
.author-swiper {
    overflow-x: hidden;
    overflow-y: visible;
    padding: 6px 0 10px
}

.author-swiper .swiper-wrapper {
    align-items: stretch
}

.author-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 4px 0 2px
}

.author-swiper .author-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 18px 10px 0;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: border-color .25s, box-shadow .25s, transform .25s
}

.author-swiper .author-card:hover {
    border: 1px solid var(--gold);
    box-shadow: 0 10px 28px rgba(26, 26, 32, .1);
    transform: translateY(-3px)
}

.author-swiper .author-card__media {
    margin: 0 auto;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
    border: 3px solid var(--cream-dark);
    line-height: 0;
    transition: border-color .2s
}

.author-swiper .author-card:hover .author-card__media {
    border-color: var(--gold)
}

.author-swiper .author-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 50%;
    margin: 0;
    transition: transform .35s ease
}

.author-swiper .author-card:hover .author-card__media img {
    transform: scale(1.05)
}

.author-swiper .author-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px 10px 14px
}

.author-swiper .author-card strong {
    font-size: 1.45rem;
    color: var(--ink);
    line-height: 1.25
}

.author-swiper .author-card span {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-top: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

/* Content grid */
.content-grid {
    display: grid;
    grid-template-columns:1fr 300px;
    gap: 36px;
    align-items: start
}

.post-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.post-box {
    display: block;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all .25s
}

.post-box:hover {
    box-shadow: var(--shadow);
    border-color: var(--gold-light)
}

.post-box img {
    width: 100%;
    object-fit: contain;
}

.post-box__body {
    padding: 18px 20px 22px
}

.post-box__body h3 {
    font-size: 1.65rem;
    margin: 8px 0 8px;
    line-height: 1.3;
    transition: color .2s
}

.post-box:hover h3 {
    color: var(--gold)
}

.post-box__body p {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--ink-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.post-box .meta {
    margin-top: 12px;
    font-size: 1.15rem;
    border-top: 1px solid var(--line);
    padding-top: 10px
}

.content-grid__side {
    position: sticky;
    top: 96px
}

.side-box {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px
}

.side-box h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block
}

.side-box--dark {
    background: linear-gradient(135deg, var(--ink), #2d2d38);
    border: none;
    color: rgba(255, 255, 255, .75)
}

.side-box--dark h3 {
    color: #fff;
    border-color: var(--gold)
}

.side-box--dark p {
    font-size: 1.35rem;
    margin-bottom: 14px
}

.side-box--bulten {
    display: block;
    padding: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    transition: transform .2s, box-shadow .2s
}

.side-box--bulten:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.side-box--bulten img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius)
}

.side-box--bulten__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--blue);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: background .2s
}

.side-box--bulten:hover .side-box--bulten__cta {
    background: var(--blue-dark)
}

.sub-form {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.sub-form input {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 1.4rem;
    outline: none
}

.sub-form input:focus {
    border-color: var(--gold)
}

.sub-form button {
    padding: 10px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s
}

.sub-form button:hover {
    background: var(--blue-dark)
}

.topic-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8px
}

.topic-grid a {
    display: block;
    padding: 10px 12px;
    font-size: 1.25rem;
    font-weight: 500;
    background: var(--cream);
    border-radius: 6px;
    text-align: center;
    transition: all .2s
}

.topic-grid a:hover {
    background: var(--gold);
    color: #fff
}

.side-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
}

.side-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: 1.6rem;
    background: var(--cream);
    transition: all .2s
}

.side-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

/* Category duo */
.cat-duo__intro {
    margin-bottom: 36px
}

.cat-duo__intro h2 {
    font-size: 2.8rem
}

.cat-duo {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 28px
}

.cat-duo__col {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(26, 26, 32, .04);
    transition: box-shadow .25s, border-color .25s
}

.cat-duo__col:hover {
    box-shadow: var(--shadow);
    border-color: rgba(17, 110, 161, .2)
}

.cat-duo__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line)
}

.cat-duo__title {
    display: flex;
    align-items: center;
    gap: 14px
}

.cat-duo__title h3 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--ink);
    line-height: 1.1;
    margin: 0
}

.cat-duo__title span {
    display: block;
    margin-top: 2px;
    font-size: 1.2rem;
    color: var(--ink-soft);
    font-weight: 500
}

.cat-duo__link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
    transition: color .2s
}

.cat-duo__link:hover {
    color: var(--blue-dark);
    text-decoration: underline
}

.cat-duo__hero {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 16/9
}

.cat-duo__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.cat-duo__hero:hover img {
    transform: scale(1.05)
}

.cat-duo__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 32, .88) 0%, rgba(26, 26, 32, .2) 55%, transparent 100%)
}

.cat-duo__hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    z-index: 2;
    color: #fff
}

.cat-duo__hero-content h4 {
    font-family: var(--serif);
    font-size: 1.85rem;
    line-height: 1.35;
    color: #fff;
    margin-top: 8px;
    transition: color .2s
}

.cat-duo__hero:hover h4 {
    color: var(--gold-light)
}

.cat-duo__list {
    list-style: none;
    padding: 0;
    margin: 0
}

.cat-duo__list li {
    border-top: 1px solid var(--line)
}

.cat-duo__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 4px;
    transition: background .2s;
    border-radius: 8px
}

.cat-duo__item:hover {
    background: var(--cream)
}

.cat-duo__num {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
    opacity: .35;
    line-height: 1;
    min-width: 28px;
    padding-top: 2px
}

.cat-duo__item div {
    flex: 1;
    min-width: 0
}

.cat-duo__item h5 {
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 4px;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.cat-duo__item:hover h5 {
    color: var(--blue)
}

.cat-duo__item span {
    font-size: 1.15rem;
    color: var(--ink-soft)
}

/* Legacy (kategori sayfası vb.) */
.cat-feature {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 16px;
    transition: box-shadow .25s
}

.cat-feature:hover {
    box-shadow: var(--shadow)
}

.cat-feature img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.cat-feature div {
    padding: 18px 20px;
    background: var(--card-bg)
}

.cat-feature h3 {
    font-size: 1.7rem;
    margin-top: 8px;
    transition: color .2s
}

.cat-feature:hover h3 {
    color: var(--gold)
}

.mini-list li {
    border-bottom: 1px solid var(--line)
}

.mini-list a {
    display: block;
    padding: 12px 0;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ink);
    transition: color .2s
}

.mini-list a:hover {
    color: var(--gold)
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, .6);
    padding: 48px 0 0
}

.footer__grid {
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px
}

.footer__brand > a {
    display: block;
    line-height: 0
}

.footer__brand img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block
}

.footer__brand > p {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .55);
    max-width: 300px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 0
}

.footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #fff;
    transition: all .2s
}

.footer__social a:hover {
    background: var(--gold);
    border-color: var(--gold)
}

.footer__email {
    display: inline-block;
    margin-top: 8px;
    color: var(--gold-light);
    font-size: 1.4rem
}

.footer p {
    margin-top: 0
}

.footer h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px;
    font-family: var(--sans)
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer ul li {
    margin-bottom: 6px
}

.footer a {
    font-size: 1.4rem;
    transition: color .2s
}

.footer a:hover {
    color: var(--gold-light)
}

.footer address {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 8px
}

.footer__bar {
    padding: 16px 0;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .3)
}

.footer--minimal {
    padding: 0
}

.footer--minimal .footer__bar {
    text-align: center;
    color: rgba(255, 255, 255, .45)
}

.footer--minimal .footer__bar a {
    color: rgba(255, 255, 255, .55)
}

.footer--minimal .footer__bar a:hover {
    color: var(--gold-light)
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-block__grid {
        grid-template-columns:1fr
    }

    .hero-block__side {
        flex-direction: row;
        flex-wrap: wrap
    }

    .side-news {
        flex: 1 1 45%;
        min-width: 280px
    }

    .content-grid {
        grid-template-columns:1fr
    }

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

    .cat-duo {
        grid-template-columns:1fr
    }

    .cat-duo__hero-content h4 {
        font-size: 1.65rem
    }

    .stats-bar__grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 24px
    }

    .author-posts {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .header__nav {
        display: none
    }

    .btn-menu {
        display: flex
    }

    .hero-block__main {
        min-height: 0;
        height: auto;
        aspect-ratio: 16/9
    }

    .hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide {
        height: 100%
    }

    .hero-slide {
        height: 100%;
        min-height: 0
    }

    .hero-slide img {
        object-fit: contain;
        background: var(--ink)
    }

    .hero-slide:hover img {
        transform: none
    }

    .hero-slide__content {
        padding: 16px 16px 58px
    }

    .hero-slide__content h1 {
        font-size: 1.7rem
    }

    .hero-slide--no-title .hero-slide__content {
        bottom: 52px;
        padding: 0 16px 0
    }

    .hero-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
        gap: 6px;
        display: grid;
        grid-template-columns:36px minmax(0, 1fr) 36px;
        align-items: center
    }

    .hero-prev {
        grid-column: 1;
        grid-row: 1
    }

    .hero-pagination {
        grid-column: 2;
        grid-row: 1;
        flex: none;
        gap: 5px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

    .hero-pagination::-webkit-scrollbar {
        display: none
    }

    .hero-next {
        grid-column: 3;
        grid-row: 1
    }

    .hero-controls button {
        width: 36px;
        height: 36px;
        font-size: 1.2rem
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 18px
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 26px
    }

    .footer__grid {
        grid-template-columns:1fr
    }

    .side-news {
        flex: 1 1 100%
    }
}

/* ===== ARTICLE PAGE ===== */
.tag--light {
    background: rgba(155, 135, 97, .4);
    color: #f0e6d6
}

.article-page {
    padding-bottom: 0
}

.article-layout {
    display: grid;
    grid-template-columns:minmax(0, 1fr) 320px;
    gap: 24px;
    padding: 12px 0 48px;
    align-items: start
}

.article-layout--single {
    grid-template-columns: 1fr
}

.article-page .article-layout {
    max-width: none;
    margin: 0
}

.article-main {
    min-width: 0
}

.article-hero {
    padding: 0
}

.article-hero__cover {
    margin: 16px 0 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--cream);
    line-height: 0
}

.article-hero__cover img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    display: block
}

.article-hero__content {
    padding: 0 0 4px
}

.article-hero__content h1 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    color: var(--ink);
    margin: 10px 0 0;
    line-height: 1.25
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 1.25rem;
    color: var(--ink-soft);
    margin-top: 14px
}

.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 600
}

.article-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold)
}

.article-aside {
    position: sticky;
    top: 96px;
    min-width: 0
}

.article-aside .mini-list a {
    font-size: 1.35rem;
    line-height: 1.45
}

.article-body {
    padding-top: 0;
    margin-top: 20px
}

.article-body > :first-child {
    margin-top: 0
}

.article-body p:empty {
    display: none
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.65rem;
    line-height: 1.75;
    color: var(--ink-soft)
}

.article-body h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    margin: 36px 0 16px;
    color: var(--ink);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block
}

.article-quote {
    margin: 20px 0;
    padding: 24px 28px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    font-family: var(--serif);
    font-size: 1.9rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink)
}

.article-quote p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-style: inherit;
    font-weight: inherit
}

.article-body .article-lead {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    font-family: var(--serif);
    font-size: 1.9rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 400
}

.article-tags, .article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line)
}

.article-tags span, .article-share span {
    font-weight: 600;
    color: var(--ink);
    margin-right: 4px
}

.article-tags a, .article-share a {
    padding: 6px 14px;
    font-size: 1.25rem;
    background: var(--cream);
    border-radius: 6px;
    transition: all .2s
}

.article-tags a:hover {
    background: var(--gold);
    color: #fff
}

.article-share a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0
}

.article-share a:hover {
    background: var(--gold);
    color: #fff
}

.author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    margin: -12px;
    border-radius: 8px;
    transition: background .2s
}

.author-box:hover {
    background: var(--cream)
}

.author-box img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover
}

.author-box strong {
    display: block;
    font-size: 1.5rem;
    color: var(--ink)
}

.author-box span {
    font-size: 1.25rem;
    color: var(--ink-soft)
}

.article-comments {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line)
}

.article-comments__head {
    margin-bottom: 24px
}

.article-comments__head h2 {
    font-size: 2.2rem;
    color: var(--ink)
}

.article-comments__count {
    font-size: 1.25rem;
    color: var(--ink-soft);
    font-weight: 400
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.comment-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(26, 26, 32, .05)
}

.comment-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap
}

.comment-item__name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink)
}

.comment-item__date {
    font-size: 1.15rem;
    color: var(--ink-soft)
}

.comment-item__body {
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--ink-soft)
}

.comment-form-wrap {
    margin-top: 28px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 10px
}

.comment-form-wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--ink)
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.comment-form input, .comment-form textarea {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1.45rem;
    font-family: inherit;
    background: #fff;
    color: var(--ink)
}

.comment-form input:focus, .comment-form textarea:focus {
    outline: none;
    border-color: var(--gold)
}

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

.comment-form button {
    align-self: flex-start;
    padding: 12px 28px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.45rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s
}

.comment-form button:hover {
    background: var(--blue-dark)
}

.comment-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1.35rem;
    margin-bottom: 16px
}

.comment-alert--error {
    background: #fde8e8;
    color: #9b1c1c;
    border: 1px solid #f5c2c2
}

@media (max-width: 960px) {
    .article-layout {
        grid-template-columns:1fr
    }

    .article-aside {
        position: static
    }

    .article-hero__cover img {
        max-height: 300px;
        border-radius: 8px
    }

    .article-hero__cover {
        border-radius: 8px
    }
}

/* ===== INNER PAGES ===== */
.breadcrumb {
    font-size: 1.25rem;
    color: var(--ink-soft);
    margin-bottom: 16px
}

.breadcrumb a {
    color: var(--ink-soft);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--gold)
}

.breadcrumb--light, .breadcrumb--light a {
    color: rgba(255, 255, 255, .6)
}

.breadcrumb--light a:hover {
    color: #fff
}

.page-hero {
    background: var(--ink);
    color: #fff;
    padding: 48px 20px 56px;
    text-align: center
}

.page-hero--category {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 56px 20px 52px;
    background: var(--blue-dark)
}

.page-hero--category .page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page-hero--category .page-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 40, 68, .92) 0%, rgba(17, 110, 161, .72) 45%, rgba(17, 110, 161, .35) 100%)
}

.page-hero--category .page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto
}

.page-hero__inner {
    max-width: 640px;
    margin: 0 auto
}

.page-hero__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 12px;
    font-size: 2rem;
    color: #fff
}

.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 12px
}

.page-hero .breadcrumb, .page-hero .breadcrumb a {
    color: rgba(255, 255, 255, .55)
}

.page-hero .breadcrumb a:hover {
    color: #fff
}

.page-hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6
}

.page-hero__count {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 16px;
    background: rgba(17, 110, 161, .25);
    border: 1px solid rgba(17, 110, 161, .45);
    border-radius: 20px;
    font-size: 1.25rem;
    color: var(--blue-light)
}

.cat-lead {
    display: grid;
    grid-template-columns:1.2fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 26, 32, .08);
    margin-bottom: 40px;
    transition: transform .2s, box-shadow .2s
}

.cat-lead:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 26, 32, .12)
}

.cat-lead > img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover
}

.cat-lead__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.cat-lead__body h2 {
    font-family: var(--serif);
    font-size: 2.4rem;
    line-height: 1.3;
    margin: 12px 0;
    color: var(--ink)
}

.cat-lead__body p {
    font-size: 1.45rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px
}

.post-grid--3 {
    grid-template-columns:repeat(3, 1fr);
    margin-bottom: 40px
}

.article-stream {
    list-style: none;
    padding: 0;
    margin: 0
}

.stream-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: background .2s
}

.stream-item:hover {
    background: var(--cream)
}

.stream-item__text {
    flex: 1;
    min-width: 0
}

.stream-item__text h3 {
    font-family: var(--serif);
    font-size: 1.85rem;
    line-height: 1.35;
    margin: 8px 0;
    color: var(--ink);
    transition: color .2s
}

.stream-item:hover h3 {
    color: var(--gold)
}

.stream-item__text p {
    font-size: 1.35rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.stream-item__thumb {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0
}

.stream-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.byline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.2rem;
    color: var(--ink-soft)
}

.article-stream--flat .stream-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(26, 26, 32, .05)
}

.article-stream--flat .stream-item:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(26, 26, 32, .1)
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px
}

.pagination__num, .pagination__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--line);
    transition: all .2s
}

.pagination__num:hover, .pagination__btn:hover:not(.is-disabled) {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.pagination__num.is-active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.pagination__btn.is-disabled {
    opacity: .4;
    pointer-events: none
}

.topic-grid--1 {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.topic-grid--1 a {
    display: block;
    padding: 10px 14px;
    background: var(--cream);
    border-radius: 6px;
    font-size: 1.35rem;
    transition: all .2s
}

.topic-grid--1 a:hover {
    background: var(--gold);
    color: #fff
}

.author-search {
    position: relative;
    max-width: 400px;
    margin: 0 auto 40px
}

.author-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-soft)
}

.author-search input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 1.45rem;
    background: #fff
}

.author-search input:focus {
    outline: none;
    border-color: var(--gold)
}

.author-directory {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px
}

.author-directory__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--line);
    transition: all .2s
}

.author-directory__card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(26, 26, 32, .08);
    transform: translateY(-2px)
}

.author-directory__card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cream);
    margin-bottom: 12px;
    transition: border-color .2s
}

.author-directory__card:hover img {
    border-color: var(--gold)
}

.author-directory__card strong {
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 4px
}

.author-directory__card span {
    font-size: 1.2rem;
    color: var(--ink-soft)
}

.author-directory__card em {
    font-size: 1.15rem;
    color: var(--gold);
    margin-top: 10px;
    font-style: normal;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.author-profile {
    background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 55%, #0a4568 100%);
    padding: 48px 20px 64px;
    color: #fff
}

.author-profile__inner {
    max-width: var(--wrap);
    margin: 0 auto
}

.author-profile__card {
    display: flex;
    align-items: flex-start;
    gap: 32px
}

.author-profile__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, .25);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.author-profile__info {
    flex: 1;
    min-width: 0
}

.author-profile__info h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: #fff;
    margin-bottom: 12px
}

.author-profile__bio {
    font-size: 1.55rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 16px;
    max-width: none
}

.author-profile__bio p {
    margin-bottom: 12px
}

.author-profile__bio p:last-child {
    margin-bottom: 0
}

.author-profile__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .7)
}

.author-profile__stats span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px
}

.author-profile__stats strong {
    color: #fff;
    font-weight: 600
}

/* Yazar yazı listesi */
.author-posts__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px
}

.author-posts__head h2 {
    font-size: 2.4rem
}

.author-posts__count {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue);
    padding: 6px 14px;
    background: rgba(17, 110, 161, .08);
    border-radius: 20px
}

.author-posts {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.author-post {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    height: 100%
}

.author-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(17, 110, 161, .35)
}

.author-post__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden
}

.author-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.author-post:hover .author-post__img img {
    transform: scale(1.05)
}

.author-post__img .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26, 26, 32, .75);
    color: var(--gold-light);
    backdrop-filter: blur(4px)
}

.author-post__body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.author-post__body h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 10px;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.author-post:hover h3 {
    color: var(--blue)
}

.author-post__body p {
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1
}

.author-post__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 1.2rem;
    color: var(--ink-soft)
}

.author-post__meta i {
    margin-right: 4px;
    color: var(--blue);
    opacity: .8
}

.author-posts__back {
    margin-top: 32px
}

.page-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 20px 64px
}

.page-content h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    margin: 32px 0 12px;
    color: var(--ink)
}

.page-content p {
    font-size: 1.65rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 16px
}

.contact-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 48px 20px 64px
}

.contact-card {
    padding: 28px;
    background: var(--cream);
    border-radius: 12px
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--ink)
}

.contact-card p, .contact-card a {
    font-size: 1.45rem;
    color: var(--ink-soft);
    line-height: 1.6
}

.contact-card a:hover {
    color: var(--gold)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.contact-form input, .contact-form textarea {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1.45rem;
    font-family: inherit
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold)
}

.contact-form button {
    align-self: flex-start;
    padding: 12px 28px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.45rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s
}

.contact-form button:hover {
    background: var(--blue-dark)
}

.contact-iframe {
    margin-top: 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff
}

.contact-iframe iframe {
    display: block;
    width: 100%;
    min-height: 900px;
    border: 0
}

.contact-map {
    margin-top: 20px;
    padding: 0;
    overflow: hidden
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 280px;
    border: 0
}

.contact-card p strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 1.35rem
}

.contact-card p + p {
    margin-top: 16px
}

@media (max-width: 960px) {
    .cat-lead {
        grid-template-columns:1fr
    }

    .post-grid--3 {
        grid-template-columns:1fr
    }

    .author-directory {
        grid-template-columns:repeat(2, 1fr)
    }

    .author-profile__card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-posts {
        grid-template-columns:1fr
    }

    .author-posts__head {
        align-items: flex-start;
        flex-direction: column
    }

    .contact-grid {
        grid-template-columns:1fr
    }
}

@media (max-width: 640px) {
    .author-directory {
        grid-template-columns:1fr
    }
}

