/**
 * Sade Anahtar Tema - Ana Stil Dosyası
 * Kurumsal ve sade tasarım
 * Version: 1.0.5 - Sade mobil menü eklendi
 */

/* ============================================
   CSS Değişkenleri (Tema Renkleri & Tipografi)
   ============================================ */
:root {
    /* Renkler */
    --primary-color: #1e3a8a;
    --secondary-color: #dc2626;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;

    /* Tipografi - Font Ailesi */
    --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Tipografi - Font Boyutları */
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-xs: 12px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 40px;

    /* Tipografi - Heading Boyutları */
    --font-size-h1: 40px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;

    /* Tipografi - Font Ağırlıkları */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Tipografi - Line Height */
    --line-height-base: 1.6;
    --line-height-heading: 1.2;
    --line-height-tight: 1.25;

    /* Gölgeler */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Diğer */
    --transition: all 0.3s ease;
    --container-width: 1028px;
    --spacing-unit: 1rem;

    /* Overlay Değişkenleri */
    --overlay-color: #000000;
    --overlay-opacity: 0.75;
    --overlay-z-index: 1;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    /* Taşmayı engelle */
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
a:focus {
    color: var(--secondary-color);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 767px) {
    .container {
        padding: 0 12px;
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    margin-bottom: var(--spacing-unit);
    color: var(--text-color);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

p {
    margin-bottom: var(--spacing-unit);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1e40af;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #b91c1c;
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: #ffffff;
    padding: 0.75rem 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    flex-wrap: wrap;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-bar-announcement {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-announcement:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.announcement-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s ease;
}

.top-bar-announcement:hover .announcement-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.announcement-icon svg {
    width: 14px;
    height: 14px;
}

.announcement-text {
    color: #ffffff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.top-bar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
}

.top-bar-contact-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.top-bar-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.top-bar-contact-item:hover svg {
    transform: scale(1.1);
}

.top-bar-datetime {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    padding: 0.375rem 0.875rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0 0.875rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.top-bar-action-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

.top-bar-action-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.top-bar-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 0.4375rem 0.875rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 0.5rem;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

.top-bar-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.top-bar-whatsapp svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.top-bar-whatsapp svg {
    flex-shrink: 0;
}

.top-bar-social {
    flex-shrink: 0;
}

.top-bar-social .social-links {
    gap: 0.5rem;
}

.top-bar-social .social-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.top-bar-social .social-links a,
.top-bar-social .social-link {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px) !important;
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 0 !important;
    overflow: visible !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.top-bar-social .social-links a svg,
.top-bar-social .social-link svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

.top-bar-social .social-links a:hover,
.top-bar-social .social-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.top-bar-social .social-link-facebook:hover {
    background-color: #1877F2;
}

.top-bar-social .social-link-twitter:hover {
    background-color: #000000;
}

.top-bar-social .social-link-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.top-bar-social .social-link-youtube:hover {
    background-color: #FF0000;
}

.top-bar-social .social-link-linkedin:hover {
    background-color: #0077B5;
}

@media (max-width: 767px) {
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.75rem;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-bar-announcement {
        justify-content: center;
    }

    .announcement-text {
        font-size: 0.75rem;
    }
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.875rem 0;
}

.top-bar {
    position: relative;
    z-index: 1000;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.site-header.scrolled .header-inner {
    gap: 1.5rem;
    min-height: 55px;
}

.site-header.scrolled .custom-logo-link img {
    max-height: 50px;
}

.site-header.scrolled .main-navigation a {
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    min-height: 60px;
    flex-wrap: nowrap;
}

.site-branding {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 280px;
    flex-shrink: 0;
    flex: 0 0 auto;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.custom-logo-link img {
    max-height: 60px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.custom-logo-link .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: calc(100% - 500px);
    overflow: visible;
    margin: 0 auto;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

/* Menü tek satırda kalsın - zorla */
.main-navigation ul,
.primary-menu-list,
.ap-nav-inline {
    flex-wrap: nowrap !important;
    overflow: hidden;
}

@media (max-width: 1023px) {

    .main-navigation ul,
    .primary-menu-list,
    .ap-nav-inline {
        display: none !important;
    }
}

@media (min-width: 1024px) {

    .main-navigation ul,
    .primary-menu-list,
    .ap-nav-inline {
        display: flex !important;
    }
}

.main-navigation li,
.ap-nav-inline li {
    flex-shrink: 0 !important;
}

.main-navigation ul,
.primary-menu-list,
.main-navigation .desktop-menu,
.ap-nav-inline {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    justify-content: center;
}

@media (max-width: 1023px) {

    .main-navigation ul,
    .primary-menu-list,
    .main-navigation .desktop-menu,
    .ap-nav-inline {
        display: none !important;
    }
}

@media (min-width: 1024px) {

    .main-navigation ul,
    .primary-menu-list,
    .main-navigation .desktop-menu,
    .ap-nav-inline {
        display: flex !important;
    }
}

/* Menü separator/divider gizle */
.main-navigation li.menu-item-separator,
.main-navigation li.separator,
.primary-menu-list li.menu-item-separator,
.primary-menu-list li.separator,
.main-navigation li:has(> a:empty),
.primary-menu-list li:has(> a:empty) {
    display: none !important;
}

.main-navigation li {
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
}

.main-navigation li.menu-item-has-children:hover>.sub-menu,
.main-navigation .menu-item-has-children:hover>.sub-menu,
.primary-menu-list>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    white-space: nowrap;
    line-height: 1.4;
    height: 100%;
    letter-spacing: 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation a:hover::after,
.main-navigation a:focus::after {
    width: calc(100% - 1.5rem);
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--primary-color);
    background-color: rgba(30, 58, 138, 0.05);
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.25rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    vertical-align: middle;
    flex-shrink: 0;
}

.main-navigation li.menu-item-has-children:hover>a>.dropdown-arrow {
    transform: rotate(180deg);
}

/* Parent li elementleri relative olmalı ki sub-menu ona göre konumlansın */
.main-navigation ul li,
.primary-menu-list>li {
    position: relative;
}

/* Dropdown Menü */
.main-navigation .sub-menu,
.main-navigation ul .sub-menu,
.primary-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    /* Genişliği artırdık */
    width: max-content;
    /* İçeriğe göre uza */
    max-width: 300px;
    /* Çok da uzamasın */
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Daha belirgin gölge */
    border-radius: 8px;
    /* Köşeler */
    padding: 10px 0;
    margin-top: 10px;
    /* Biraz boşluk */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    display: flex;
    /* Dikey sıralama için */
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Hafif çerçeve */
}

/* Dropdown oku (Üçgen) */
.main-navigation .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navigation li.menu-item-has-children:hover>.sub-menu,
.main-navigation .menu-item-has-children:hover>.sub-menu,
.primary-menu-list>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sub-menu li {
    margin: 0;
    width: 100%;
    position: relative;
    /* Alt seviye menüler için */
}

.sub-menu a {
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    display: block;
    border-radius: 0;
    white-space: normal;
    /* Uzun metinler sarılsın */
    line-height: 1.4;
    transition: all 0.2s ease;
}

.sub-menu a::after {
    display: none;
}

.sub-menu a:hover,
.sub-menu a:focus {
    background-color: #f8fafc;
    color: var(--primary-color);
    padding-left: 25px;
    /* Hover efekti */
}

/* Çok seviyeli dropdown (Sağa açılır) */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 10px;
    margin-top: 0;
}

.sub-menu .sub-menu::before {
    top: 15px;
    left: -6px;
    transform: rotate(-45deg);
}

.sub-menu .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex-shrink: 0;
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
    margin-left: 1rem;
    white-space: nowrap;
}

/* Buton menüyle aynı hizada */
.header-actions .btn-header-donate {
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-header-donate {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Renk, padding, font-size, border-radius ve box-shadow Customizer'dan gelir */
}

.btn-header-donate:hover,
.btn-header-donate:focus {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .btn-header-donate {
        display: none;
    }
}

/* ============================================
   Hero Slider Section
   ============================================ */
.hero-slider-section {
    position: relative;
    width: 100%;
    max-width: 1028px;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1.05);
}

/* Navigation Buttons */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.hero-slider-nav:hover {
    background-color: #1e40af;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Dots Navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.hero-dot:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    background-color: rgba(30, 58, 138, 0.5);
}


/* ============================================
   Intro Section (Hero Altı Başlık ve Paragraf)
   ============================================ */
.intro-section {
    padding: 4rem 0;
    text-align: center;
    max-width: 1028px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hero-slider-section {
        margin-top: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-slider {
        height: 500px !important;
    }

    .hero-slider-nav {
        display: none !important;
        /* Okları mobilde kaldır, çakışmayı önle */
    }

    .hero-slider-dots {
        bottom: 15px !important;
        gap: 8px !important;
    }

    .hero-dot {
        width: 10px !important;
        height: 10px !important;
    }

    .intro-section {
        padding: 2rem 0 !important;
        /* Devasa boşluğu daralt */
    }

    .intro-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .intro-text {
        font-size: 0.9375rem !important;
        line-height: 1.5 !important;
        padding: 0 15px !important;
    }
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .intro-section {
        padding: 2rem 1rem !important;
    }

    .intro-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.3 !important;
    }

    .intro-text {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
    }
}

/* ============================================
   Global Mobile Layout İyileştirmeleri
   ============================================ */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .site-header .container,
    .top-bar .container,
    .ap-header-inner {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .top-bar-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }

    .top-bar-right {
        width: 100% !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        row-gap: 0.5rem !important;
    }

    .ap-header-inner,
    .header-inner {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        align-items: center !important;
        padding: 0.75rem 1rem !important;
    }

    .ap-logo,
    .site-branding {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 60px) !important;
    }

    .header-actions {
        display: none !important;
    }

    .ap-burger {
        display: flex !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        order: 2 !important;
        margin-left: auto !important;
    }

    .action-button-text {
        font-size: 1rem;
        line-height: 1.4;
        white-space: normal;
        max-width: calc(100% - 2rem);
    }
}

/* ============================================
   Action Buttons Section (Bağış Yap, Üye Ol)
   ============================================ */
.action-buttons-section {
    padding: 3rem 0 4rem;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1028px;
    margin: 0 auto;
    justify-items: center;
}

@media (min-width: 768px) {

    /* Header & Navigation - Tablet+ */
    .header-inner {
        display: flex;
        gap: 1.5rem;
        min-height: 60px;
    }

    .main-navigation {
        margin: 0 auto;
        flex: 1 1 auto;
        max-width: calc(100% - 500px);
    }

    /* Desktop'ta normal menü görünür */
    .main-navigation>ul,
    .main-navigation .primary-menu-list.desktop-menu,
    .main-navigation .desktop-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        transform: none !important;
        background-color: transparent !important;
    }

    /* Mobil menü desktop'ta gizli */
    .main-navigation .mobile-menu-panel {
        display: none !important;
    }

    /* Mobil menü paneli desktop'ta gizli */
    .mobile-menu-panel {
        display: none !important;
    }

    .site-branding {
        flex: 0 0 auto;
        max-width: 280px;
    }

    .header-actions {
        flex: 0 0 auto;
        margin-left: 1rem;
    }

    .main-navigation ul,
    .primary-menu-list {
        gap: 0.75rem;
        flex-wrap: nowrap !important;
    }

    .main-navigation a {
        font-size: 0.9375rem;
        padding: 0.5rem 0.75rem;
        letter-spacing: 0;
    }

    .action-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.action-button {
    display: block;
    position: relative;
    width: 100%;
    max-width: 494px;
    height: 195px;
    text-decoration: none;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.action-button:hover,
.action-button:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.action-button-image {
    width: 100%;
    max-width: 494px;
    height: 195px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.action-button-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: #ffffff;
}

.action-button-text {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.action-button-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .action-buttons-section {
        padding: 2rem 0 !important;
    }

    .action-buttons-grid {
        gap: 1rem !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    .action-button {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 150px !important;
        aspect-ratio: 16 / 9 !important;
    }

    .action-button-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .action-button-text {
        font-size: 0.875rem !important;
        padding: 0.5rem 1rem !important;
        white-space: normal !important;
    }
}


/* ============================================
   Policies Section (Politikalar)
   ============================================ */
.policies-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
    width: 100%;
}

.policies-section .container {
    max-width: 1028px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1028px) {
    .policies-section .container {
        padding: 0;
    }
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .policies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.policy-card {
    background-color: var(--bg-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: none;
    /* Çerçeve kaldırıldı */
}

/* ============================================
   Mobil Menü (Overlay) İçin Dropdown Stilleri
   ============================================ */
.mobile-nav-list .menu-item-has-children>a {
    position: relative;
    padding-right: 40px;
    /* Ok için yer aç */
}

.mobile-nav-list .menu-item-has-children>a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* Açık durumdaki ok */
.mobile-nav-list .menu-item-has-children.open>a::after {
    transform: translateY(-50%) rotate(-135deg);
    /* Yukarı bakacak */
}

/* Alt menüyü gizle */
.mobile-nav-list .sub-menu {
    display: none;
    padding-left: 20px;
    background: rgba(0, 0, 0, 0.02);
    /* Hafif koyu zemin */
}

/* Açık durumda göster */
.mobile-nav-list .menu-item-has-children.open>.sub-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Donation Page (Bağış Sayfası)
   ============================================ */
.donation-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 6rem 0;
    margin-bottom: 0;
}

.donation-header .page-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.donation-header .page-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bank-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.bank-card-header {
    background: #f8fafc;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #1e3a8a;
}

.bank-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    text-transform: uppercase;
}

.bank-card-body {
    padding: 2rem;
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.iban-wrapper {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #e2e8f0;
}

.iban-wrapper code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 1rem;
    color: #0f172a;
    letter-spacing: 0.05em;
    word-break: break-all;
}

.copy-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
}

@media (max-width: 767px) {
    .donation-header {
        padding: 4rem 0 !important;
    }

    .donation-header .page-title {
        font-size: 2rem !important;
    }

    .bank-accounts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .bank-card-body {
        padding: 1.5rem !important;
    }

    .iban-wrapper code {
        font-size: 0.875rem !important;
    }
}

.policy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.policy-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.policy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.policy-card:hover .policy-image img {
    transform: scale(1.02);
}

.policy-content {
    padding: 3rem;
    /* Padding artırıldı (2rem -> 3rem) */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.policy-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    line-height: var(--line-height-heading);
}

.policy-title a {
    color: var(--text-color);
    transition: var(--transition);
}

.policy-title a:hover {
    color: var(--primary-color);
}

.policy-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: var(--line-height-base);
    font-size: var(--font-size-base);
}

.policy-link {
    display: inline-block;
    margin-top: auto;
    color: var(--white);
    background-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.policy-link:hover,
.policy-link:focus {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Policies & News Banner Section
   ============================================ */
.policies-news-banner-section {
    width: 100%;
    padding: 3rem 0;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
}

.policies-news-banner {
    width: 1028px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.policies-news-banner .banner-image {
    width: 100%;
    max-width: 1028px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   Posts Grid
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* ============================================
   Post Cards
   ============================================ */
.post-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card .card-footer {
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.post-card .card-footer * {
    opacity: 1 !important;
    visibility: visible !important;
}

.post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-thumbnail,
.post-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--bg-light);
    display: block;
}

.card-thumbnail img,
.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.post-card:hover .card-thumbnail img,
.post-card:hover .post-thumbnail img {
    transform: scale(1.08);
}

.card-content,
.post-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: visible;
}

.entry-title,
.card-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.entry-title a,
.card-title a {
    color: var(--text-color);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry-title a:hover,
.card-title a:hover {
    color: var(--primary-color);
}

.entry-meta,
.card-meta {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.entry-summary,
.card-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry-footer,
.card-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
}

.post-card .card-footer .btn,
.post-card .card-footer .btn-secondary,
.post-card .card-footer .btn-sm,
.card-footer .btn,
.card-footer .btn-secondary,
.card-footer .btn-sm,
.entry-footer .btn,
.entry-footer .btn-secondary {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    font-size: var(--font-size-sm) !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 6px !important;
    transition: var(--transition);
    text-decoration: none !important;
    font-weight: var(--font-weight-semibold) !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
    min-height: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

.post-card .card-footer .btn:hover,
.post-card .card-footer .btn-secondary:hover,
.post-card .card-footer .btn-sm:hover,
.card-footer .btn:hover,
.card-footer .btn-secondary:hover,
.card-footer .btn-sm:hover,
.entry-footer .btn:hover,
.entry-footer .btn-secondary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    text-align: left;
    margin: 2rem 0 1.5rem;
    color: var(--text-color);
}

.featured-posts {
    max-width: 1028px;
    width: 100%;
    margin: 0 auto;
}

.featured-posts .section-title {
    margin-bottom: 1.5rem;
}

/* ============================================
   Single Post
   ============================================ */
.entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.entry-content {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.entry-content img {
    margin: 2rem 0;
    border-radius: 8px;
}

.entry-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

.entry-footer span {
    margin-right: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: #1f2937;
    color: #ffffff;
    margin-top: 4rem;
    padding: 3.5rem 0 0;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}

.footer-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 767px) {
    .footer-wrapper {
        padding: 0 1rem !important;
    }
}

@media (min-width: 1280px) {
    .footer-wrapper {
        padding: 0 3rem;
    }
}

.footer-main-content {
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.8fr repeat(4, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .footer-grid {
        gap: 3rem;
    }
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .footer-logo-section {
        grid-column: 1 / -1;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        align-items: center;
    }
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .footer-cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.footer-cta-primary,
.footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.footer-cta-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.footer-cta-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .footer-site-title {
        font-size: 1.625rem;
        margin: 0 0 1rem 0;
    }
}

@media (min-width: 1024px) {
    .footer-site-title {
        font-size: 1.75rem;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
    max-width: 100%;
}

@media (min-width: 768px) {
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.75;
    }
}

.footer-social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-social-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-social-title:hover::after {
    width: 60px;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-column-title {
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    position: relative;
    padding-bottom: 0.75rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .footer-column-title {
        font-size: 1.0625rem;
        margin-bottom: 1.125rem;
    }
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-column-title:hover::after {
    width: 60px;
}

.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-menu-list li {
    margin: 0;
}

.footer-menu-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-menu-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Footer Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
    min-width: 0;
}

@media (min-width: 768px) {
    .footer-contact-item {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-contact-item:hover svg {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

/* Footer Bottom Section */
.footer-bottom-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: transparent;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

@media (max-width: 767px) {
    .footer-bottom-wrapper {
        gap: 1.5rem;
    }

    .footer-bottom-left p {
        white-space: normal;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .footer-bottom-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
}

.footer-bottom-left {
    flex: 0 0 auto;
    order: 1;
}

@media (min-width: 768px) {
    .footer-bottom-left {
        text-align: left;
        flex: 1 1 auto;
        min-width: 0;
    }
}

.footer-bottom-left p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    white-space: nowrap;
}

.footer-bottom-left strong {
    font-weight: 700;
    color: #ffffff;
}

.footer-social-icons {
    order: 2;
    flex: 0 0 auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-social-icons .social-links {
    gap: 0.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    list-style: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-social-icons .social-links li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-social-icons .social-links a,
.footer-social-icons .social-link {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.footer-social-icons .social-links a svg,
.footer-social-icons .social-link svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    display: block !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    fill: currentColor !important;
}

.footer-social-icons .social-links a:hover,
.footer-social-icons .social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-social-icons .social-link-facebook:hover {
    background-color: #1877F2 !important;
    border-color: #1877F2;
    color: #ffffff;
}

.footer-social-icons .social-link-twitter:hover {
    background-color: #000000 !important;
    border-color: #000000;
    color: #ffffff;
}

.footer-social-icons .social-link-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: transparent;
    color: #ffffff;
}

.footer-social-icons .social-link-youtube:hover {
    background-color: #FF0000 !important;
    border-color: #FF0000;
    color: #ffffff;
}

.footer-social-icons .social-link-linkedin:hover {
    background-color: #0077B5 !important;
    border-color: #0077B5;
    color: #ffffff;
}

.footer-bottom-right {
    order: 3;
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-right {
        justify-content: flex-end;
        flex: 1 1 auto;
        min-width: 0;
    }
}

.utility-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0.25rem 0;
}

.utility-link:hover {
    color: #ffffff;
}

.utility-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    padding: 0 0.25rem;
    user-select: none;
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.back-to-top-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer Bottom - Eski stiller kaldırıldı, yeni yapı kullanılıyor */

/* ============================================
   Social Links
   ============================================ */
.social-links {
    list-style: none !important;
    display: flex !important;
    gap: 0.75rem;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-links li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.social-links a,
.social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: currentColor;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: visible !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-links a svg,
.social-link svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

.footer-social .social-links a svg,
.footer-social .social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social .social-links a:hover svg,
.footer-social .social-link:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-links a:hover,
.social-links a:focus,
.social-link:hover,
.social-link:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Her platform için özel renk */
.social-link-facebook:hover,
.social-link-facebook:focus {
    background-color: #1877F2;
    color: #ffffff;
}

.social-link-twitter:hover,
.social-link-twitter:focus {
    background-color: #000000;
    color: #ffffff;
}

.social-link-instagram:hover,
.social-link-instagram:focus {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-link-youtube:hover,
.social-link-youtube:focus {
    background-color: #FF0000;
    color: #ffffff;
}

.social-link-linkedin:hover,
.social-link-linkedin:focus {
    background-color: #0077B5;
    color: #ffffff;
}

.footer-brand .footer-social .social-links {
    gap: 0.75rem;
}

.footer-social .social-links a,
.footer-social .social-link {
    background-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    overflow: visible !important;
}

.footer-social .social-links a::before,
.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 0;
}

.footer-social .social-links a:hover::before,
.footer-social .social-link:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social .social-links a:hover,
.footer-social .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.footer-social .social-link-facebook:hover {
    background-color: #1877F2 !important;
    border-color: #1877F2;
}

.footer-social .social-link-twitter:hover {
    background-color: #000000 !important;
    border-color: #000000;
}

.footer-social .social-link-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: transparent;
}

.footer-social .social-link-youtube:hover {
    background-color: #FF0000 !important;
    border-color: #FF0000;
}

.footer-social .social-link-linkedin:hover {
    background-color: #0077B5 !important;
    border-color: #0077B5;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.pagination .current {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* ============================================
   Utilities
   ============================================ */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 16px;
    z-index: 999999;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   Responsive - Mobile First
   ============================================ */
@media (max-width: 767px) {

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    /* Top Bar - Mobile */
    .top-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .top-bar-left {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        order: 1;
    }

    .top-bar-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.625rem;
        justify-content: space-between;
        order: 2;
    }

    .top-bar-announcement {
        font-size: 0.6875rem;
        gap: 0.5rem;
        width: 100%;
        flex: 1 1 100%;
        padding: 0.3125rem 0.75rem;
    }

    .top-bar-announcement .announcement-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .top-bar-announcement .announcement-icon svg {
        width: 14px;
        height: 14px;
    }

    .announcement-text {
        font-size: 0.6875rem;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-bar-contact-item {
        font-size: 0.6875rem;
        gap: 0.5rem;
        padding: 0.3125rem 0.625rem;
        width: 100%;
    }

    .top-bar-contact-item svg {
        width: 14px;
        height: 14px;
    }

    .top-bar-datetime {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.625rem;
        border: none;
        order: 3;
        width: 100%;
        text-align: center;
    }

    .top-bar-actions {
        border: none;
        padding: 0;
        gap: 0.5rem;
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .top-bar-action-link {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.625rem;
        flex: 1;
        text-align: center;
    }

    .top-bar-whatsapp {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
        margin-right: 0;
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .top-bar-whatsapp svg {
        width: 14px;
        height: 14px;
    }

    .top-bar-social {
        order: 4;
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .top-bar-social .social-links {
        justify-content: center;
        gap: 0.5rem;
    }

    .top-bar-social .social-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    /* Header - Mobile */
    .ap-header,
    .site-header {
        padding: 0 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
    }

    .ap-header.scrolled,
    .site-header.scrolled {
        padding: 0 !important;
    }

    .ap-header-inner,
    .site-header .container {
        padding: 0.75rem 1rem !important;
    }

    .ap-header-inner,
    .header-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        align-items: center !important;
        justify-content: space-between !important;
        grid-template-columns: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .site-header.scrolled .header-inner {
        gap: 0.625rem;
    }

    .ap-logo,
    .site-branding {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        margin-right: 0;
        order: 1 !important;
        overflow: hidden;
        max-width: calc(100% - 60px) !important;
    }

    .custom-logo-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: 0;
    }

    .custom-logo-link img {
        max-height: 36px;
        width: auto;
        flex-shrink: 0;
    }

    .custom-logo-link .site-title {
        font-size: 0.8125rem;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: none;
        /* Mobilde logo metni gizle, sadece ikon göster */
    }

    .site-header.scrolled .custom-logo-link img {
        max-height: 32px;
    }

    .header-actions {
        display: none;
        order: 3;
        flex: 0 0 auto;
        margin-left: 0;
    }

    .btn-header-donate {
        display: none;
    }

    /* Eski menu-toggle stilleri kaldırıldı - Yeni ap-menu-toggle kullanılıyor (mobile-menu.css) */

    .main-navigation,
    .ap-nav {
        position: relative;
        order: 4;
        width: auto;
        flex: 0 0 auto;
        margin: 0;
        display: none !important;
        align-items: center;
    }

    .ap-burger {
        display: flex !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        order: 2 !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }

    .ap-nav-inline {
        display: none !important;
    }

    /* Mobile Menu Overlay */
    .main-navigation::before {
        content: '';
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.25s ease-out;
        will-change: opacity;
    }

    .main-navigation.toggled::before {
        display: block;
        opacity: 1;
    }

    /* Desktop Menü Mobilde Gizli (Yeni drawer kullanılıyor) */
    .main-navigation {
        position: relative;
        width: 100%;
    }

    .main-navigation .desktop-menu,
    .main-navigation .primary-menu-list.desktop-menu {
        display: none !important;
        /* Mobilde gizli, drawer kullanılıyor */
    }

    /* Eski mobil menü stilleri kaldırıldı - Yeni drawer kullanılıyor (mobile-menu.css) */

    /* Mobil Menü Panel - Kaldırıldı */
    .mobile-menu-panel,
    .menu-toggle {
        display: none !important;
    }

    /* Kapat Butonu */
    .mobile-menu-panel .menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 10;
        padding: 0;
        color: #ffffff;
    }

    .mobile-menu-panel .menu-close:hover,
    .mobile-menu-panel .menu-close:focus {
        opacity: 0.7;
        outline: none;
    }

    .mobile-menu-panel .menu-close svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
    }

    /* Mobil Menü Listesi */
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 3.5rem 0 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-list li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-list li:last-child {
        border-bottom: none;
    }

    .mobile-menu-list a {
        display: block;
        padding: 1rem 1.5rem;
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9375rem;
        font-weight: 400;
        transition: background-color 0.2s ease;
    }

    .mobile-menu-list a:hover,
    .mobile-menu-list a:focus {
        background-color: rgba(255, 255, 255, 0.1);
        outline: none;
    }

    /* Dropdown Arrow */
    .mobile-menu-list .dropdown-arrow {
        float: right;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .mobile-menu-list li.menu-item-has-children.menu-open>a>.dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Sub Menu */
    .mobile-menu-list .sub-menu {
        display: none;
        background-color: rgba(0, 0, 0, 0.2);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu-list li.menu-item-has-children.menu-open>.sub-menu {
        display: block;
    }

    .mobile-menu-list .sub-menu a {
        padding-left: 2.5rem;
        font-size: 0.875rem;
    }

    /* Mobil menü paneli içindeki menü listesi görünür olmalı */
    .mobile-menu-panel .primary-menu-list {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Kapat Butonu */
    .mobile-menu-panel .menu-close {
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: transparent !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        cursor: pointer;
        z-index: 10 !important;
        transition: opacity 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-menu-panel .menu-close:hover,
    .mobile-menu-panel .menu-close:focus,
    .mobile-menu-panel .menu-close:active {
        opacity: 0.7 !important;
        outline: none !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    .mobile-menu-panel .menu-close svg {
        width: 22px;
        height: 22px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* CTA Butonları */
    .mobile-menu-cta {
        padding: 1.25rem !important;
        padding-top: 3.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.625rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    .mobile-menu-cta .btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        transition: opacity 0.2s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        border: none !important;
        box-shadow: none !important;
    }

    .mobile-menu-cta .btn-cta-primary {
        background-color: #ffffff !important;
        color: var(--primary-color) !important;
        border: none !important;
    }

    .mobile-menu-cta .btn-cta-primary:hover,
    .mobile-menu-cta .btn-cta-primary:focus,
    .mobile-menu-cta .btn-cta-primary:active {
        opacity: 0.9 !important;
        outline: none;
    }

    .mobile-menu-cta .btn-cta-secondary {
        background-color: transparent !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
    }

    .mobile-menu-cta .btn-cta-secondary:hover,
    .mobile-menu-cta .btn-cta-secondary:focus,
    .mobile-menu-cta .btn-cta-secondary:active {
        opacity: 0.8 !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        outline: none;
    }

    /* Menü Listesi Wrapper */
    .mobile-menu-list-wrapper {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    /* Menü Listesi */
    .mobile-menu-panel .primary-menu-list {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
    }

    .mobile-menu-panel .primary-menu-list li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu-panel .primary-menu-list li:last-child {
        border-bottom: none;
    }

    .mobile-menu-panel .primary-menu-list a {
        padding: 0.875rem 1.25rem !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        font-size: 0.9375rem !important;
        font-weight: 400 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        background-color: transparent !important;
        transition: opacity 0.2s ease;
        min-height: 44px !important;
        -webkit-tap-highlight-color: transparent;
        visibility: visible !important;
        opacity: 1 !important;
        line-height: 1.5 !important;
    }

    .mobile-menu-panel .primary-menu-list a:hover,
    .mobile-menu-panel .primary-menu-list a:focus,
    .mobile-menu-panel .primary-menu-list a:active {
        opacity: 0.8;
        outline: none;
        background-color: transparent !important;
    }

    .mobile-menu-panel .primary-menu-list a::after {
        display: none;
    }

    /* Dropdown Arrow */
    .mobile-menu-panel .dropdown-arrow {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 0.75rem;
        color: rgba(255, 255, 255, 0.8) !important;
        transition: transform 0.3s ease, color 0.2s ease;
        flex-shrink: 0;
    }

    .mobile-menu-panel .dropdown-arrow svg {
        width: 100% !important;
        height: 100% !important;
    }

    .mobile-menu-panel .primary-menu-list li.menu-item-has-children.menu-open>a>.dropdown-arrow {
        transform: rotate(180deg);
        color: #ffffff;
    }

    /* Sub Menu - Akordeon */
    .mobile-menu-panel .primary-menu-list .sub-menu {
        position: static !important;
        display: block;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.15);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        list-style: none;
    }

    .mobile-menu-panel .primary-menu-list>li.menu-item-has-children.menu-open>.sub-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }

    .mobile-menu-panel .primary-menu-list .sub-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        list-style: none;
    }

    .mobile-menu-panel .primary-menu-list .sub-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu-panel .primary-menu-list .sub-menu a {
        padding: 0.75rem 1.25rem 0.75rem 2.25rem !important;
        font-size: 0.875rem !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        min-height: 40px !important;
        line-height: 1.5 !important;
    }

    .mobile-menu-panel .primary-menu-list .sub-menu a:hover,
    .mobile-menu-panel .primary-menu-list .sub-menu a:focus {
        opacity: 1;
        color: #ffffff;
        background-color: transparent !important;
    }

    /* İç içe sub-menu */
    .mobile-menu-panel .primary-menu-list .sub-menu .sub-menu {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-panel .primary-menu-list .sub-menu .sub-menu a {
        padding-left: 4.5rem;
        font-size: 0.9375rem;
    }

    /* Alt Bilgiler (Footer) */
    .mobile-menu-footer {
        padding: 1.25rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin-top: auto !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    .mobile-menu-info-item {
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        margin-bottom: 0.875rem;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .mobile-menu-info-item:last-of-type {
        margin-bottom: 1.25rem;
    }

    .mobile-menu-info-item svg {
        flex-shrink: 0;
        margin-top: 2px;
        stroke: rgba(255, 255, 255, 0.85);
        width: 16px;
        height: 16px;
    }

    .mobile-menu-info-item a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .mobile-menu-info-item a:hover,
    .mobile-menu-info-item a:focus {
        opacity: 1;
        outline: none;
    }

    .mobile-menu-social {
        margin: 1.25rem 0;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-social .social-links {
        display: flex;
        gap: 0.625rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobile-menu-social .social-link {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        color: #ffffff;
        transition: opacity 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        padding: 0 !important;
        overflow: visible !important;
    }

    .mobile-menu-social .social-link:hover,
    .mobile-menu-social .social-link:focus {
        opacity: 0.8;
        outline: none;
        transform: none;
    }

    .mobile-menu-social .social-link svg {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        fill: currentColor !important;
        flex-shrink: 0 !important;
        display: block !important;
    }

    .mobile-menu-legal {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }

    .mobile-menu-legal a {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.8125rem;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .mobile-menu-legal a:hover,
    .mobile-menu-legal a:focus {
        opacity: 1;
        outline: none;
    }

    .header-actions {
        display: none;
        order: -1;
        width: auto;
    }

    .btn-header-donate {
        display: none;
    }

    /* Site Branding - Mobil */
    .site-branding {
        flex: 1;
        min-width: 0;
        margin-right: 0.5rem;
    }

    .site-branding .custom-logo-link,
    .site-branding .site-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .site-branding img {
        max-height: 36px;
        width: auto;
    }

    /* Header Inner - Mobil */
    .header-inner {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-site-title {
        font-size: 1.5rem;
    }

    .footer-description {
        font-size: 0.875rem;
    }

    .footer-social-title {
        text-align: center;
    }

    .footer-brand .footer-social .social-links {
        justify-content: center;
    }

    .footer-widgets-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact-title {
        text-align: center;
    }

    .footer-contact-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-section {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column-title {
        text-align: center;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-bottom-left {
        order: 1;
        text-align: center;
        white-space: normal;
    }

    .footer-bottom-left p {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .footer-bottom-left {
        white-space: normal !important;
    }

    .footer-social-icons {
        order: 2;
    }

    .footer-bottom-right {
        order: 3;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .footer-social {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Policies Section */
    .policies-section {
        padding: 2rem 0;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-title {
        font-size: 1.125rem;
    }

    /* Featured Posts */
    .featured-posts {
        padding: 2rem 0;
    }

    .section-title {
        font-size: var(--font-size-xl);
        margin-bottom: 1.25rem;
    }

    .posts-grid {
        gap: 1rem;
    }

    .card-thumbnail,
    .post-thumbnail {
        height: 200px;
    }

    .card-content,
    .post-content {
        padding: 1rem;
    }

    .entry-title,
    .card-title {
        font-size: var(--font-size-sm);
    }

    /* Action Buttons Section */
    .action-buttons-section {
        padding: 2rem 0;
    }

    .action-buttons-grid {
        gap: 1rem;
    }
}

/* ============================================
   Slider Animasyonları
   ============================================ */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px) scale(1.05);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(1.05);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Yönetim Sayfası Stilleri
   ============================================ */

/* Hero Banner */
.yonetim-hero-section {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.yonetim-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 58, 138, 0.65) 100%);
    z-index: 1;
}

.yonetim-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.yonetim-hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Yönetim Listesi Bölümü */
.yonetim-list-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.yonetim-list-section .entry-content {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-light);
}

.yonetim-section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.yonetim-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Filtre Sekmeleri */
.yonetim-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.yonetim-filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Poppins', 'Segoe UI', sans-serif;
}

.yonetim-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.yonetim-filter-btn.active {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Yönetim Bölümleri */
.yonetim-section {
    margin-bottom: 5rem;
}

.yonetim-section:first-of-type {
    margin-top: 2rem;
}

/* İl Başkanı Özel Layout */
.yonetim-il-baskani-wrapper {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.yonetim-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Kart Resim Wrapper */
.yonetim-card-image-wrapper {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yonetim-card-image {
    width: 100%;
    aspect-ratio: 285 / 364.7;
    overflow: hidden;
    background: #f5f7fa;
    display: block;
    position: relative;
    border-radius: 0;
    margin: 0;
}

.yonetim-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.yonetim-card-image::after {
    display: none;
}

.yonetim-card-link:hover .yonetim-card-image::before {
    opacity: 1;
}

.yonetim-card-thumbnail {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15%;
    border-radius: 0 !important;
    transition: transform 0.5s ease;
    display: block;
}

.yonetim-card-link:hover .yonetim-card-thumbnail {
    transform: scale(1.02);
}

/* Sosyal Medya İkonları */
.yonetim-card-social {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.yonetim-card-link:hover .yonetim-card-social {
    opacity: 1;
    transform: translateY(0);
}

.yonetim-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.yonetim-social-link:hover {
    background-color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.yonetim-social-instagram:hover {
    color: #E4405F;
}

.yonetim-social-twitter:hover {
    color: #1DA1F2;
}

/* Kart Ayırıcı Çizgi */
.yonetim-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
    margin: 0 1.5rem;
}

.yonetim-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.yonetim-card-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.yonetim-card-placeholder svg {
    width: 100px;
    height: 100px;
    opacity: 0.4;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.yonetim-card-info {
    padding: 1.5rem 1.5rem 2rem;
    text-align: center;
    background-color: var(--white);
}

.yonetim-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Poppins', 'Gilroy', 'Segoe UI', sans-serif;
    letter-spacing: -0.3px;
}

.yonetim-card-link:hover .yonetim-card-name {
    color: var(--primary-color);
}

.yonetim-card-gorev {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.625rem;
}

/* Yönetim Grid (4 Sütun Desktop, 2 Sütun Tablet/Mobil) */
.yonetim-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.yonetim-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    position: relative;
}

.yonetim-card:hover {
    transform: none;
    box-shadow: none;
}

/* İl Başkanı Kartı */
.yonetim-il-baskani-wrapper .yonetim-card {
    max-width: 100%;
}

.yonetim-il-baskani-wrapper .yonetim-card-image {
    max-width: 250px;
}

/* Boş Durum */
.yonetim-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

/* Yönetim Detay Sayfası */
.yonetim-single {
    padding: 3rem 0;
}

.yonetim-single-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.yonetim-single-image {
    flex-shrink: 0;
    width: 350px;
    max-width: 100%;
    position: relative;
}

.yonetim-single-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.yonetim-single-image:hover::before {
    opacity: 1;
}

.yonetim-single-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.yonetim-single-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.4;
}

.yonetim-single-thumbnail {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: block;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.yonetim-single-image:hover .yonetim-single-thumbnail {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.yonetim-single-content-wrapper {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.yonetim-single-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.yonetim-single-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.yonetim-single-ilce {
    font-size: var(--font-size-lg);
    color: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
}

.yonetim-single-gorev {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.yonetim-single-content {
    font-size: var(--font-size-lg);
    line-height: 1.9;
    color: var(--text-color);
    max-width: 100%;
}

.yonetim-single-content p {
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
}

.yonetim-single-content h2,
.yonetim-single-content h3,
.yonetim-single-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.yonetim-single-footer {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {

    /* Header & Navigation */
    .header-inner {
        gap: 2rem;
    }

    .main-navigation {
        margin: 0 1.5rem;
    }

    .site-branding {
        margin-right: 2rem;
    }

    .header-actions {
        margin-right: 2rem;
        margin-left: 0;
    }

    /* Tablet için de sidebar menü */
    .menu-toggle {
        display: flex;
    }

    .main-navigation ul,
    .primary-menu-list {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
        background-color: #ffffff;
        flex-direction: column;
        padding: 0;
        margin: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        gap: 0;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .main-navigation.toggled ul,
    .main-navigation.toggled .primary-menu-list {
        display: flex;
        transform: translateX(0);
    }

    /* Mobile Menu Overlay - Tablet */
    .main-navigation::before {
        content: '';
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease-out;
        will-change: opacity;
    }

    .main-navigation.toggled::before {
        display: block;
        opacity: 1;
    }

    .main-navigation ul,
    .primary-menu-list {
        gap: 1rem;
    }

    .main-navigation a {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .yonetim-list-section {
        padding: 4rem 0;
    }

    .yonetim-section-title {
        font-size: var(--font-size-3xl);
        margin-bottom: 2.5rem;
    }

    .yonetim-il-baskani {
        margin-bottom: 4rem;
        padding: 2.5rem 0;
    }

    .yonetim-il-baskani-card {
        max-width: 320px;
    }

    .yonetim-il-baskani-card .yonetim-card-image {
        height: 160px;
    }

    .yonetim-uyeler {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

    .yonetim-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .yonetim-filters {
        gap: 0.5rem;
    }

    .yonetim-filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }

    .yonetim-hero-title {
        font-size: var(--font-size-3xl);
    }

    .yonetim-single-wrapper {
        gap: 2.5rem;
    }

    .yonetim-single-image {
        width: 320px;
    }

    .yonetim-single-thumbnail {
        max-width: 320px;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .yonetim-hero-section {
        height: 250px;
    }

    .yonetim-hero-title {
        font-size: var(--font-size-2xl);
    }

    .yonetim-list-section {
        padding: 2.5rem 0;
    }

    .yonetim-section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 2rem;
    }

    .yonetim-il-baskani {
        margin-bottom: 3rem;
    }

    .yonetim-il-baskani-card {
        max-width: 100%;
    }

    .yonetim-il-baskani-card .yonetim-card-image {
        height: 150px;
    }

    .yonetim-card-image,
    .yonetim-card .yonetim-card-image {
        height: 200px;
    }

    .yonetim-uyeler {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .yonetim-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .yonetim-single {
        padding: 2rem 0;
    }

    .yonetim-single-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .yonetim-single-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }

    .yonetim-single-thumbnail {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 3 / 4;
        margin: 0 auto;
    }

    .yonetim-single-title {
        font-size: var(--font-size-2xl);
        text-align: center;
    }

    .yonetim-single-ilce {
        font-size: var(--font-size-base);
        text-align: center;
        justify-content: center;
    }

    .yonetim-single-gorev {
        font-size: var(--font-size-lg);
        text-align: center;
    }

    .yonetim-single-content {
        font-size: var(--font-size-base);
    }
}

/* Responsive - Küçük Mobil */
@media (max-width: 480px) {
    .yonetim-hero-section {
        height: 200px;
    }

    .yonetim-hero-title {
        font-size: var(--font-size-xl);
    }

    .yonetim-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .yonetim-il-baskani-card .yonetim-card-image {
        height: 140px;
    }

    .yonetim-card-image,
    .yonetim-card .yonetim-card-image {
        height: 180px;
    }

    .yonetim-single-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .yonetim-single-image {
        max-width: 250px;
    }

    .yonetim-single-thumbnail {
        max-width: 250px;
        aspect-ratio: 3 / 4;
    }

    .yonetim-single-title {
        font-size: var(--font-size-xl);
        text-align: center;
    }

    .yonetim-single-gorev {
        text-align: center;
    }
}

/* ============================================
   Haber Detay Sayfası (Single Post)
   ============================================ */

.single-post {
    background-color: var(--bg-color);
}

/* Hero Görsel */
.single-post-hero {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
}

.single-post-thumbnail {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.single-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Container */
.single-post-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-post-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.single-post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.single-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.single-post-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    border-radius: 20px;
    transition: var(--transition);
}

.single-post-category:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.single-post-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--text-color);
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.5px;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.single-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post-meta-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.single-post-meta-item a {
    color: var(--text-light);
    transition: var(--transition);
}

.single-post-meta-item a:hover {
    color: var(--primary-color);
}

/* İçerik */
.single-post-content {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-color);
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 2.5rem 0 1rem;
    color: var(--text-color);
    line-height: var(--line-height-heading);
}

.single-post-content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.single-post-content h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin: 1.5rem 0 0.75rem;
    color: var(--text-color);
}

.single-post-content ul,
.single-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-post-content li {
    margin-bottom: 0.75rem;
}

.single-post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-light);
    font-style: italic;
    border-radius: 4px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.single-post-content a:hover {
    color: var(--secondary-color);
}

.single-post-content .page-links {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.single-post-content .page-links-title {
    font-weight: var(--font-weight-semibold);
    margin-right: 1rem;
}

.single-post-content .page-number {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    transition: var(--transition);
}

.single-post-content .page-number:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Footer */
.single-post-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.tags-label {
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-right: 0.5rem;
}

.single-post-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: var(--bg-light);
    color: var(--text-color);
    font-size: var(--font-size-sm);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.single-post-tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation */
.single-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.post-nav-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.post-nav-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.post-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
}

.post-nav-next .post-nav-link {
    flex-direction: row-reverse;
    text-align: right;
}

.post-nav-content {
    flex: 1;
    min-width: 0;
}

.post-nav-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
}

.post-nav-title {
    display: block;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-nav-link svg {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.post-nav-link:hover svg {
    transform: translateX(-4px);
}

.post-nav-next .post-nav-link:hover svg {
    transform: translateX(4px);
}

/* İlgili Haberler */
.related-posts {
    margin: 2rem 0 0;
    padding: 2rem 0 0;
    border-top: 1px solid var(--border-color);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.related-posts-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}


.related-post-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.related-post-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--bg-light);
    display: block;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.08);
}

.related-post-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-post-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.related-post-title a {
    color: var(--text-color);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-post-title a:hover {
    color: var(--primary-color);
}

.related-post-meta {
    margin-top: auto;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    padding-top: 0.5rem;
}

/* Yorumlar */
.single-post-comments {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .single-post-container {
        max-width: 100%;
        padding: 0 2rem;
    }

    .single-post-wrapper {
        max-width: 900px;
    }

    .single-post-navigation {
        max-width: 900px;
    }

    .related-posts {
        max-width: 900px;
    }
}

@media (max-width: 1024px) {
    .single-post-thumbnail {
        height: 400px;
    }

    .single-post-wrapper {
        padding: 2rem;
        max-width: 100%;
    }

    .single-post-title {
        font-size: var(--font-size-3xl);
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .related-posts {
        margin: 1.5rem 0 0;
        padding: 1.5rem 0 0;
    }

    .related-posts-title {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .single-post-container {
        padding: 0 1rem;
    }

    .single-post-hero {
        margin-bottom: 2rem;
    }

    .single-post-thumbnail {
        height: 300px;
    }

    .single-post-wrapper {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .single-post-title {
        font-size: var(--font-size-2xl);
    }

    .single-post-content {
        font-size: var(--font-size-base);
    }

    .single-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .single-post-navigation {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .related-posts {
        max-width: 100%;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .related-posts {
        margin: 1.5rem 0 0;
        padding: 1.5rem 0 0;
    }

    .related-post-thumbnail {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .single-post-thumbnail {
        height: 250px;
    }

    .single-post-title {
        font-size: var(--font-size-xl);
    }

    .single-post-categories {
        gap: 0.375rem;
    }

    .single-post-category {
        font-size: var(--font-size-xs);
        padding: 0.25rem 0.625rem;
    }
}

/* ============================================
   Duyurular Stilleri
   ============================================ */

/* Duyurular Timeline */
.duyurular-timeline {
    position: relative;
    padding: 2rem 0;
    margin-top: 2rem;
}

.duyurular-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    z-index: 0;
}

@media (max-width: 767px) {
    .duyurular-timeline::before {
        left: 30px;
        transform: none;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    z-index: 1;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--primary-color), 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .timeline-marker {
        left: 30px;
        transform: none;
    }
}

.timeline-item-left {
    padding-right: calc(50% + 2rem);
    padding-left: 0;
}

.timeline-item-right {
    padding-left: calc(50% + 2rem);
    padding-right: 0;
}

@media (max-width: 767px) {

    .timeline-item-left,
    .timeline-item-right {
        padding-left: 4rem;
        padding-right: 0;
    }
}

.timeline-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    position: absolute;
    top: 1.5rem;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.timeline-item-left .timeline-date {
    right: -100px;
}

.timeline-item-right .timeline-date {
    left: -100px;
}

@media (max-width: 767px) {
    .timeline-date {
        position: static;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .timeline-item-left .timeline-date,
    .timeline-item-right .timeline-date {
        left: auto;
        right: auto;
    }
}

.timeline-date time {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.timeline-date .date-day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.timeline-date .date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.timeline-date .date-year {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.duyuru-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.duyuru-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.duyuru-thumbnail {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}

.duyuru-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.duyuru-card:hover .duyuru-thumbnail img {
    transform: scale(1.05);
}

.duyuru-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.duyuru-header {
    margin-bottom: 1rem;
}

.duyuru-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.duyuru-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.duyuru-title a:hover {
    color: var(--primary-color);
}

.duyuru-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.duyuru-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.duyuru-excerpt {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.duyuru-footer {
    margin-top: auto;
}

/* Tek Duyuru Sayfası */
.single-duyuru-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.single-duyuru-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.single-duyuru-header {
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.single-duyuru-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.single-duyuru-badge svg {
    width: 18px;
    height: 18px;
}

.single-duyuru-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    color: var(--text-color);
}

.single-duyuru-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.6);
}

.single-duyuru-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-duyuru-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.single-duyuru-thumbnail {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.single-duyuru-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.single-duyuru-content {
    padding: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.85);
}

.single-duyuru-content p {
    margin-bottom: 1.75rem;
}

.single-duyuru-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-color);
    line-height: 1.3;
}

.single-duyuru-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1.25rem;
    color: var(--text-color);
    line-height: 1.4;
}

.single-duyuru-content ul,
.single-duyuru-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-duyuru-content li {
    margin-bottom: 0.75rem;
}

.single-duyuru-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
}

.single-duyuru-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.single-duyuru-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-duyuru-content a:hover {
    color: var(--secondary-color);
}

.single-duyuru-footer {
    margin-top: 0;
    padding: 2rem 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

.single-duyuru-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-link {
    display: block;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-previous .nav-link:hover {
    transform: translateX(-4px) translateY(-2px);
}

.nav-next .nav-link:hover {
    transform: translateX(4px) translateY(-2px);
}

.nav-subtitle {
    display: block;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nav-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.duyuru-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.duyuru-navigation .nav-previous,
.duyuru-navigation .nav-next {
    display: flex;
    flex-direction: column;
}

.duyuru-navigation .nav-previous {
    text-align: left;
}

.duyuru-navigation .nav-next {
    text-align: right;
}

.duyuru-navigation .nav-previous a,
.duyuru-navigation .nav-next a {
    display: block;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.duyuru-navigation .nav-previous a:hover,
.duyuru-navigation .nav-next a:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(-2px);
}

.duyuru-navigation .nav-next a:hover {
    transform: translateX(2px);
}

.no-posts {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Duyuru Detay Sayfası Responsive */
@media (max-width: 1024px) {
    .single-duyuru-container {
        max-width: 100%;
    }

    .single-duyuru-wrapper {
        max-width: 100%;
    }

    .single-duyuru-header {
        padding: 2rem 2rem 1.5rem;
    }

    .single-duyuru-title {
        font-size: 2rem;
    }

    .single-duyuru-content {
        padding: 2rem;
    }

    .single-duyuru-footer {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 767px) {
    .single-duyuru-container {
        padding: 1.5rem 1rem;
    }

    .single-duyuru-header {
        padding: 1.5rem 1.5rem 1.25rem;
    }

    .single-duyuru-badge {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
        margin-bottom: 1.25rem;
    }

    .single-duyuru-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .single-duyuru-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .single-duyuru-content {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.8;
    }

    .single-duyuru-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1.25rem;
    }

    .single-duyuru-content h3 {
        font-size: 1.25rem;
        margin: 1.75rem 0 1rem;
    }

    .single-duyuru-footer {
        padding: 1.5rem;
    }

    .single-duyuru-navigation {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-next {
        text-align: left;
    }

    .nav-link {
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .duyurular-timeline {
        padding: 1.5rem 0;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    .timeline-card {
        margin-left: 0;
        margin-right: 0;
    }

    .duyuru-content {
        padding: 1.25rem;
    }

}

/* ============================================
   Login Page
   ============================================ */
.login-page-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.login-page-body .site-header,
.login-page-body .site-footer,
.login-page-body .top-bar {
    display: none !important;
}

.login-page-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.login-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

/* Sol Taraf: Resim */
.login-page-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.login-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 64, 175, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.login-image-content {
    text-align: center;
    color: #ffffff;
    max-width: 500px;
}

.login-placeholder-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.login-image-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.login-image-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Sağ Taraf: Form */
.login-page-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #ffffff;
    overflow-y: auto;
}

.login-form-container {
    width: 100%;
    max-width: 480px;
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.login-form-content {
    width: 100%;
}

.login-error,
.login-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.login-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.login-error svg,
.login-success svg {
    flex-shrink: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-label svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle svg {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.forgot-password {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    margin-top: 0.5rem;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-submit-btn svg {
    transition: transform 0.3s ease;
}

.login-submit-btn:hover svg {
    transform: translateX(4px);
}

.login-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.register-link-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: color 0.2s ease;
}

.register-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Login Page Responsive */
@media (max-width: 1024px) {
    .login-page-layout {
        grid-template-columns: 1fr;
    }

    .login-page-image {
        min-height: 300px;
        order: 1;
    }

    .login-image-overlay {
        padding: 2rem;
    }

    .login-image-title {
        font-size: 2rem;
    }

    .login-image-subtitle {
        font-size: 1rem;
    }

    .login-page-form {
        order: 2;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .login-page-form {
        padding: 2rem 1rem;
    }

    .login-form-header {
        margin-bottom: 2rem;
    }

    .login-title {
        font-size: 1.75rem;
    }

    .login-image-title {
        font-size: 1.75rem;
    }

    .login-image-subtitle {
        font-size: 0.9375rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .forgot-password {
        margin-left: 0;
    }
}

/* E-posta Onay Sayfası Stilleri */
.email-confirmation-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.email-confirmation-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 2;
}

.email-confirmation-message {
    margin-bottom: 2rem;
}

.confirmation-card {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid rgba(30, 58, 138, 0.1);
}

.confirmation-card svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.confirmation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.75rem;
}

.confirmation-card p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.confirmation-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.confirmation-info p {
    margin: 0 0 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.confirmation-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.confirmation-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #6b7280;
    line-height: 1.6;
}

.confirmation-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.email-confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-confirmation-actions .btn-secondary {
    text-align: center;
    padding: 0.875rem 1.5rem;
    background: #f3f4f6;
    color: var(--text-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.email-confirmation-actions .btn-secondary:hover {
    background: #e5e7eb;
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .confirmation-card {
        padding: 1.5rem;
    }

    .confirmation-card h3 {
        font-size: 1.25rem;
    }

    .email-confirmation-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* Register Page Styles */
.register-page .login-form-content {
    max-height: none;
    overflow-y: visible;
}

.register-page .form-group {
    margin-bottom: 1.25rem;
}

/* Lost Password Page Styles */
.form-help-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.lost-password-page .login-form-header {
    margin-bottom: 2rem;
}

.lost-password-page .login-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.lost-password-page .login-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 0;
}

/* ============================================
   MOBİL TASARIM SİSTEMİ - BAŞTAN YENİDEN TASARLANDI
   Mobile-first, tutarlı ve temiz yapı
   ============================================ */
@media (max-width: 767px) {
    /* ============================================
       TEMEL MOBİL AYARLAR
       ============================================ */

    /* Scroll ve Genişlik Kontrolü */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Container - Mobil Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* ============================================
       TYPOGRAPHY - MOBİL OPTİMİZASYON
       ============================================ */

    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    h4 {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    h5,
    h6 {
        font-size: 1rem;
        line-height: 1.5;
    }

    p,
    span,
    div,
    li,
    a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* ============================================
       HEADER VE NAVİGASYON
       ============================================ */

    .ap-header,
    .site-header {
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .ap-header-inner,
    .site-header .container,
    .header-inner {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }

    .ap-logo,
    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 60px);
        order: 1;
    }

    .ap-logo img,
    .site-branding img {
        max-height: 50px;
    }

    .ap-burger {
        display: flex;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
    }

    .ap-nav,
    .ap-nav-inline,
    .main-navigation,
    .header-actions,
    .btn-header-donate {
        display: none;
    }

    /* Top Bar - Mobil */
    .top-bar {
        padding: 0.625rem 0;
        font-size: 0.8125rem;
    }

    .top-bar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .top-bar-left {
        width: 100%;
    }

    .top-bar-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* ============================================
       LAYOUT - GRID VE FLEX
       ============================================ */

    .posts-grid,
    .action-buttons-grid,
    .yonetim-grid,
    .kurullar-stats-grid,
    .footer-grid,
    [class*="grid"]:not(.footer-grid) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .flex-row,
    [class*="flex-row"] {
        flex-direction: column;
    }

    /* ============================================
       SECTION VE CONTENT
       ============================================ */

    section,
    .section {
        padding: 1.5rem 0;
    }

    .site-main,
    .content-area,
    .site-content,
    #main,
    #content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    /* ============================================
       BUTONLAR VE ETKİLEŞİMLİ ELEMENTLER
       ============================================ */

    .btn,
    button:not(.ap-burger):not(.ap-drawer-close),
    a[class*="btn"],
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* ============================================
       FORM ELEMENTLERİ
       ============================================ */

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="search"],
    textarea,
    select {
        min-height: 44px;
        font-size: 16px;
        width: 100%;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }

    /* ============================================
       GÖRSELLER VE MEDYA
       ============================================ */

    img,
    video,
    iframe,
    embed,
    object,
    .wp-post-image,
    .attachment-post-thumbnail {
        max-width: 100%;
        height: auto;
    }

    .wp-block-image,
    figure,
    .image-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* ============================================
       KARTLAR VE KUTULAR
       ============================================ */

    .card,
    [class*="card"]:not(.ap-drawer):not(.ap-overlay),
    .box {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .yonetim-card,
    .yonetim-grid-item {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .kurullar-stat-card,
    [class*="stat-card"] {
        padding: 1.25rem;
    }

    /* ============================================
       ACTION BUTTONS
       ============================================ */

    .action-buttons-section {
        padding: 2rem 0;
    }

    .action-buttons-grid {
        gap: 1rem;
        padding: 0;
    }

    .action-button {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 150px;
        aspect-ratio: 16 / 9;
    }

    .action-button-image {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .action-button-text {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
        white-space: normal;
        max-width: 90%;
    }

    /* ============================================
       HERO SECTION
       ============================================ */

    /* ============================================
       HERO SLIDER
       ============================================ */

    .hero-slider-section {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .hero-slider {
        height: 300px;
        width: 100%;
        max-width: 100%;
        position: relative;
    }

    .hero-slide {
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .hero-slide-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .hero-slider-nav {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .hero-slider-nav svg {
        width: 20px;
        height: 20px;
    }

    .hero-slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
    }

    .hero-section,
    [class*="hero"] {
        padding: 0;
        min-height: auto;
    }

    /* ============================================
       INTRO SECTION
       ============================================ */

    .intro-section {
        padding: 2rem 1rem;
        text-align: center;
    }

    .intro-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .intro-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        text-align: left;
    }

    /* ============================================
       POLICIES SECTION
       ============================================ */

    .policies-section {
        padding: 2rem 0;
    }

    .policies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .policy-card {
        width: 100%;
        margin-bottom: 0;
    }

    .policy-content {
        padding: 1.25rem;
    }

    .policy-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .policy-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .policy-link {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
        width: 100%;
        text-align: center;
    }

    /* ============================================
       FEATURED POSTS
       ============================================ */

    .featured-posts {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .post-card,
    .card {
        width: 100%;
        margin-bottom: 1.25rem;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .card-excerpt {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .card-footer {
        margin-top: auto;
    }

    .card-thumbnail {
        width: 100%;
        overflow: hidden;
    }

    .card-thumbnail img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .card-meta {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }

    /* ============================================
       POLICIES & NEWS BANNER
       ============================================ */

    .policies-news-banner-section {
        padding: 2rem 0;
        width: 100%;
    }

    .policies-news-banner {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .policies-news-banner .banner-image {
        width: 100%;
        height: auto;
        display: block;
    }

    /* ============================================
       FOOTER
       ============================================ */

    .site-footer {
        padding: 2rem 0 1.5rem;
        margin-top: 3rem;
    }

    .footer-wrapper {
        padding: 0 1rem;
    }

    .footer-main-content {
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-section {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column-title {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-bottom-left {
        order: 1;
    }

    .footer-bottom-left p {
        white-space: normal;
        word-wrap: break-word;
        font-size: 0.8125rem;
    }

    .footer-social-icons {
        order: 2;
        justify-content: center;
    }

    .footer-bottom-right {
        order: 3;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }

    /* ============================================
       SIDEBAR
       ============================================ */

    .sidebar,
    .widget-area {
        margin-top: 2rem;
    }

    /* ============================================
       TABLOLAR
       ============================================ */

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    /* ============================================
       MOBİL MENÜ PANEL
       ============================================ */

    .mobile-menu-panel,
    .main-navigation .mobile-menu-panel {
        background-color: #1e3a8a;
        background-image: none;
    }

    .mobile-menu-panel>*,
    .mobile-menu-panel .mobile-menu-cta,
    .mobile-menu-panel .mobile-menu-list-wrapper,
    .mobile-menu-panel .mobile-menu-footer {
        background-color: transparent;
        background-image: none;
    }

    .mobile-menu-panel .menu-close {
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    /* ============================================
       EK DÜZENLEMELER - İÇERİK UYUMU
       ============================================ */

    /* Tüm içerik alanları tutarlı padding */
    .site-main .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Section spacing tutarlı */
    section+section {
        margin-top: 0;
    }

    /* Banner görselleri */
    .policies-news-banner-section {
        margin: 2rem 0;
        padding: 0;
    }

    /* Content area boşlukları */
    main .container>section {
        margin-bottom: 2rem;
    }

    main .container>section:last-child {
        margin-bottom: 0;
    }

    /* Grid'lerde gap tutarlı */
    .action-buttons-grid,
    .policies-grid,
    .posts-grid {
        gap: 1rem;
    }

    /* Kart görselleri aspect ratio */
    .card-thumbnail,
    .policy-image {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .card-thumbnail img,
    .policy-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ============================================
       SINGLE POST - MOBİL DÜZENLEMELER
       ============================================ */

    .single-post-container {
        padding: 1.5rem 0;
    }

    .single-post-wrapper {
        padding: 0;
    }

    .single-post-header {
        margin-bottom: 1.5rem;
    }

    .single-post-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .single-post-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .single-post-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .single-post-content img {
        margin: 1.5rem -1rem;
        width: calc(100% + 2rem);
        max-width: calc(100% + 2rem);
        border-radius: 0;
    }

    .single-post-navigation {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .post-nav-item {
        width: 100%;
    }

    .post-nav-link {
        padding: 1rem;
    }

    .post-nav-title {
        font-size: 0.9375rem;
    }

    .related-posts {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .related-posts-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .related-post-card {
        flex-direction: row;
        gap: 1rem;
    }

    .related-post-thumbnail {
        width: 100px;
        height: 80px;
        flex-shrink: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .related-post-title {
        font-size: 0.9375rem;
        line-height: 1.4;
        margin-bottom: 0.25rem;
    }

    /* ============================================
       FOOTER - MOBİL DÜZENLEMELER
       ============================================ */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column-title {
        display: inline-block;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-menu-list {
        align-items: center;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-cta-buttons {
        justify-content: center;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer-bottom-left p {
        white-space: normal;
    }

    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .utility-separator {
        display: none;
    }

    .utility-link {
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    /* ============================================
       FORM ELEMENTS - TOUCH FRIENDLY
       ============================================ */

    .form-input,
    .form-textarea,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="search"],
    textarea,
    select {
        min-height: 48px;
        font-size: 16px;
        /* Prevents iOS zoom */
        padding: 0.875rem 1rem;
    }

    .form-textarea,
    textarea {
        min-height: 120px;
    }

    button,
    .btn,
    input[type="submit"],
    input[type="button"] {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* ============================================
       PAGE HEADERS - MOBİL DÜZENLEMELER
       ============================================ */

    .page-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .page-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .page-description {
        font-size: 1rem;
    }

    /* ============================================
       HERO SLIDER - MOBİL DÜZENLEMELER
       ============================================ */

    .hero-slider {
        height: 300px;
    }

    .hero-slider-nav {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    /* Hero slider dots removed from here - defined below with !important */
}


/* ============================================
   GLOBAL MOBİL İYİLEŞTİRMELER - TABLET
   ============================================ */

@media (max-width: 1023px) and (min-width: 768px) {

    /* Footer tablet düzeni */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-logo-section {
        grid-column: span 2;
    }

    /* Single post navigation */
    .single-post-navigation {
        flex-direction: row;
    }

    .post-nav-item {
        width: 50%;
    }
}


/* ============================================
   HOMEPAGE MOBİL LAYOUT DÜZELTMELERİ
   ============================================ */

@media (max-width: 767px) {

    /* === GENEL KURALLAR === */
    .site-main {
        overflow-x: hidden !important;
    }

    .site-main>.container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* === HERO SLIDER === */
    .hero-slider-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
    }

    .hero-slider {
        width: 100% !important;
        height: 60vh !important;
        /* Mobil için %60 ekran yüksekliği */
        min-height: 400px !important;
        /* Minimum yükseklik koruması */
        max-height: none !important;
    }

    .hero-slide {
        width: 100% !important;
        height: 100% !important;
    }

    .hero-slide-image {
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-slider-nav {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }

    .hero-slider-prev {
        left: 8px !important;
    }

    .hero-slider-next {
        right: 8px !important;
    }

    .hero-slider-nav svg {
        width: 18px !important;
        height: 18px !important;
    }

    .hero-slider-dots {
        bottom: 10px !important;
        gap: 5px !important;
    }

    .hero-dot {
        width: 6px !important;
        height: 6px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 50% !important;
        background-color: #fff !important;
        min-width: 6px !important;
        /* Genişlik garantisi */
        min-height: 6px !important;
        /* Yükseklik garantisi */
        appearance: none !important;
        -webkit-appearance: none !important;
        opacity: 0.8 !important;
        /* Biraz daha belirgin */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        /* Kontrast gölgesi */
        outline: none !important;
        display: inline-block !important;
        /* Görünürlük garantisi */
    }

    .hero-dot.active {
        transform: scale(1.2);
        /* Aktif olunca hafif büyüsün */
        opacity: 1;
    }

    /* === INTRO SECTION === */
    .intro-section {
        padding: 1.5rem 1rem !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .intro-title {
        font-size: 1.375rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
    }

    .intro-text {
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
    }

    /* === ACTION BUTTONS === */
    .action-buttons-section {
        padding: 1.5rem 0 !important;
    }

    .action-buttons-section .container {
        padding: 0 !important;
    }

    .action-buttons-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    .action-button {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 140px !important;
        aspect-ratio: 2.5 / 1 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .action-button-image {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .action-button-icon {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%) !important;
    }

    .action-button-text {
        font-size: 0.8125rem !important;
        padding: 0.375rem 0.75rem !important;
        bottom: 0.75rem !important;
    }

    /* === POLICIES SECTION === */
    .policies-section {
        padding: 2rem 0 !important;
    }

    .policies-section .container {
        padding: 0 1rem !important;
    }

    .policies-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    .policy-card {
        width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .events-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .event-card {
        border-radius: 12px !important;
    }

    .event-content {
        padding: 1rem !important;
    }

    .event-thumbnail {
        height: 180px !important;
    }

    .policy-content {
        padding: 1rem !important;
    }

    .policy-title {
        font-size: 1.125rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .policy-title a {
        word-wrap: break-word !important;
    }

    .policy-description {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .policy-link {
        font-size: 0.8125rem !important;
        padding: 0.625rem 1rem !important;
    }

    /* === BANNER SECTION === */
    .policies-news-banner-section {
        margin: 1.5rem 0 !important;
        padding: 0 !important;
    }

    .policies-news-banner {
        width: 100% !important;
        padding: 0 1rem !important;
    }

    .policies-news-banner img,
    .banner-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
    }

    /* === FEATURED POSTS SECTION === */
    .featured-posts {
        padding: 1.5rem 0 2rem !important;
    }

    .featured-posts .section-title,
    .section-title {
        font-size: 1.375rem !important;
        margin-bottom: 1.25rem !important;
        text-align: center !important;
    }

    .posts-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    .post-card,
    .card {
        width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .card-thumbnail {
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
    }

    .card-thumbnail img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .card-content {
        padding: 1rem !important;
    }

    .card-title {
        font-size: 1.0625rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }

    .card-title a {
        word-wrap: break-word !important;
    }

    .card-meta {
        font-size: 0.8125rem !important;
        margin-bottom: 0.75rem !important;
    }

    .card-excerpt {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .card-footer {
        padding-top: 0 !important;
    }

    .card-footer .btn {
        font-size: 0.8125rem !important;
        padding: 0.5rem 1rem !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* === CONTAINER GENEL === */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* === SECTION SPACING === */
    section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 40px 0 !important;
    }

    .site-main section+section {
        margin-top: 0 !important;
    }

    /* === OVERFLOW FIX === */
    * {
        max-width: 100%;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* === KÜÇÜK MOBİL (375px altı) === */
@media (max-width: 374px) {
    .hero-slider {
        height: 160px !important;
    }

    .intro-title {
        font-size: 1.25rem !important;
    }

    .action-button {
        min-height: 100px !important;
    }

    .policy-content {
        padding: 1rem !important;
    }

    .card-content {
        padding: 1rem !important;
    }
}

/* ==========================================================================
   New Page Templates & Components (Phase 4)
   ========================================================================== */

/* Page Hero Adjustments */
.page-hero-compact {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-color, #cc0000) 0%, #800000 100%);
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero-compact .page-title {
    font-size: 3rem !important;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

.page-hero-compact .page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* 1. Etkinlikler Page */
.event-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.event-filter-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.event-filter-btn.active,
.event-filter-btn:hover {
    background: var(--primary-color, #cc0000);
    color: #fff;
    border-color: var(--primary-color, #cc0000);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f1;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-thumbnail {
    height: 220px;
    position: relative;
}

.event-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: var(--primary-color, #cc0000);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.event-date-badge .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1d2327;
}

.event-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 2. Basın Page */
.medya-kiti-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.medya-kiti-buttons {
    display: flex;
    gap: 15px;
}

.basin-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.basin-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    align-items: center;
}

.basin-item:hover {
    border-color: var(--primary-color, #cc0000);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.basin-date {
    font-weight: 700;
    color: var(--primary-color, #cc0000);
    min-width: 100px;
}

.basin-info {
    flex: 1;
}

.basin-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

/* 3. Tüzük Page */
.tuzuk-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.tuzuk-nav-sticky {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.tuzuk-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.tuzuk-nav-link {
    padding: 12px 15px;
    border-radius: 8px;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9375rem;
}

.tuzuk-nav-link.active,
.tuzuk-nav-link:hover {
    background: rgba(204, 0, 0, 0.05);
    color: var(--primary-color, #cc0000);
    font-weight: 600;
}

.tuzuk-bolum {
    margin-bottom: 60px;
    scroll-margin-top: 140px;
}

.tuzuk-bolum-baslik {
    border-bottom: 2px solid var(--primary-color, #cc0000);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Accordion Common */
.tuzuk-accordion,
.sss-liste {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tuzuk-accordion-item,
.sss-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s;
}

.tuzuk-accordion-trigger,
.sss-soru {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: #1d2327;
}

.tuzuk-accordion-content,
.sss-cevap {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.active .tuzuk-accordion-content,
.active .sss-cevap {
    max-height: 1000px;
    padding-bottom: 25px;
}

.active .tuzuk-accordion-trigger svg,
.active .sss-icon {
    transform: rotate(180deg);
}

/* 4. Gönüllü Page */
.gonullu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}

.gonullu-neden-liste {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.gonullu-neden-liste li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.gonullu-neden-icon {
    width: 50px;
    height: 50px;
    background: rgba(204, 0, 0, 0.1);
    color: var(--primary-color, #cc0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gonullu-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid #e5e7eb;
    padding-top: 40px;
}

.gonullu-stat {
    flex: 1;
    text-align: center;
}

.gonullu-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color, #cc0000);
    margin-bottom: 5px;
}

.gonullu-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

.gonullu-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f1;
}

.form-success-box {
    text-align: center;
    padding: 40px 20px;
}

.form-success-box svg {
    color: #10b981;
    margin-bottom: 20px;
}

/* General Mobile Utility */
@media (max-width: 1024px) {

    .tuzuk-layout,
    .gonullu-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tuzuk-sidebar {
        display: none;
    }
}

@media (max-width: 991px) {

    .main-navigation,
    .header-actions,
    .top-bar {
        display: none !important;
    }

    .ap-burger {
        display: block !important;
    }

    .site-branding {
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-hero-compact {
        padding: 60px 0 40px !important;
        margin-bottom: 30px !important;
    }

    .page-hero-compact .page-title {
        font-size: 2rem !important;
        margin-bottom: 5px !important;
    }

    .page-hero-compact .page-subtitle {
        font-size: 1rem !important;
    }

    .medya-kiti-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .medya-kiti-item {
        padding: 1.5rem !important;
        text-align: center !important;
    }

    .medya-kiti-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .basin-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .checkbox-group {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   Mobile Quick Navigation (Bottom Bar)
   Masaüstünde gizle, mobilde göster
   ============================================ */
.mobile-quick-nav {
    display: none;
    /* Varsayılan: masaüstünde gizle */
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 400px;
    padding: 8px 16px;
    border-radius: 24px;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.mobile-nav-item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
}

.mobile-nav-item span {
    font-size: 10px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-item.center-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    margin: -20px 8px 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.mobile-nav-item.center-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.mobile-nav-item.center-btn span {
    display: none;
}

/* Mobil alt menü barı kaldırıldı */
@media (max-width: 767px) {
    .mobile-quick-nav {
        display: none !important;
    }

    /* Footer alt padding artık gerekli değil */
    .site-footer {
        padding-bottom: 40px;
    }
}

/* ============================================
   PREMIUM MOBİL DENEYİM v2.0
   
   Prensipler:
   - Mobil = aynı site, sadeleştirilmiş değil
   - Orantılı ölçekleme (proportional scaling)
   - Görsel ritim korunur (visual rhythm)
   - Marka otoritesi kaybolmaz
   - Whitespace discipline
   ============================================ */

/* ============================================
   FLUID TYPOGRAPHY SCALE
   Desktop oranları korunur, sadece scale küçülür
   ============================================ */
:root {
    --mobile-scale: 0.875;
    /* %87.5 - desktop'un küçültülmüş hali */
}

@media (max-width: 767px) {

    /* ============================================
       TEMEL DÜZEN - ORAN KORUMA
       ============================================ */
    .container {
        padding-left: 20px;
        padding-right: 20px;
        /* Desktop padding oranı korunur: ~1.5% -> 5% mobilde */
    }

    main.site-main {
        padding-bottom: 40px;
    }

    /* ============================================
       TYPOGRAFİ - HİYERARŞİ KORUMA
       Desktop oranları: h1=2.5rem, h2=2rem, h3=1.5rem
       Mobil: aynı oran, küçültülmüş scale
       ============================================ */
    h1,
    .hero-title,
    .page-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    h2,
    .section-title {
        font-size: clamp(1.375rem, 5.5vw, 1.75rem);
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    h3,
    .card-title,
    .entry-title {
        font-size: clamp(1.0625rem, 4vw, 1.25rem);
        line-height: 1.3;
    }

    p,
    .body-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .small-text,
    .meta,
    .caption {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* ============================================
       HERO - MARKA OTORİTESİ KORUMA
       Kompakt ama güçlü, sadeleştirilmiş değil
       ============================================ */
    .hero-section,
    .site-hero {
        min-height: 50vh;
        padding: 60px 20px 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle,
    .hero-description {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .hero-buttons,
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons .btn,
    .hero-cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    /* ============================================
       SECTİON SPACING - VERTİKAL RİTİM
       Desktop: 80px -> Mobil: 48px (ratio: 0.6)
       ============================================ */
    section,
    .content-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-title {
        margin-bottom: 24px;
    }

    /* ============================================
       KARTLAR - GRİD LOJİĞİ KORUMA
       Desktop: 3 sütun -> Mobil: 1 sütun ama aynı kart oranı
       ============================================ */
    .posts-grid,
    .policies-grid,
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .post-card,
    .policy-card,
    .card {
        border-radius: 12px;
        /* Desktop border-radius oranı korunur */
    }

    .card-thumbnail,
    .post-thumbnail,
    .policy-image {
        aspect-ratio: 16/9;
        /* Desktop aspect ratio aynı kalır */
    }

    .card-content,
    .post-content,
    .policy-content {
        padding: 20px;
        /* Desktop padding ratio: 24px -> 20px = 0.83 */
    }

    /* ============================================
       BUTONLAR - DOKUNMA + GÖRSEL AĞIRLIK
       Minimum 44px ama abartılı değil
       ============================================ */
    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 0.9375rem;
        border-radius: 8px;
    }

    .btn-sm {
        min-height: 40px;
        padding: 10px 18px;
        font-size: 0.875rem;
    }

    .btn-lg {
        min-height: 52px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* ============================================
       FOOTER - YIĞILMIŞ AMA DÜZENLİ
       Chaos değil, kontrollü reflow
       ============================================ */
    .site-footer {
        margin-top: 48px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-logo-section {
        align-items: center;
    }

    .footer-site-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .footer-description {
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column-title {
        text-align: center;
        font-size: 0.9375rem;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-menu-list {
        align-items: center;
    }

    .footer-menu-list a {
        font-size: 0.875rem;
        padding: 8px 0;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
        font-size: 0.875rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 260px;
        margin: 0 auto;
    }

    .footer-cta-primary,
    .footer-cta-secondary {
        width: 100%;
        padding: 12px 20px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-left {
        order: 2;
    }

    .footer-bottom-left p {
        white-space: normal;
        font-size: 0.8125rem;
    }

    .footer-social-icons {
        order: 1;
    }

    .footer-bottom-right {
        order: 3;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-bottom-right .utility-separator {
        display: none;
    }

    .footer-bottom-right .utility-link {
        font-size: 0.75rem;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 4px;
    }

    /* ============================================
       FORMLAR - FONKSİYONEL + ESTETİK
       iOS zoom engelleme ama hoş görünüm
       ============================================ */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="search"],
    input[type="url"],
    input[type="number"],
    textarea,
    select {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
        /* iOS zoom engel */
        padding: 12px 16px;
        border-radius: 8px;
    }

    textarea {
        min-height: 100px;
    }

    label {
        font-size: 0.875rem;
        margin-bottom: 6px;
    }

    /* ============================================
       PAGE HEADERS - COMPACT AMA GÜÇLÜ
       ============================================ */
    .page-header,
    .entry-header {
        padding: 32px 0 24px;
        text-align: center;
    }

    .page-subtitle {
        font-size: 0.9375rem;
        opacity: 0.85;
    }

    /* ============================================
       NAVIGATION ELEMENTS
       ============================================ */
    .breadcrumb {
        font-size: 0.8125rem;
        padding: 10px 0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .pagination,
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .page-numbers {
        min-width: 40px;
        min-height: 40px;
        font-size: 0.875rem;
    }

    /* ============================================
       WHİTESPACE DİSCİPLİNE
       Abartılı padding/margin yok
       ============================================ */
    .intro-section {
        padding: 32px 0;
    }

    .action-buttons-section {
        flex-direction: column;
        gap: 12px;
        padding: 24px 0;
        max-width: 280px;
        margin: 0 auto;
    }

    .action-btn {
        width: 100%;
        padding: 14px 24px;
    }

    /* ============================================
       BANNER & MEDIA
       ============================================ */
    .policies-news-banner-section {
        padding: 24px 0;
    }

    .policies-news-banner {
        width: calc(100% - 40px);
        margin: 0 auto;
        border-radius: 8px;
    }

    /* ============================================
       TOUCH TARGET MINIMUM
       44px Apple guideline - ama görsel dengeyi bozmadan
       ============================================ */
    a:not(.btn):not(.card):not(.post-card) {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Inline linkler için padding sadece gerektiğinde */
    .footer-menu-list a,
    .breadcrumb a {
        padding: 8px 4px;
    }

    /* ============================================
       NO VISUAL FATIGUE
       Aşırı shadow, border, efekt yok
       ============================================ */
    .card,
    .post-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .card:hover,
    .post-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS - AGGRESSIVE (v5 Geniş Ekran)
   ============================================ */
@media (max-width: 767px) {

    /* Konteyner yan boşluklarını daha da daraltarak alan aç */
    .container {
        padding: 0 8px !important;
    }

    .featured-posts {
        margin-top: -1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .section-title {
        margin: 1.5rem 0 0.5rem !important;
        font-size: 1.4rem !important;
        padding: 0 4px !important;
    }

    .posts-grid {
        gap: 1rem !important;
        margin: 0.5rem 0 !important;
        padding: 0 !important;
    }

    /* Post Card Genişletme */
    .post-card {
        border-radius: 8px !important;
        margin: 0 !important;
        width: 100% !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }

    .post-card .card-content {
        padding: 0.75rem !important;
    }

    .post-card .card-title {
        margin-bottom: 0.2rem !important;
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }

    /* Tarih Çiftlenmesi Karşıtı Agresif CSS */
    .post-card .card-meta {
        margin-bottom: 0.25rem !important;
        font-size: 0.75rem !important;
    }

    .posted-on time+time {
        display: none !important;
    }

    .post-card .card-excerpt {
        margin-bottom: 0.75rem !important;
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }

    .post-card .card-excerpt p {
        margin-bottom: 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .post-card .card-footer {
        padding-top: 0.25rem !important;
    }

    .post-card .card-footer .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }

    .card-thumbnail {
        height: 180px !important;
    }
}

/* ============================================
   Standart Overlay Yapısı
   ============================================ */
:root {
    /* Overlay Değişkenleri */
    --overlay-color: #000000;
    --overlay-opacity: 0.75;
    --overlay-z-index: 1;
}

.page-overlay,
.yonetim-hero-overlay,
.login-image-overlay,
.galeri-overlay,
.single-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    opacity: var(--overlay-opacity);
    z-index: var(--overlay-z-index);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Customizer ile Yönetilen Hero Overlay */
.page-hero-overlay,
.yonetim-hero-overlay {
    opacity: var(--page-hero-overlay, var(--overlay-opacity));
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 58, 138, 0.65) 100%);
    /* Varsayılan gradient */
    background-color: transparent;
    /* Gradient olduğu için */
}

/* Login vb. sadece siyah overlay olanlar */
.login-image-overlay,
.galeri-overlay,
.single-post-overlay {
    background-color: #000;
    opacity: var(--page-hero-overlay, 0.6);
    /* Bunlar da aynı ayardan etkilensin istendi */
}

/* ============================================
   Page Hero Styles (Fix)
   ============================================ */
.page-hero {
    position: relative;
    padding: 6rem 0;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    color: #ffffff;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* Overlay (Katman) */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color, #000000);
    opacity: var(--page-hero-overlay, 0.75);
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* İçerik Container */
.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Başlık Stili */
.page-hero .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Alt Başlık Stili */
.page-hero .page-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0;
        min-height: 250px;
    }

    .page-hero .page-title {
        font-size: 2.5rem;
    }

    .page-hero .page-subtitle {
        font-size: 1.1rem;
    }
}

/* ============================================
   Bağış Sayfası Stilleri
   ============================================ */
.donation-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.donation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.donation-icon svg {
    width: 40px;
    height: 40px;
}

/* Banka Hesapları Grid */
.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Banka Kartı */
.bank-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(30, 58, 138, 0.2);
}

/* Kart Başlığı */
.bank-card-header {
    background: linear-gradient(to right, #f8fafc, #ffffff);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bank-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.bank-badge {
    background-color: var(--secondary-color);
    /* Kırmızı veya vurgu rengi */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kart İçeriği */
.bank-card-body {
    padding: 1.5rem;
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-group label {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    word-break: break-word;
}

/* IBAN Alanı */
.iban-wrapper {
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.iban-wrapper code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    flex: 1;
    letter-spacing: 1px;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background-color: #e2e8f0;
    color: var(--primary-color);
}

.copy-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Mobil Görünüm İyileştirmeleri (Responsive)
   ============================================ */
@media (max-width: 767px) {

    /* Global Font Boyutları */
    :root {
        --font-size-h1: 2rem;
        /* 32px */
        --font-size-h2: 1.625rem;
        /* 26px */
        --font-size-h3: 1.375rem;
        /* 22px */
        --font-size-h4: 1.125rem;
        /* 18px */
        --container-width: 100%;
        --spacing-unit: 0.75rem;
    }

    /* Container Kenar Boşlukları */
    .container {
        padding: 0 20px;
    }

    /* Hero Alanı Optimizasyonu */
    .page-hero {
        min-height: 200px !important;
        padding: 4rem 0 3rem !important;
        /* Üstten biraz daha pay bırak (header altı) */
        background-attachment: scroll !important;
        /* Mobilde fixed sorun yaratabilir */
        background-position: center center !important;
    }

    .page-hero .page-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .page-hero .page-subtitle {
        font-size: 1rem !important;
        max-width: 100%;
    }

    /* Bölüm Boşlukları */
    section {
        padding: 2.5rem 0;
    }

    /* Front Page Hero Intro */
    .intro-section {
        margin-bottom: 2rem;
        text-align: center;
    }

    .intro-title {
        font-size: 1.5rem !important;
    }

    .intro-text {
        font-size: 1rem !important;
    }

    /* Grid Yapıları (Tek Kolon) */
    .posts-grid,
    .yonetim-grid,
    .kurullar-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Kartlar Arası Boşluk */
    .card,
    .yonetim-card,
    .news-card {
        margin-bottom: 1rem;
    }
}

/* ============================================
   Bağış Sayfası - Premium Tasarım
   ============================================ */
.donation-wrapper {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.donation-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.donation-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donation-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.bank-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Premium Banka Kartı */
.bank-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(30, 58, 138, 0.2);
}

.bank-card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bank-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.bank-icon svg {
    width: 24px;
    height: 24px;
}

.bank-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.bank-card-body {
    padding: 1.5rem;
}

.bank-info-row {
    margin-bottom: 1.25rem;
}

.bank-info-row:last-child {
    margin-bottom: 0;
}

.bank-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bank-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    word-break: break-all;
}

/* IBAN Kopyalama Alanı */
.iban-container {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    group: hover;
}

.iban-container:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
}

.iban-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.copy-action {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.bank-card:hover .copy-action {
    color: var(--primary-color);
    background-color: #ffffff;
}

/* Bildirim Kutusu (Toast) */
.notification-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #10b981;
    /* Başarı yeşili */
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-toast svg {
    width: 20px;
    height: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .bank-cards-grid {
        grid-template-columns: 1fr;
    }

    .iban-number {
        font-size: 0.9rem;
    }

    .notification-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        justify-content: center;
    }
}

/* ============================================
   Bağış Sayfası - Referans Tasarım (Anahtar Parti)
   ============================================ */
.donation-page-wrapper {
    padding: 3rem 0;
    background-color: #fff;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

@media (max-width: 991px) {
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Sol Kolon - Form */
.donation-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.donation-left h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.donation-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 576px) {
    .donation-form-row {
        grid-template-columns: 1fr;
    }
}

.donation-form-group {
    margin-bottom: 1.25rem;
}

.donation-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #444;
}

.donation-form-label .required {
    color: #e11d48;
    margin-left: 2px;
}

.donation-form-input,
.donation-form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.donation-form-input:focus,
.donation-form-select:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Sağ Kolon - Bilgi */
.donation-right {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #eee;
}

.donation-right h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.donation-info-block {
    margin-bottom: 2rem;
}

.donation-info-block h3 {
    font-size: 0.95rem;
    /* Biraz daha küçük ve zarif */
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
    text-transform: uppercase;
}

.donation-info-block p,
.donation-info-block ul {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.donation-info-block ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.donation-info-block li {
    margin-bottom: 0.5rem;
}

/* Ödeme Alanı (Banka Kartları Entegre) */
.donation-payment-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.donation-sub-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Küçük Banka Kartı (Form içi) */
.mini-bank-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mini-bank-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mini-bank-info h4 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    color: var(--primary-color);
    font-weight: 700;
}

.mini-bank-detail {
    font-size: 0.85rem;
    color: #64748b;
}

.mini-bank-iban-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background 0.2s;
}

.mini-bank-iban-wrapper:hover {
    background: #e2e8f0;
}

.mini-bank-iban {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.mini-copy-icon {
    color: #64748b;
    width: 16px;
    height: 16px;
}

/* Mobil Alt Bar benzeri vurgu */
.donation-note {
    background-color: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 2rem;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid #ffeeba;
}

/* ============================================
   KULLANICI TALEBİ - POST CARD (HABER) OPTİMİZASYON (MOBİL)
   ============================================ */
@media screen and (max-width: 768px) {

    /* 1. Kart boşluklarını sıfırla (Görsel tam genişlik olsun) */
    .post-card {
        padding: 0 !important;
        margin-bottom: 24px !important;
        height: auto !important;
        border: 1px solid #eee !important;
        /* Hafif çerçeve */
        border-radius: 12px !important;
        /* Modern köşeler */
        overflow: hidden !important;
        /* Görsel taşmasın */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    }

    /* 2. Görsel ayarları - SIFIR BOŞLUK */
    .post-card .post-thumbnail,
    .post-card img {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        border-radius: 0 !important;
        /* Kartın radius'u yeterli */
        aspect-ratio: 16 / 9;
        /* Görsel standardı */
        object-fit: cover;
    }

    /* 3. İçerik Alanı (Metinler kenara yapışmasın diye padding veriyoruz) */
    .post-card h2,
    .post-card h3,
    .post-card .entry-title {
        padding: 0 16px !important;
        /* Sağdan soldan boşluk */
        margin-top: 16px !important;
        margin-bottom: 8px !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    .post-card .entry-meta,
    .post-card .post-date {
        padding: 0 16px !important;
        font-size: 13px !important;
        margin-bottom: 12px !important;
        display: block;
        color: #888;
    }

    .post-card p,
    .post-card .entry-content {
        padding: 0 16px !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
        color: #444;
    }

    /* 6. "Devamını Oku" butonu */
    .post-card .btn,
    .post-card a.button,
    .post-card .read-more {
        margin: 0 16px 20px 16px !important;
        /* Alt, sol, sağ +4px */
        width: calc(100% - 32px) !important;
        /* Paddingler düşüldü */
        display: block !important;
        text-align: center !important;
        padding: 10px 0 !important;
    }
}

/* 4. Görselin (varsa) alt boşluğu */
.policy-card img,
.policy-image {
    margin-bottom: 8px;
}

/* ==========================================================================
/* ==========================================================================
   MOBILE FOOTER ACCORDION
   ========================================================================== */
@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column-title {
        cursor: pointer;
        position: relative;
        padding: 15px 0;
        margin-bottom: 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    .footer-column-title::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 300;
        transition: transform 0.3s ease;
        line-height: 1;
    }

    .footer-column.active .footer-column-title::after {
        content: '-';
        transform: rotate(180deg);
    }

    .footer-menu-list,
    .footer-contact-list {
        display: none;
        padding-bottom: 20px;
        animation: fadeIn 0.3s ease;
    }

    .footer-column.active .footer-menu-list,
    .footer-column.active .footer-contact-list {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ==========================================================================
   MODERN SOCIAL MEDIA ICONS
   ========================================================================== */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    /* Light bg for white/light themes */
    border-radius: 12px;
    /* Modern squircle */
    color: #374151;
    /* Default dark text */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

/* Topbar override */
.top-bar .social-link {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Brand Colors on Hover */
.social-link-facebook:hover {
    background-color: #1877F2 !important;
    color: #fff !important;
}

.social-link-twitter:hover {
    background-color: #000000 !important;
    color: #fff !important;
}

.social-link-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #fff !important;
}

.social-link-youtube:hover {
    background-color: #FF0000 !important;
    color: #fff !important;
}

.social-link-linkedin:hover {
    background-color: #0077B5 !important;
    color: #fff !important;
}

@media (max-width: 768px) {

    /* Mobil Form İyileştirmeleri */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
        /* iOS zoom önleme */
    }

    .wpcf7-form-control-wrap {
        width: 100% !important;
        display: block !important;
    }

    .contact-form-row,
    .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    button[type="submit"],
    input[type="submit"] {
        width: 100% !important;
        padding: 15px !important;
    }

    /* Mobil İletişim Bilgisi Hizalama */
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Footer Specific Adjustments */
.site-footer .social-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons .social-links {
    justify-content: center;
}

/* Footer Contact Item - Email Break Fix */
.footer-contact-item a {
    word-break: break-all;
    display: inline-block;
}

/* ============================================
   Homepage: Hero Slider
   ============================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-slider {
    position: relative;
    height: 500px;
    /* Default height */
    width: 100%;
}

@media (min-width: 992px) {
    .hero-slider {
        height: 600px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 800ms ease, visibility 800ms ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-inverse);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
}

.hero-slider-nav:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--text-inverse);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-dot.active {
    background: var(--brand-primary);
    transform: scale(1.2);
}

/* Intro Section */
.intro-section {
    text-align: center;
    padding: var(--space-8) 0;
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--brand-primary);
    margin-bottom: var(--space-4);
}

.intro-text {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
}

/* ============================================
   Homepage: Action Buttons
   ============================================ */
.action-buttons-section {
    padding: var(--space-8) 0;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .action-buttons-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
    height: 100%;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.action-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.action-button-donate {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    color: white;
}

.action-button-join {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.action-button-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.action-button-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button-icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

/* ============================================
   Homepage: Policies Section
   ============================================ */
.policies-section {
    padding: var(--space-10) 0;
    background-color: var(--bg-secondary);
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.policy-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.policy-image {
    position: relative;
    padding-top: 60%;
    /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.policy-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.policy-card:hover .policy-image img {
    transform: scale(1.05);
}

.policy-content {
    padding: var(--space-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.policy-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    line-height: var(--lh-tight);
}

.policy-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

.policy-title a:hover {
    color: var(--brand-primary);
}

.policy-description {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    flex-grow: 1;
}

.policy-link {
    align-self: flex-start;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-primary);
    text-decoration: none;
}

.policy-link:hover {
    text-decoration: underline;
}

/* ============================================
   Homepage: Banner Section
   ============================================ */
.policies-news-banner-section {
    margin: var(--space-10) 0;
}

.policies-news-banner .banner-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Homepage: Featured Posts
   ============================================ */
.featured-posts {
    padding: var(--space-10) 0;
}

.section-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
    position: relative;
    padding-bottom: var(--space-4);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand-primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    /* Çerçeve kaldırıldı */
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-thumbnail {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.post-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.card-content {
    padding: 3rem;
    /* Padding artırıldı (var(--space-5) -> 3rem) */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: var(--space-3);
}

.card-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-2);
}

.card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.card-title a:hover {
    color: var(--brand-primary);
}

.card-meta {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-excerpt {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color-light);
    padding-top: var(--space-4);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--text-inverse);
}

/* ============================================
   Homepage: Hero Slider
   ============================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-slider {
    position: relative;
    height: 500px;
    /* Default height */
    width: 100%;
}

@media (min-width: 992px) {
    .hero-slider {
        height: 600px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 800ms ease, visibility 800ms ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-inverse);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
}

.hero-slider-nav:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--text-inverse);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-dot.active {
    background: var(--brand-primary);
    transform: scale(1.2);
}

/* Intro Section */
.intro-section {
    text-align: center;
    padding: var(--space-8) 0;
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--brand-primary);
    margin-bottom: var(--space-4);
}

.intro-text {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
}

/* ============================================
   Homepage: Action Buttons
   ============================================ */
.action-buttons-section {
    padding: var(--space-8) 0;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .action-buttons-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
    height: 100%;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.action-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.action-button-donate {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    color: white;
}

.action-button-join {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.action-button-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.action-button-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button-icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

/* ============================================
   Homepage: Policies Section
   ============================================ */
.policies-section {
    padding: var(--space-10) 0;
    background-color: var(--bg-secondary);
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.policy-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.policy-image {
    position: relative;
    padding-top: 60%;
    /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.policy-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.policy-card:hover .policy-image img {
    transform: scale(1.05);
}

.policy-content {
    padding: var(--space-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.policy-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    line-height: var(--lh-tight);
}

.policy-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

.policy-title a:hover {
    color: var(--brand-primary);
}

.policy-description {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    flex-grow: 1;
}

.policy-link {
    align-self: flex-start;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-primary);
    text-decoration: none;
}

.policy-link:hover {
    text-decoration: underline;
}

/* ============================================
   Homepage: Banner Section
   ============================================ */
.policies-news-banner-section {
    margin: var(--space-10) 0;
}

.policies-news-banner .banner-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Homepage: Featured Posts
   ============================================ */
.featured-posts {
    padding: var(--space-10) 0;
}

.section-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
    position: relative;
    padding-bottom: var(--space-4);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand-primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color-light);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-accent);
}

.card-thumbnail {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.post-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-5);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: var(--space-3);
}

.card-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-2);
}

.card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.card-title a:hover {
    color: var(--brand-primary);
}

.card-meta {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-excerpt {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color-light);
    padding-top: var(--space-4);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--text-inverse);
}

/* ============================================
   Page: Yonetim (Management - Premium Redesign)
   ============================================ */
.yonetim-page-wrapper {
    padding: var(--space-12) 0;
    background-color: #f5f5f7;
    /* Apple-like light gray background */
    font-family: var(--font-family-base);
}

/* Premium Tabs (Segmented Control Style) */
.yonetim-tabs-wrapper {
    display: inline-flex;
    background: rgba(118, 118, 128, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4px;
    border-radius: 99px;
    /* Pill shape */
    position: relative;
    margin: 0 auto var(--space-12);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.yonetim-tab {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    opacity: 0.7;
}

.yonetim-tab:hover {
    opacity: 1;
}

.yonetim-tab.active {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    opacity: 1;
    font-weight: 600;
}

/* Sections Animation */
.yonetim-section {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlight (President) Section */
.yonetim-highlight-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-8);
    /* Reduced from space-16 */
}

.yonetim-highlight-wrapper .yonetim-card {
    max-width: 320px;
    /* Reduced width */
    width: 100%;
    margin: 0 auto;
}

.yonetim-highlight-wrapper .yonetim-card-image {
    aspect-ratio: 285 / 364.7;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 767px) {
    .yonetim-highlight-wrapper .yonetim-card {
        width: 285px !important;
        max-width: 285px !important;
    }
}

/* Grid Layout - Clean & Spacious */
.yonetim-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    /* Tighter gap */
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .yonetim-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .yonetim-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Premium Card Design (Minimalist) */
.yonetim-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.yonetim-card-image-wrapper {
    width: 100%;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    transform: none;
    transition: none;
    background-color: #f5f5f7;
    box-shadow: none;
}

/* Hover Effect: Scale & Lift */
.yonetim-card-image-wrapper:hover {
    transform: none;
    box-shadow: none;
}

.yonetim-card-image {
    width: 100%;
    aspect-ratio: 285 / 364.7;
    position: relative;
    background: #f5f5f7;
    display: block;
    overflow: hidden;
}

.yonetim-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15%;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    transform: scale(1.03);
    filter: none;
    display: block;
}

/* Social Overlay - Frosted Glass */
.yonetim-card-overlay {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.85);
    /* Highly translucent white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 99px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.yonetim-card-image-wrapper:hover .yonetim-card-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.yonetim-social-btn {
    color: #1d1d1f;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yonetim-social-btn:hover {
    color: var(--brand-primary);
    transform: scale(1.1);
}

.yonetim-social-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

/* Card Content - Typography */
.yonetim-card-content {
    width: 100%;
}

.yonetim-card-name {
    font-size: 17px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.yonetim-card-role {
    font-size: 13px;
    font-weight: 400;
    color: #86868b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Empty State */
.yonetim-empty {
    text-align: center;
    padding: 60px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    color: #86868b;
}

/* Placeholder Icon */
.yonetim-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    color: #d1d1d6;
}