/* ==========================================================================
   SODEV Dergi — Main Stylesheet
   Inspired by sosyaldemokratdergi.org editorial design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&display=swap');

:root {
    /* Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #dbeafe;
    --color-accent: #2563eb;
    --color-dark: #000000;
    --color-text: #000000;
    --color-secondary: #54595F;
    --color-gray-900: #1a1a1a;
    --color-gray-700: #333333;
    --color-gray-500: #54595F;
    --color-gray-300: #d1d5db;
    --color-gray-100: #f5f5f5;
    --color-white: #ffffff;

    /* Typography */
    --font-primary: "Cormorant Garamond", Georgia, serif;
    --font-secondary: "Cormorant Garamond", Georgia, serif;

    /* Layout */
    --container-max-width: 1140px;
    --header-height: 70px;

    /* Borders — sharp, editorial */
    --border-radius: 0;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-secondary);
    font-weight: 300;
    color: #000;
    background: var(--color-white);
    line-height: 1.35;
    word-break: break-word;
    font-feature-settings: "lnum";
    font-variant-numeric: lining-nums;
    text-align: left;
}

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

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

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

/* ==========================================================================
   Header — Sharp editorial bar
   ========================================================================== */

.site-header {
    background: var(--color-white);
    border-bottom: 3px solid var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Branding */
.site-branding {
    flex-shrink: 0;
}

.site-branding a {
    display: flex;
    align-items: center;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 10px;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
    font-weight: 500;
}

/* ==========================================================================
   Main Navigation — Clean, uppercase, editorial
   ========================================================================== */

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 14px;
    height: var(--header-height);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}

.primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
    color: var(--color-primary);
}

.dropdown-arrow {
    transition: transform 0.2s;
    opacity: 0.6;
}

.primary-menu > li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   Header Actions
   ========================================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 16px;
}

.search-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.search-toggle:hover,
.mobile-menu-toggle:hover {
    color: var(--color-primary);
}

.social-link {
    display: flex;
    align-items: center;
    padding: 8px;
    color: var(--color-dark);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Search Overlay
   ========================================================================== */

.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 3px solid var(--color-primary);
    padding: 0 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.search-overlay.active {
    max-height: 200px;
    opacity: 1;
    padding: 20px 0;
}

.search-overlay-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-overlay form {
    flex: 1;
    display: flex;
    gap: 0;
}

.search-overlay input[type="search"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--color-dark);
    border-right: none;
    font-size: 16px;
    font-family: var(--font-secondary);
    outline: none;
    transition: border-color 0.2s;
}

.search-overlay input[type="search"]:focus {
    border-color: var(--color-primary);
}

.search-overlay button[type="submit"] {
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-overlay button[type="submit"]:hover {
    background: var(--color-primary-dark);
}

.search-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-secondary);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* ==========================================================================
   Hero Section — Editorial grid, no border-radius
   ========================================================================== */

.hero-section {
    padding: 20px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4px;
}

.hero-main,
.hero-side-item {
    position: relative;
    overflow: hidden;
}

.hero-link {
    display: block;
    position: relative;
    height: 100%;
}

.hero-main .hero-link {
    min-height: 460px;
}

.hero-side-item .hero-link {
    min-height: 228px;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-placeholder {
    background: linear-gradient(135deg, var(--color-gray-700), var(--color-dark));
}

.hero-link:hover .hero-image {
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--color-white);
}

.hero-category {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    margin-bottom: 12px;
    width: fit-content;
    font-family: var(--font-secondary);
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.hero-title-sm {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.hero-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    opacity: 0.75;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

/* ==========================================================================
   Hero 4 Layout — 2x2 flat grid
   ========================================================================== */

.hero-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 200px;
    gap: 4px;
}

/* ==========================================================================
   Hero 5 Layout — 2 top + 3 bottom flat grid
   ========================================================================== */

.hero-5 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 300px 200px;
    gap: 4px;
}

.hero-5 .hero-item-top:nth-child(1) { grid-column: 1 / 4; }
.hero-5 .hero-item-top:nth-child(2) { grid-column: 4 / 7; }
.hero-5 .hero-item-bottom:nth-child(3) { grid-column: 1 / 3; }
.hero-5 .hero-item-bottom:nth-child(4) { grid-column: 3 / 5; }
.hero-5 .hero-item-bottom:nth-child(5) { grid-column: 5 / 7; }

/* Shared styles for 4/5 layout items */
.hero-item-top,
.hero-item-bottom {
    position: relative;
    overflow: hidden;
}

.hero-item-top .hero-link,
.hero-item-bottom .hero-link {
    display: block;
    position: relative;
    height: 100%;
}

.hero-item-top .hero-image,
.hero-item-bottom .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-item-top .hero-placeholder,
.hero-item-bottom .hero-placeholder {
    background: linear-gradient(135deg, var(--color-gray-700), var(--color-dark));
}

.hero-item-top:hover .hero-image,
.hero-item-bottom:hover .hero-image {
    transform: scale(1.03);
}

.hero-item-top .hero-overlay,
.hero-item-bottom .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--color-white);
}

/* ==========================================================================
   Section Title — Bold editorial line
   ========================================================================== */

.section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

/* ==========================================================================
   Hero: Full Width
   ========================================================================== */

.hero-fullwidth {
    position: relative;
    overflow: hidden;
}

.hero-fullwidth-link {
    display: block;
    position: relative;
    min-height: 480px;
}

.hero-fullwidth-link .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fullwidth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    color: var(--color-white);
    max-width: 600px;
}

.hero-fullwidth-title {
    font-size: 34px;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-fullwidth-excerpt {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 14px;
}

.hero-fullwidth-sub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4px;
    margin-top: 4px;
}

.hero-fullwidth-sub-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--color-dark);
    color: var(--color-white);
    transition: background 0.2s;
}

.hero-fullwidth-sub-item:hover {
    background: #1a1a1a;
}

.hero-fullwidth-sub-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.hero-fullwidth-sub-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fullwidth-sub-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.hero-fullwidth-sub-info .sw-post-title {
    color: var(--color-white);
    font-size: 13px;
}

/* ==========================================================================
   Hero: Equal Grid
   ========================================================================== */

.hero-equal {
    display: grid;
    gap: 4px;
}

.hero-equal-2 { grid-template-columns: 1fr 1fr; }
.hero-equal-3 { grid-template-columns: 1fr 1fr 1fr; }
.hero-equal-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.hero-equal-5 { grid-template-columns: 1fr 1fr 1fr; }

.hero-equal-item {
    position: relative;
    overflow: hidden;
}

.hero-equal-item .hero-link {
    display: block;
    position: relative;
    min-height: 320px;
}

/* ==========================================================================
   Hero: Showcase (büyük orta + küçük yan)
   ========================================================================== */

.hero-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4px;
}

.hero-showcase-main .hero-main .hero-link {
    min-height: 460px;
}

.hero-showcase-side {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-showcase-side .hero-side-item .hero-link {
    min-height: 228px;
}

/* ==========================================================================
   Hero: List (büyük görsel + metin listesi)
   ========================================================================== */

.hero-list-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

.hero-list-featured {
    position: relative;
    overflow: hidden;
}

.hero-list-featured .hero-link {
    display: block;
    position: relative;
    height: 100%;
    min-height: 420px;
}

.hero-list-items {
    background: var(--color-dark);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
}

.hero-list-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.hero-list-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 0;
    border-bottom: 1px solid #222;
    transition: padding-left 0.2s;
}

.hero-list-item:last-child {
    border-bottom: none;
}

.hero-list-item:hover {
    padding-left: 6px;
}

.hero-list-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-list-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-primary);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-list-date {
    font-size: 11px;
    color: #666;
}

/* ==========================================================================
   Hero: Numbered (Gazete stili)
   ========================================================================== */

.hero-numbered {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
}

.hero-numbered-main {
    position: relative;
    overflow: hidden;
}

.hero-numbered-main .hero-link {
    display: block;
    position: relative;
    height: 100%;
    min-height: 440px;
}

.hero-numbered-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 900;
    font-family: var(--font-secondary);
    margin-bottom: 12px;
}

.hero-numbered-list {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-left: none;
    display: flex;
    flex-direction: column;
}

.hero-numbered-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: background 0.15s;
    flex: 1;
}

.hero-numbered-item:last-child {
    border-bottom: none;
}

.hero-numbered-item:hover {
    background: var(--color-gray-100);
}

.hero-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-family: var(--font-secondary);
}

.hero-numbered-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    overflow: hidden;
}

.hero-numbered-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-numbered-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.hero-numbered-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-numbered-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Hero: Carousel
   ========================================================================== */

.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel-track {
    position: relative;
    height: 500px;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-carousel-slide .hero-link {
    display: block;
    position: relative;
    height: 100%;
}

.hero-carousel-slide .hero-overlay {
    max-width: 600px;
}

.hero-carousel-title {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-carousel-excerpt {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Numaralı göstergeler */
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 16px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-carousel-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}

.hero-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.55);
}

.hero-carousel-dot.active {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

/* Ok butonları */
.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.hero-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hero-carousel-prev {
    left: 12px;
}

.hero-carousel-next {
    right: 12px;
}

/* ==========================================================================
   Post Grid — Sharp cards, editorial feel
   ========================================================================== */

.latest-posts {
    padding: 40px 0 60px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.post-card {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.post-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.post-card-link {
    display: block;
}

.post-card-image {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
}

.post-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.03);
}

.post-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a, #333);
}

.post-card-content {
    padding: 16px 18px 20px;
}

.post-card-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.post-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-dark);
    margin-bottom: 12px;
    font-family: var(--font-primary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-weight: 500;
}

.post-card-author::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    margin-right: 5px;
    position: relative;
    top: 0px;
}

.post-card-date::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--color-secondary);
    margin-right: 5px;
    position: relative;
    top: 0px;
}

/* ==========================================================================
   View All Button — Editorial
   ========================================================================== */

.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline {
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* ==========================================================================
   Single Post — Clean editorial reading
   ========================================================================== */

.single-post-header {
    padding: 40px 0 24px;
    max-width: 780px;
    margin: 0 auto;
}

.single-post-header .category-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.single-post-header h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    color: var(--color-dark);
}

.single-post-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.single-post-meta .posted-by a {
    color: var(--color-dark);
    font-weight: 700;
    transition: color 0.2s;
}

.single-post-meta .posted-by a:hover {
    color: var(--color-primary);
}

.single-featured-image {
    margin-bottom: 36px;
}

.single-featured-image img {
    width: 100%;
    height: auto;
}

.single-content {
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.single-content .entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray-700);
    font-family: var(--font-secondary);
}

.single-content .entry-content p {
    margin-bottom: 1.6em;
}

.single-content .entry-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 2em 0 0.8em;
    font-family: var(--font-primary);
    color: var(--color-dark);
}

.single-content .entry-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 1.5em 0 0.6em;
    font-family: var(--font-primary);
    color: var(--color-dark);
}

.single-content .entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 20px 28px;
    margin: 2em 0;
    background: var(--color-gray-100);
    font-style: italic;
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-dark);
}

.single-content .entry-content ul,
.single-content .entry-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.single-content .entry-content ul {
    list-style: disc;
}

.single-content .entry-content ol {
    list-style: decimal;
}

.single-content .entry-content li {
    margin-bottom: 0.5em;
}

.single-content .entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.single-content .entry-content img {
    margin: 2em 0;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--color-gray-100);
    margin-top: 40px;
    border-left: 4px solid var(--color-primary);
}

.author-avatar {
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-secondary);
}

.author-info p {
    font-size: 14px;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Post Tags */
.post-tags {
    margin-top: 24px;
}

.post-tags .tag-list a {
    display: inline-block;
    padding: 4px 12px;
    margin: 0 6px 6px 0;
    background: var(--color-gray-100);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.post-tags .tag-list a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================================================
   Archive / Category Pages
   ========================================================================== */

/* Category Banner */
.category-banner {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.category-banner::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border: 40px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.category-banner-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    display: block;
    margin-bottom: 8px;
}

.category-banner-title {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.category-banner-desc {
    font-size: 15px;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.category-banner-count {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.archive-header {
    padding: 40px 0 24px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
}

.archive-header h1 {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-dark);
}

.archive-description {
    font-size: 16px;
    color: var(--color-secondary);
    margin-top: 8px;
}

/* ==========================================================================
   Pagination — Sharp editorial
   ========================================================================== */

.pagination {
    padding: 40px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--color-white);
    color: var(--color-dark);
    border: 1px solid #e5e5e5;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: all 0.2s;
}

.pagination .page-numbers:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.pagination .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ==========================================================================
   Footer — Dark editorial
   ========================================================================== */

.site-footer {
    background: #0a0a0a;
    color: #999;
    margin-top: 60px;
}

.footer-accent {
    height: 4px;
    background: var(--color-primary);
}

.footer-main {
    padding: 50px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Footer brand */
.footer-brand {
    padding-right: 20px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    margin-bottom: 16px;
}

.footer-logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin-top: 12px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 6px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    color: #999;
    border: 1px solid #222;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Footer headings */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    font-family: var(--font-secondary);
}

/* Footer links */
.footer-links li {
    margin-bottom: 0;
}

.footer-links li a {
    display: block;
    font-size: 14px;
    color: #888;
    padding: 5px 0;
    border-bottom: 1px solid #151515;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links li a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

/* Footer recent posts */
.footer-recent li {
    margin-bottom: 0;
}

.footer-recent li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #151515;
    transition: all 0.2s;
}

.footer-recent li:first-child a {
    padding-top: 0;
}

.footer-recent li a:hover {
    padding-left: 4px;
}

.footer-recent-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    line-height: 1.4;
    font-family: var(--font-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.footer-recent li a:hover .footer-recent-title {
    color: var(--color-white);
}

.footer-recent-date {
    display: block;
    font-size: 11px;
    color: #555;
    margin-top: 3px;
    font-family: var(--font-secondary);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #555;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Search Page
   ========================================================================== */

.search-header {
    padding: 40px 0 24px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
}

.search-header h1 {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.search-header h1 span {
    color: var(--color-primary);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 140px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.error-404 h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.error-404 p {
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 36px;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.comments-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e5e5;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.comment-author {
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-secondary);
}

.comment-meta {
    font-size: 12px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.comment-body p {
    font-size: 15px;
    line-height: 1.7;
}

.comment-respond {
    margin-top: 32px;
}

.comment-reply-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    font-size: 15px;
    font-family: var(--font-secondary);
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
}

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

.comment-form .submit {
    padding: 14px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-form .submit:hover {
    background: var(--color-primary-dark);
}

/* ==========================================================================
   No Results
   ========================================================================== */

.no-results {
    text-align: center;
    padding: 80px 0;
}

.no-results h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.no-results p {
    color: var(--color-secondary);
}

/* ==========================================================================
   Live Search
   ========================================================================== */

.live-search-container {
    display: none;
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.live-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
}

.live-search-results li a {
    display: flex;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.live-search-results li a:hover {
    background: var(--color-gray-100);
}

.live-search-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    overflow: hidden;
}

.live-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-search-no-thumb {
    width: 100%;
    height: 100%;
    background: #eee;
}

.live-search-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.live-search-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-search-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-primary);
    line-height: 1.3;
}

.live-search-date {
    font-size: 11px;
    color: var(--color-secondary);
}

.live-search-all {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    border-top: 1px solid #eee;
    transition: background 0.15s;
}

.live-search-all:hover {
    background: var(--color-gray-100);
}

.live-search-empty {
    padding: 24px 16px;
    text-align: center;
    font-size: 14px;
    color: var(--color-secondary);
}

/* ==========================================================================
   Load More Button
   ========================================================================== */

#load-more-btn {
    cursor: pointer;
    transition: all 0.2s;
}

#load-more-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ==========================================================================
   Popular Posts Widget
   ========================================================================== */

.popular-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-secondary);
}

.popular-post-item a {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popular-post-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-primary);
    line-height: 1.3;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-item a:hover .popular-post-title {
    color: var(--color-primary);
}

.popular-post-views {
    font-size: 11px;
    color: var(--color-secondary);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.announcement-bar {
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.announcement-inner a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.announcement-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
    line-height: 1;
    padding: 0 4px;
    transition: opacity 0.2s;
}

.announcement-close:hover {
    opacity: 1;
}

/* ==========================================================================
   Banner
   ========================================================================== */

.sodev-banner {
    padding: 16px 0;
}

.sodev-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.sodev-banner a {
    display: block;
    transition: opacity 0.2s;
}

.sodev-banner a:hover {
    opacity: 0.9;
}

/* ==========================================================================
   Sidebar Layout
   ========================================================================== */

.container.has-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.container.has-sidebar .content-area {
    min-width: 0;
}

.container.has-sidebar .single-post-header {
    max-width: 100%;
}

.container.has-sidebar .single-content {
    max-width: 100%;
}

.container.has-sidebar .comments-area {
    max-width: 100%;
}

.sidebar {
    padding-top: 32px;
}

.sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar .widget {
    margin-bottom: 32px;
    padding: 0;
    background: none;
    border-left: none;
}

.sidebar .widget:last-child {
    margin-bottom: 0;
}

.sidebar .widget-title,
.sidebar .widget > h3,
.sidebar .wp-block-heading {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px !important;
    padding-bottom: 0;
    border-bottom: none;
    display: block;
    color: var(--color-dark);
    font-family: var(--font-secondary);
}

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

.sidebar .widget ul li {
    margin-bottom: 0;
}

.sidebar .widget ul li a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-gray-700);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: color 0.2s, padding-left 0.2s;
}

.sidebar .widget ul li:last-child a {
    border-bottom: none;
}

.sidebar .widget ul li a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

/* ==========================================================================
   Custom Widget Styles
   ========================================================================== */

/* Widget Title */
.sidebar-widget-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-dark);
    font-family: var(--font-secondary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

/* --- Son Yazılar (görselli) --- */
.sw-post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sw-post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity 0.2s;
}

.sw-post-item:last-child {
    border-bottom: none;
}

.sw-post-item:hover {
    opacity: 0.75;
}

.sw-post-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    overflow: hidden;
}

.sw-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-post-no-thumb {
    width: 100%;
    height: 100%;
    background: #eee;
}

.sw-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
}

.sw-post-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sw-post-date {
    font-size: 11px;
    color: #999;
}

/* --- Popüler Yazılar (görselli + numara) --- */
.sw-popular-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sw-popular-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity 0.2s;
}

.sw-popular-item:last-child {
    border-bottom: none;
}

.sw-popular-item:hover {
    opacity: 0.75;
}

.sw-popular-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    overflow: hidden;
    position: relative;
}

.sw-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-popular-rank {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-secondary);
}

/* --- Editörün Seçimi --- */
.sw-editors-picks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sw-editor-card {
    display: block;
    overflow: hidden;
    transition: opacity 0.2s;
}

.sw-editor-card:hover {
    opacity: 0.85;
}

.sw-editor-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin-bottom: 10px;
}

.sw-editor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sw-editor-card:hover .sw-editor-image img {
    transform: scale(1.03);
}

.sw-editor-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sw-editor-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sw-editor-info .sw-post-title {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-primary);
    -webkit-line-clamp: 3;
}

/* --- Kategoriler (etiketler) --- */
.sw-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sw-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.sw-cat-tag:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.sw-cat-tag:hover .sw-cat-count {
    background: rgba(255,255,255,0.25);
    color: var(--color-white);
}

.sw-cat-count {
    font-size: 10px;
    font-weight: 700;
    background: #f0f0f0;
    color: #888;
    padding: 1px 5px;
    transition: all 0.2s;
}

/* --- Sosyal Medya --- */
.sw-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sw-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    transition: opacity 0.2s;
}

.sw-social-btn:hover {
    opacity: 0.85;
}

.sw-social-twitter { background: #000; }
.sw-social-facebook { background: #1877F2; }
.sw-social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sw-social-youtube { background: #FF0000; }

/* --- Hakkımızda Kutusu --- */
.sw-about-box {
    text-align: center;
}

.sw-about-image {
    width: 100%;
    height: auto;
    margin-bottom: 14px;
}

.sw-about-title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.sw-about-text {
    font-size: 13px;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Sidebar Search */
.sidebar .widget_search label {
    display: none;
}

.sidebar .widget_search form,
.sidebar .wp-block-search {
    display: flex;
    gap: 0;
}

.sidebar .widget_search input[type="search"],
.sidebar .wp-block-search__input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 13px;
    font-family: var(--font-secondary);
    background: var(--color-white);
    outline: none;
}

.sidebar .widget_search input[type="search"]:focus,
.sidebar .wp-block-search__input:focus {
    border-color: var(--color-primary);
}

.sidebar .widget_search input[type="submit"],
.sidebar .wp-block-search__button {
    padding: 10px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar .widget_search input[type="submit"]:hover,
.sidebar .wp-block-search__button:hover {
    background: var(--color-primary-dark);
}

/* Sidebar Recent Comments */
.sidebar .widget_recent_comments ul li,
.sidebar .wp-block-latest-comments li {
    font-size: 13px;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--color-secondary);
}

.sidebar .widget_recent_comments ul li:last-child,
.sidebar .wp-block-latest-comments li:last-child {
    border-bottom: none;
}

/* Sidebar Categories — item count */
.sidebar .widget_categories li,
.sidebar .widget_archive li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar .widget_categories li a,
.sidebar .widget_archive li a {
    flex: 1;
    border-bottom: none;
}

/* Sidebar Calendar */
.sidebar .widget_calendar table {
    width: 100%;
    font-size: 13px;
    text-align: center;
}

.sidebar .widget_calendar th {
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    padding: 6px 0;
}

.sidebar .widget_calendar td {
    padding: 4px 0;
}

.sidebar .widget_calendar td a {
    color: var(--color-primary);
    font-weight: 700;
}

/* ==========================================================================
   Table of Contents
   ========================================================================== */

.toc {
    margin: 24px 0;
    border: 1px solid #e5e5e5;
    border-left: 3px solid var(--color-primary);
}

.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
}

.toc-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    font-family: var(--font-secondary);
    margin: 0;
}

.toc-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-secondary);
    padding: 4px;
    transition: transform 0.2s;
}

.toc.collapsed .toc-toggle {
    transform: rotate(-90deg);
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0 18px 16px;
    counter-reset: toc;
}

.toc.collapsed .toc-list {
    display: none;
}

.toc-list li {
    counter-increment: toc;
    margin-bottom: 0;
}

.toc-list li a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-gray-700);
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s, padding-left 0.2s;
    text-decoration: none;
}

.toc-list li:last-child a {
    border-bottom: none;
}

.toc-list li a::before {
    content: counter(toc);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    font-family: var(--font-secondary);
}

.toc-list li a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.toc-list li.toc-sub a {
    padding-left: 30px;
    font-size: 13px;
    color: var(--color-secondary);
}

.toc-list li.toc-sub a::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* Scroll target offset */
h2[id], h3[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* ==========================================================================
   Dark Mode
   ========================================================================== */

.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.dark-mode-toggle:hover {
    color: var(--color-primary);
}

/* Dark Mode Styles */
body.dark-mode {
    --color-dark: #e5e5e5;
    --color-text: #e5e5e5;
    --color-gray-700: #ccc;
    --color-gray-500: #999;
    --color-gray-100: #1a1a1a;
    --color-white: #111;
    --color-secondary: #999;
    background: #0d0d0d;
    color: #e5e5e5;
}

body.dark-mode .site-header {
    background: #111;
    border-bottom-color: var(--color-primary);
}

body.dark-mode .primary-menu > li > a {
    color: #ccc;
}

body.dark-mode .primary-menu > li > a:hover {
    color: var(--color-primary);
}

body.dark-mode .search-overlay {
    background: #111;
}

body.dark-mode .search-overlay input[type="search"] {
    background: #1a1a1a;
    border-color: #333;
    color: #e5e5e5;
}

body.dark-mode .post-card {
    background: #151515;
    border-color: #222;
}

body.dark-mode .post-card-title {
    color: #e5e5e5;
}

body.dark-mode .post-card-category {
    color: var(--color-primary);
}

body.dark-mode .section-title {
    color: #e5e5e5;
}

body.dark-mode .btn-outline {
    border-color: #555;
    color: #ccc;
}

body.dark-mode .btn-outline:hover {
    background: #e5e5e5;
    color: #111;
}

body.dark-mode .single-post-header h1 {
    color: #e5e5e5;
}

body.dark-mode .single-post-meta {
    border-bottom-color: #222;
}

body.dark-mode .single-content .entry-content {
    color: #ccc;
}

body.dark-mode .single-content .entry-content blockquote {
    background: #1a1a1a;
    border-left-color: var(--color-primary);
}

body.dark-mode .single-content .entry-content h2,
body.dark-mode .single-content .entry-content h3 {
    color: #e5e5e5;
}

body.dark-mode .author-box {
    background: #151515;
    border-left-color: var(--color-primary);
}

body.dark-mode .toc {
    background: #151515;
    border-color: #222;
    border-left-color: var(--color-primary);
}

body.dark-mode .toc-list li a {
    color: #ccc;
    border-bottom-color: #1a1a1a;
}

body.dark-mode .breadcrumb {
    border-bottom-color: #222;
}

body.dark-mode .category-banner {
    background: var(--color-primary);
}

body.dark-mode .pagination .page-numbers {
    background: #151515;
    border-color: #222;
    color: #ccc;
}

body.dark-mode .sidebar .widget-title,
body.dark-mode .sidebar-widget-title {
    color: #e5e5e5;
}

body.dark-mode .sidebar .widget ul li a {
    color: #ccc;
    border-bottom-color: #1a1a1a;
}

body.dark-mode .sw-cat-tag {
    border-color: #333;
    color: #ccc;
}

body.dark-mode .sw-cat-count {
    background: #222;
}

body.dark-mode .sw-post-title {
    color: #e5e5e5;
}

body.dark-mode .hero-numbered-list {
    background: #151515;
    border-color: #222;
}

body.dark-mode .hero-numbered-title {
    color: #e5e5e5;
}

body.dark-mode .hero-numbered-item:hover {
    background: #1a1a1a;
}

body.dark-mode .newsletter-inner {
    background: #151515;
}

body.dark-mode .newsletter-form input[type="email"] {
    background: #0d0d0d;
    border-color: #222;
    color: #e5e5e5;
}

body.dark-mode .related-posts {
    background: #111;
}

body.dark-mode .comment-form textarea,
body.dark-mode .comment-form input[type="text"],
body.dark-mode .comment-form input[type="email"],
body.dark-mode .comment-form input[type="url"] {
    background: #1a1a1a;
    border-color: #333;
    color: #e5e5e5;
}

body.dark-mode .announcement-bar {
    opacity: 0.95;
}

body.dark-mode .logo-main {
    color: #e5e5e5;
}

body.dark-mode .dark-mode-toggle {
    color: #ccc;
}

/* Hero alanları dark mode'dan etkilenmemeli — kendi overlay'leri var */
body.dark-mode .hero-overlay,
body.dark-mode .hero-fullwidth-overlay {
    color: #fff;
}

body.dark-mode .hero-title,
body.dark-mode .hero-title-sm,
body.dark-mode .hero-carousel-title,
body.dark-mode .hero-fullwidth-title,
body.dark-mode .hero-meta,
body.dark-mode .hero-category {
    color: #fff;
}

body.dark-mode .hero-carousel-excerpt,
body.dark-mode .hero-fullwidth-excerpt {
    color: rgba(255,255,255,0.8);
}

/* Hero list sağ panel */
body.dark-mode .hero-list-items {
    background: #111;
}

body.dark-mode .hero-list-title {
    color: #e5e5e5;
}

body.dark-mode .hero-list-item {
    border-bottom-color: #222;
}

/* Hero numbered sağ panel */
body.dark-mode .hero-numbered-list {
    background: #151515;
    border-color: #222;
}

body.dark-mode .hero-numbered-item {
    border-bottom-color: #1a1a1a;
}

body.dark-mode .hero-numbered-item:hover {
    background: #1a1a1a;
}

body.dark-mode .hero-numbered-title {
    color: #e5e5e5;
}

/* Hero fullwidth alt bant */
body.dark-mode .hero-fullwidth-sub-item {
    background: #151515;
}

body.dark-mode .hero-fullwidth-sub-item:hover {
    background: #1a1a1a;
}

/* Hero carousel dots */
body.dark-mode .hero-carousel-dot {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

body.dark-mode .hero-carousel-dot.active {
    background: var(--color-primary);
}

/* Hero 4/5 grid items */
body.dark-mode .hero-item-top .hero-overlay,
body.dark-mode .hero-item-bottom .hero-overlay {
    color: #fff;
}

/* Sidebar banner */
body.dark-mode .sodev-banner {
    opacity: 0.95;
}

/* Footer zaten koyu, dokunma */
body.dark-mode .site-footer {
    background: #050505;
}

/* Author page */
body.dark-mode .author-profile {
    background: #111;
    border-bottom-color: #222;
}

body.dark-mode .author-profile-name {
    color: #e5e5e5;
}

body.dark-mode .author-profile-count {
    background: #1a1a1a;
    border-color: #333;
    color: #ccc;
}

body.dark-mode .author-post-link:hover {
    background: #151515;
}

body.dark-mode .author-post-title {
    color: #e5e5e5;
}

body.dark-mode .author-post-item {
    border-bottom-color: #1a1a1a;
}

/* Archive header */
body.dark-mode .archive-header {
    border-bottom-color: #222;
}

body.dark-mode .archive-header h1 {
    color: #e5e5e5;
}

/* Search header */
body.dark-mode .search-header {
    border-bottom-color: #222;
}

body.dark-mode .search-header h1 {
    color: #e5e5e5;
}

/* 404 */
body.dark-mode .error-404 h2 {
    color: #e5e5e5;
}

/* Author card (yazarlar sayfası) */
body.dark-mode .author-card {
    background: #151515;
    border-color: #222;
}

body.dark-mode .author-card-name a {
    color: #e5e5e5;
}

/* Share buttons */
body.dark-mode .share-btn {
    border-color: #333;
    background: #151515;
    color: #999;
}

/* Tags */
body.dark-mode .post-tags .tag-list a {
    background: #1a1a1a;
    color: #999;
}

/* Live search */
body.dark-mode .live-search-container {
    background: #151515;
    border-color: #222;
}

body.dark-mode .live-search-results li a:hover {
    background: #1a1a1a;
}

body.dark-mode .live-search-title {
    color: #e5e5e5;
}

/* Comments */
body.dark-mode .comments-title {
    color: #e5e5e5;
    border-bottom-color: #222;
}

body.dark-mode .comment-list .comment {
    border-bottom-color: #1a1a1a;
}

body.dark-mode .comment-reply-title {
    color: #e5e5e5;
}

/* Issues grid */
body.dark-mode .issue-card {
    background: #151515;
    border-color: #222;
}

body.dark-mode .issue-card-info h3 {
    color: #e5e5e5;
}

/* Mega menu etkilenmemeli */
body.dark-mode .mega-menu-dropdown {
    background: var(--color-primary);
}

body.dark-mode .mega-menu-list li a {
    color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
    padding: 14px 0;
    font-size: 12px;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: var(--color-secondary);
    transition: color 0.2s;
}

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

.breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.4;
}

.breadcrumb .current {
    color: var(--color-dark);
    font-weight: 600;
    display: inline-block;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

/* ==========================================================================
   Share Buttons
   ========================================================================== */

.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.share-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-right: 4px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e5e5e5;
    background: var(--color-white);
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    color: var(--color-white);
    border-color: transparent;
}

.share-twitter:hover {
    background: #000;
}

.share-facebook:hover {
    background: #1877F2;
}

.share-whatsapp:hover {
    background: #25D366;
}

.share-copy:hover {
    background: var(--color-primary);
}

.share-copy.copied {
    background: #059669;
    color: var(--color-white);
    border-color: #059669;
}

/* ==========================================================================
   Reading Time
   ========================================================================== */

.reading-time::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--color-secondary);
    border-radius: 50%;
    margin-right: 4px;
    position: relative;
    top: 2px;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */

.newsletter-section {
    padding: 0;
    margin-top: 24px;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
    background: var(--color-dark);
    color: var(--color-white);
}

.newsletter-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 4px;
}

.newsletter-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.newsletter-form input[type="email"] {
    padding: 14px 20px;
    width: 280px;
    border: 2px solid #333;
    background: #111;
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--font-secondary);
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input[type="email"]::placeholder {
    color: #666;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--color-primary);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* ==========================================================================
   Issues Grid (Geçmiş Sayılar)
   ========================================================================== */

.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 40px;
}

.issue-card {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.issue-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.issue-card-link {
    display: block;
}

.issue-card-cover {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
    background: #f0f0f0;
}

.issue-card-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.issue-card:hover .issue-card-cover img {
    transform: scale(1.03);
}

.issue-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
}

.issue-card-info {
    padding: 14px 16px;
}

.issue-card-info h3 {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.issue-card-date {
    font-size: 12px;
    color: var(--color-secondary);
}

/* ==========================================================================
   Authors Grid
   ========================================================================== */

.authors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 32px 0 60px;
}

.author-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.2s;
}

.author-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.author-card-avatar {
    flex-shrink: 0;
}

.author-card-avatar img {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.author-card-name {
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 4px;
}

.author-card-name a {
    transition: color 0.2s;
}

.author-card-name a:hover {
    color: var(--color-primary);
}

.author-card-bio {
    font-size: 13px;
    color: var(--color-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.author-card-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Author Box (single post) — link style
   ========================================================================== */

.author-box-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 6px;
    display: inline-block;
    transition: opacity 0.2s;
}

.author-box:hover .author-box-link {
    opacity: 0.7;
}

/* ==========================================================================
   Author Profile Page
   ========================================================================== */

.author-profile {
    background: var(--color-gray-100);
    border-bottom: 1px solid #e5e5e5;
    padding: 40px 0;
}

.author-profile-inner {
    display: flex;
    gap: 24px;
    align-items: center;
}

.author-profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.author-profile-name {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 6px;
}

.author-profile-bio {
    font-size: 15px;
    color: var(--color-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 12px;
}

.author-profile-stats {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-profile-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    background: var(--color-white);
    padding: 4px 12px;
    border: 1px solid #e5e5e5;
}

.author-profile-website {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    transition: opacity 0.2s;
}

.author-profile-website:hover {
    opacity: 0.7;
}

/* Author Posts List */
.author-posts-list {
    padding: 24px 0 40px;
}

.author-post-item {
    border-bottom: 1px solid #eee;
}

.author-post-item:first-child {
    border-top: 1px solid #eee;
}

.author-post-link {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    transition: background 0.15s;
}

.author-post-link:hover {
    background: var(--color-gray-100);
    margin: 0 -12px;
    padding: 20px 12px;
}

.author-post-thumb {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    overflow: hidden;
}

.author-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.author-post-link:hover .author-post-thumb img {
    transform: scale(1.03);
}

.author-post-no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eee, #ddd);
}

.author-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.author-post-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-post-title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1.3;
    color: var(--color-dark);
    transition: color 0.2s;
}

.author-post-link:hover .author-post-title {
    color: var(--color-primary);
}

.author-post-excerpt {
    font-size: 14px;
    color: var(--color-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-post-date {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* ==========================================================================
   Related Posts
   ========================================================================== */

.related-posts {
    padding: 50px 0;
    background: var(--color-gray-100);
    margin-top: 40px;
}

/* ==========================================================================
   Hakkımızda Sayfası
   ========================================================================== */

.about-banner {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 52px 0;
    text-align: center;
}

.about-banner-title {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.about-banner-subtitle {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Misyon Vizyon */
.about-mv {
    padding: 48px 0;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-mv-card {
    padding: 32px;
    border: 1px solid #e5e5e5;
    border-top: 3px solid var(--color-primary);
}

.about-mv-icon {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.about-mv-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 12px;
}

.about-mv-card p {
    font-size: 15px;
    color: var(--color-secondary);
    line-height: 1.7;
}

/* Tarihçe */
.about-history {
    padding: 0 0 48px;
}

.about-history-content {
    max-width: 780px;
}

.about-history-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 1.2em;
}

/* Ekip */
.about-team {
    padding: 48px 0 60px;
    background: var(--color-gray-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    text-align: center;
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.team-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.team-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.team-card-info {
    padding: 16px;
}

.team-card-name {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 2px;
}

.team-card-role {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card-bio {
    font-size: 13px;
    color: var(--color-secondary);
    line-height: 1.5;
    margin-top: 8px;
}

/* ==========================================================================
   İletişim Sayfası
   ========================================================================== */

.contact-banner {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 52px 0;
    text-align: center;
}

.contact-banner-title {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 6px;
}

.contact-banner-subtitle {
    font-size: 15px;
    opacity: 0.6;
}

.contact-page {
    padding: 48px 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.contact-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

/* Form */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-field {
    margin-bottom: 16px;
}

.contact-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: var(--font-secondary);
    outline: none;
    transition: border-color 0.2s;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-color: var(--color-primary);
}

.btn-contact-submit {
    padding: 14px 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-contact-submit:hover {
    background: var(--color-primary-dark);
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #ecfdf5;
    border-left: 3px solid #059669;
    color: #065f46;
    font-size: 14px;
    font-weight: 600;
}

.contact-error {
    padding: 12px 16px;
    background: #fef2f2;
    border-left: 3px solid #dc2626;
    color: #991b1b;
    font-size: 14px;
    margin-bottom: 16px;
}

/* İletişim Bilgileri */
.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.contact-info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.contact-info-item a {
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 600;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

.contact-info-item p {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

/* Sosyal */
.contact-social {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.contact-social-links {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.contact-social-link {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e5e5e5;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.contact-social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Harita */
.contact-map {
    margin-top: 40px;
    border: 1px solid #e5e5e5;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    display: block;
    border: none;
}

/* ==========================================================================
   Dark Mode — Kurumsal Sayfalar
   ========================================================================== */

body.dark-mode .about-banner {
    background: var(--color-primary);
}

body.dark-mode .about-mv-card {
    background: #151515;
    border-color: #222;
}

body.dark-mode .about-mv-title {
    color: #e5e5e5;
}

body.dark-mode .about-team {
    background: #111;
}

body.dark-mode .team-card {
    background: #151515;
    border-color: #222;
}

body.dark-mode .team-card-name {
    color: #e5e5e5;
}

body.dark-mode .contact-banner {
    background: #0a0a0a;
}

body.dark-mode .contact-form-field input,
body.dark-mode .contact-form-field textarea {
    background: #1a1a1a;
    border-color: #333;
    color: #e5e5e5;
}

body.dark-mode .contact-info-icon {
    background: #1a1a1a;
}

body.dark-mode .contact-info-item a {
    color: #e5e5e5;
}

body.dark-mode .contact-social-link {
    border-color: #333;
    color: #ccc;
}

body.dark-mode .contact-map {
    border-color: #222;
}

/* ==========================================================================
   WordPress Core
   ========================================================================== */

.alignleft {
    float: left;
    margin: 0 1.5em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1.5em;
}

.aligncenter {
    display: block;
    margin: 1em auto;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1em;
}

.wp-caption-text {
    font-size: 12px;
    color: var(--color-secondary);
    text-align: center;
    padding-top: 8px;
    font-style: italic;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
