/* ===================================================================
   TİHMENDER - Custom Styles (works WITH Bootstrap, not against it)
   =================================================================== */

/* ===== GLOBAL FONT ONLY (let Bootstrap handle resets) ===== */
body {
    font-family: "Inter", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===== CUSTOM DESIGN-SYSTEM BUTTONS (ds-btn) ===== */
.ds-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .6rem 1rem; border-radius: .5rem; border: 1px solid var(--text);
    background: transparent; color: var(--text); cursor: pointer;
    text-decoration: none; font-weight: 600; font-size: .9rem;
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.ds-btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ds-btn:active {
    transform: translateY(0);
}
.ds-btn-primary { 
    background: var(--primary); 
    color: #fff; 
    border-color: var(--primary);
}
.ds-btn-primary span {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.ds-btn-primary:hover { 
    background: #9a3224; 
    border-color: #9a3224; 
    color: #fff;
    box-shadow: 0 6px 20px rgba(178, 58, 44, 0.4);
}
.ds-btn-accent { background: var(--accent); color: var(--text); border-color: var(--accent); }
.ds-btn-accent:hover {
    background: #d9b343;
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.4);
}
.ds-btn-ghost { background: transparent; color: var(--text); border-color: var(--text); }
.ds-btn-ghost:hover { 
    background: rgba(0,0,0,.05);
    border-color: var(--primary);
    color: var(--primary);
}
.ds-btn-sm { padding: .35rem .6rem; font-size: .85rem; }
.ds-btn-lg { padding: .75rem 1.25rem; font-size: 1rem; }
.ds-btn:disabled { opacity: .6; cursor: not-allowed; }
.ds-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.ds-btn-group { display: inline-flex; gap: .25rem; }

/* ===== CUSTOM BADGES ===== */
.ds-badge {
    display: inline-flex; align-items: center; gap: .25rem;
    padding: .2rem .6rem; border-radius: 999px; font-size: .8rem;
    border: 1px solid var(--text);
}
.ds-badge-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.ds-badge-accent { background: var(--accent); color: var(--text); border-color: var(--accent); }

/* ===== CUSTOM ALERTS ===== */
.ds-alert { border: 1px solid var(--text); padding: .75rem 1rem; border-radius: .5rem; }
.ds-alert-primary { border-color: var(--primary); }
.ds-alert-accent { border-color: var(--accent); }

/* ===== CUSTOM COLORS ===== */
.t-primary { color: var(--primary); }
.t-accent { color: var(--accent); }
.t-text { color: var(--text); }
.t-muted { color: var(--text); opacity: .7; }

/* ===== APP LOADING SCREEN ===== */
#app-loading {
    position: fixed; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; background: #ffffff;
    z-index: 99999; transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
#app-loading.fade-out { opacity: 0; visibility: hidden; }
#app-loading .loading-logo {
    width: 220px;
    max-width: 60vw;
    height: auto;
    filter: none;
    animation: loadingPulse 2s ease-in-out infinite;
}
#app-loading .loading-text {
    color: rgba(0,0,0,.45);
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .08em;
    margin-top: 2rem;
    text-transform: uppercase;
}
#app-loading .loading-spinner { display: none; }
@keyframes loadingPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .82; transform: scale(.97); }
}

/* ===== AUTH DEMO CARD ===== */
.auth-demo-card {
    background: rgba(178,58,44,.05);
    border: 1px solid rgba(178,58,44,.18);
    border-radius: .6rem;
    padding: .75rem 1rem;
    font-size: .85rem;
}
.auth-demo-title {
    font-weight: 700;
    color: var(--primary, #B23A2C);
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.auth-demo-item {
    color: var(--text, #2b2b2b);
    line-height: 1.8;
}

/* ===== BLAZOR ERROR UI ===== */
.blazor-error-ui { display: none; }
.blazor-error-card {
    background: var(--bg); color: var(--text); padding: 1.25rem;
    border: 1px solid var(--text); border-radius: .75rem;
    max-width: 500px; margin: 0 auto;
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 100000;
}
.blazor-error-actions { display: flex; gap: .5rem; margin-top: .75rem; }
.blazor-error-reload, .blazor-error-dismiss {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .4rem .8rem; border: 1px solid var(--text); border-radius: .5rem;
    color: var(--text); text-decoration: none; cursor: pointer; background: transparent;
}

/* ===== PUBLIC SECTIONS ===== */
.public-section { padding: 3rem 0; }
.public-section-title {
    font-size: 1.6rem; font-weight: 700; margin-bottom: 2rem;
    text-align: center; color: var(--text);
}

/* ===== HOME HERO ===== */
.home-hero { width: 100%; height: 100%; overflow: hidden; }

/* ===== HERO SLIDER ===== */
.hero-slider {
width: 100%; position: relative; overflow: hidden;
height: 100%;
    background: radial-gradient(circle at top left, rgba(242,201,76,.18), transparent 45%),
                linear-gradient(135deg, rgba(178,58,44,.88), rgba(43,43,43,.9));
}
.hero-slider-loading {
    display: flex; align-items: center; justify-content: center; height: 100%;
    background: rgba(0,0,0,.03);
}
.hero-slider-spinner { display: flex; align-items: center; justify-content: center; }

.slider-container { position: relative; width: 100%; height: 100%; }
.slider-slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    transition: opacity .6s ease-in-out;
}
.slider-slide.active { z-index: 2; opacity: 1; }
.slider-image {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center; display: block;
}
.slider-link { display: block; width: 100%; height: 100%; }

.hero-slider-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 45%, rgba(0,0,0,.15) 70%, rgba(0,0,0,0) 100%);
    z-index: 3; pointer-events: none;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: .35;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.hero-slider-content,
.hero-slider-content-inner,
.hero-cta-surface,
.hero-slider-badge,
.hero-slider-title,
.hero-slider-subtitle,
.hero-slider-actions,
.hero-slider-tagline {
    display: none;
}

/* Slider Navigation Arrows — hidden by default, visible on wrapper hover */
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 32px; height: 32px;
    border: none; border-radius: 50%;
    background: rgba(0,0,0,.22); color: #fff;
    font-size: .95rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s, opacity .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    opacity: 0;
    pointer-events: none;
}
.slider-arrow:hover { background: rgba(0,0,0,.5); transform: translateY(-50%) scale(1.05); }
.slider-arrow-prev { left: 1rem; }
.slider-arrow-next { right: 1rem; }
.hero-slider:hover .slider-arrow,
.hero-slider:focus-within .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute; bottom: 1rem; left: 50%;
    transform: translateX(-50%); z-index: 10;
    display: flex; gap: .5rem;
}
.slider-indicator {
    width: 20px; height: 4px; border-radius: 999px;
    border: none; background: rgba(255,255,255,.45);
    cursor: pointer; padding: 0; transition: background .2s, width .2s;
}
.slider-indicator.active { background: var(--primary); width: 28px; }

@media (max-width: 575px) {
    .hero-slider, .hero-slider-loading { height: 300px; }
    .hero-slider-content { justify-content: center; text-align: center; }
    .hero-slider-content-inner { max-width: 480px; }
    .hero-cta-surface { align-items: center; }
}

@media (min-width: 992px) {
    .hero-slider, .hero-slider-loading { height: 100%; }
}

/* ===== HERO SLIDER FALLBACK ===== */
.hero-slider-fallback {
background: linear-gradient(135deg, rgba(178,58,44,.85), rgba(43,43,43,.9));
color: #fff; padding: 3rem 1.5rem; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.hero-slider-fallback-content { text-align: center; max-width: 600px; }
.hero-slider-fallback-logo { max-width: 120px; margin: 0 auto 1.5rem; }
.hero-slider-fallback-title { font-size: 2.5rem; font-weight: 800; margin-bottom: .5rem; }
.hero-slider-fallback-subtitle { font-size: 1.1rem; opacity: .85; margin-bottom: 1.5rem; }
.hero-slider-fallback-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== HOME TOP GRID ===== */
.home-section-divider { display: none; }
.home-top-grid {
    padding: 1.5rem 0 1.25rem;
    background: #fff;
}

.home-top-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 1.25rem;
    align-items: start;
    min-height: 0;
}

.home-left-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    min-height: 0;
    max-height: 480px;
}

.home-right-hero {
    min-height: 340px;
    max-height: 480px;
    height: auto;
    display: flex;
    min-height: 0;
}

.home-right-hero .home-hero,
.home-right-hero .hero-slider,
.home-right-hero .hero-slider-loading,
.home-right-hero .hero-slider-fallback {
    height: 100%;
}

.home-card {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home-top-layout { grid-template-columns: 58% 42%; }
}

@media (max-width: 991px) {
    .home-top-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hero"
            "stack";
        min-height: auto;
        max-height: none;
    }
    .home-right-hero { grid-area: hero; min-height: 320px; height: auto; }
    .home-left-stack { grid-area: stack; height: auto; }
}

.home-wide-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.home-verse-band {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(242,201,76,.15) 0%, transparent 48%),
        radial-gradient(ellipse at 10% 85%, rgba(178,58,44,.25) 0%, transparent 52%),
        linear-gradient(135deg, #111 0%, #2b1a15 45%, #3a1f18 100%);
    color: #fff;
    padding: 2rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-verse-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'%3E%3Cpath d='M45 0 L90 45 L45 90 L0 45 Z'/%3E%3Cpath d='M45 12 L78 45 L45 78 L12 45 Z'/%3E%3Ccircle cx='45' cy='45' r='20'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 1;
}

.verse-band-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.verse-band-quote {
    font-weight: 600;
    line-height: 1.7;
    font-size: 1.3rem;
    letter-spacing: .015em;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.verse-band-meta {
    font-size: .85rem;
    opacity: .8;
    font-style: italic;
    letter-spacing: .02em;
}

.verse-band-placeholder {
    width: 100%;
    max-width: 600px;
    height: 0;
    border-radius: .5rem;
    background: transparent;
}

@media (max-width: 991px) {
    .verse-band-content { text-align: center; }
    .verse-band-quote { font-size: 1.05rem; }
}

@media (max-width: 575px) {
    .verse-band-quote { font-size: .95rem; }
}

.home-announcement-band {
    background: var(--primary);
    color: #fff;
    padding: .85rem 0;
}

.announcement-band-content {
    display: flex; align-items: center; gap: 1.5rem;
}

.announcement-band-title {
    display: flex; align-items: center; gap: .5rem;
    font-weight: 700; font-size: .95rem; white-space: nowrap;
}

.announcement-band-items {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .6rem; flex: 1;
}

.announcement-band-item {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .4rem .6rem; border-radius: .5rem;
    background: rgba(255,255,255,.14); color: #fff;
    text-decoration: none; font-size: .82rem; font-weight: 600;
    transition: background .2s, transform .2s;
}

.announcement-band-item:hover {
    background: rgba(255,255,255,.24);
    transform: translateY(-1px);
}

.announcement-band-item.empty { opacity: .8; }

.announcement-band-item .band-item-icon {
    width: 26px; height: 26px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.2); font-size: .75rem;
}

.announcement-band-item .band-item-text {
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .announcement-band-content { flex-direction: column; align-items: flex-start; }
    .announcement-band-items { width: 100%; }
}

.home-three-col {
    padding: 3.5rem 0 3rem;
    margin-top: -3rem;
    background: linear-gradient(180deg, rgba(255,250,245,.96) 0%, #fff 60%);
}
.three-col-grid {
    display: grid; grid-template-columns: 35fr 35fr 30fr;
    gap: 1.5rem; max-width: 1500px; margin: 0 auto; padding: 0 1.5rem;
    align-items: stretch;
}
@media (max-width: 1199px) {
    .three-col-grid { grid-template-columns: repeat(2, 1fr); }
    .three-col-card.verse-card { grid-column: span 2; }
}
@media (max-width: 991px) {
    .three-col-grid { grid-template-columns: 1fr; }
    .home-three-col { margin-top: -1.5rem; padding-top: 3rem; }
}

.three-col-card {
    background: #fff; border: 1px solid rgba(0,0,0,.04);
    border-radius: .85rem; overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.three-col-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.09);
}
/* REMOVED: Full-width header bar - replaced with badge */
.card-label {
    display: none !important; /* Hide the old full-width header */
}

/* NEW: Small badge design for card labels */
.card-label-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .75rem;
    border-radius: 8px;
    background: #B23A2C;
    color: #fff;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    width: fit-content;
    margin: .85rem 0 .85rem 1rem;
    box-shadow: 0 2px 6px rgba(178, 58, 44, 0.25);
    transition: transform .2s, box-shadow .2s;
}

.card-label-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(178, 58, 44, 0.35);
}

.card-label-badge i {
    font-size: .8rem;
}

.card-label-badge a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.card-label-badge a:hover {
    opacity: .9;
}

/* Keep accent line but adjust positioning */

.card-label-link {
    font-size: .8rem; font-weight: 600; color: #fff;
    text-decoration: none; transition: color .2s, transform .2s;
    padding: .2rem .45rem; border-radius: .35rem;
}
.card-label-link:hover { color: var(--accent); transform: translateX(2px); }
.card-label-accent {
    display: none; /* Remove accent line as we now use badges */
}
.card-label-live {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .72rem; font-weight: 600; color: var(--text); opacity: .7;
}
.card-label-live .live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 0 4px rgba(242,201,76,.25);
}
.three-col-loading {
    display: flex; align-items: center; justify-content: center; min-height: 220px;
}
.three-col-empty {
    display: flex; align-items: center; justify-content: center;
    min-height: 180px; color: var(--text); background: rgba(0,0,0,.02);
    flex: 1;
}
.three-col-empty-inner {
    text-align: center; max-width: 240px; display: flex; flex-direction: column;
    align-items: center; gap: .5rem; padding: 1rem;
}
.three-col-empty-inner i {
    width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(178,58,44,.08); color: var(--primary);
    font-size: 1.15rem;
}
.three-col-empty-inner .empty-title { font-weight: 700; font-size: .92rem; }
.three-col-empty-inner .empty-text { font-size: .82rem; opacity: .6; }
.three-col-slider { flex: 1; position: relative; display: flex; flex-direction: column; }
.three-col-slider { overflow: hidden; }
.three-col-slide { display: none; }
.home-card .three-col-indicators { display: none; }
.three-col-slide img, .three-col-slide-image {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.three-col-slide-link { display: block; height: 100%; }
.three-col-slide-title {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: .75rem 1rem; font-size: .92rem; font-weight: 600;
    color: #fff; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 100%);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.three-col-indicators { display: flex; gap: .35rem; justify-content: center; padding: .75rem; }
.three-col-indicators .indicator {
    width: 18px; height: 4px; border-radius: 999px;
    background: rgba(0,0,0,.2); border: none; cursor: pointer;
    padding: 0; transition: background .2s, width .2s;
}
.three-col-indicators .indicator.active { background: var(--primary); width: 26px; }

.three-col-list {
    display: grid;
    gap: 0;
    padding: .85rem 1rem 0.75rem;
    flex: 1;
    overflow: hidden;
}

/* Smooth transition for auto-rotating cards */
.home-card-slide-container {
    animation: homeCardFadeSlide .6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

@keyframes homeCardFadeSlide {
    from { 
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to   { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.three-col-list-item {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: .75rem;
    padding: .65rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 14px rgba(0,0,0,.05);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
    overflow: hidden;
}
.three-col-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.three-col-list-cover {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.three-col-list-cover::after {
    content: "";
    position: absolute;
    inset: 0;
}
.three-col-list-thumbnail {
    width: 100%;
    height: 100%;
    min-height: 170px;
    border-radius: .65rem;
    object-fit: cover;
    object-position: center;
    display: block;
    background: linear-gradient(135deg, rgba(178,58,44,.08), rgba(242,201,76,.12));
}
.three-col-list-thumbnail.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .3rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}
.three-col-list-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.three-col-list-title {
    font-weight: 700; font-size: .9rem; color: var(--text);
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    overflow: hidden;
}
.three-col-list-text {
    font-size: .78rem;
    color: var(--text);
    opacity: .65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.three-col-list-meta {
    font-size: .72rem; color: var(--text); opacity: .55;
    margin-top: .1rem;
}

@media (max-width: 991px) {
    .home-left-stack { max-height: none; }
    .home-right-hero { max-height: none; }
    .three-col-list-thumbnail { height: clamp(150px, 24vh, 180px); }
}

@media (max-width: 575px) {
    .three-col-list-thumbnail { height: clamp(140px, 28vh, 170px); }
}

/* Home Card Navigation Arrows (Duyurular / Haberler mini-slider) */
.home-card-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem .75rem;
    border-top: 1px solid rgba(0,0,0,.06);
    flex-shrink: 0;
}

.home-card-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    font-size: .85rem;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
    padding: 0;
}

.home-card-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.home-card-nav-btn:active {
    transform: scale(.95);
}

.home-card-nav-counter {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text);
    opacity: .6;
    min-width: 40px;
    text-align: center;
}

.three-col-footer-link {
    padding: .7rem 1rem;
    font-size: .8rem; font-weight: 600; color: var(--primary);
    text-decoration: none; display: inline-flex; align-items: center; gap: .35rem;
    border-top: 1px solid rgba(0,0,0,.04);
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.three-col-footer-link:hover {
    color: #9a3224;
    background: rgba(178,58,44,.03);
}
.three-col-footer-link i { transition: transform .2s; }
.three-col-footer-link:hover i { transform: translateX(3px); }

/* Verse/Hadith Card */
.verse-card {
    background: linear-gradient(160deg, rgba(178,58,44,.05), rgba(242,201,76,.12));
}
.verse-body {
    padding: 1.5rem; flex: 1; display: flex; flex-direction: column;
    justify-content: center; gap: .75rem; transition: opacity .4s;
}
.verse-body.vh-fade { opacity: .6; }
.vh-type {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: var(--primary); margin-bottom: 0;
}
.vh-quote {
    background: rgba(255,255,255,.75); border-radius: .75rem;
    padding: 1rem 1.1rem; border-left: 4px solid var(--primary);
    box-shadow: 0 6px 16px rgba(0,0,0,.05);
}
.vh-text { font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: .5rem; }
.vh-meta { font-size: .82rem; color: var(--text); opacity: .6; font-style: italic; }
.vh-error { font-size: .8rem; }

.vh-skeleton { display: flex; flex-direction: column; gap: .6rem; }
.vh-skeleton-line { height: 12px; border-radius: 999px; }
.vh-skeleton-title { width: 120px; height: 14px; }
.vh-skeleton-line.short { width: 60%; }

.vh-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .5rem; text-align: center; color: var(--text);
}
.vh-empty-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(178,58,44,.1); color: var(--primary);
    font-size: 1.3rem;
}
.vh-empty-title { font-weight: 700; font-size: .95rem; }
.vh-empty-text { font-size: .85rem; opacity: .65; }

/* ===== ACTIVITY GRID ===== */
.activity-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.activity-card {
    background: var(--bg); border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem; padding: 1.5rem; text-align: center;
    transition: border-color .2s, box-shadow .2s;
}
.activity-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.activity-card-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: .75rem; }
.activity-card-title { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }

/* ===== PUBLIC CARD OVERRIDES (on top of Bootstrap .card) ===== */
.public-card { border-color: rgba(0,0,0,.08); transition: box-shadow .2s, border-color .2s; }
.public-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: rgba(0,0,0,.15); }
.public-card-title { font-size: 1rem; font-weight: 600; color: var(--text); }
.public-card-text { font-size: .9rem; color: var(--text); opacity: .7; }
.public-card-img-top { height: 200px; object-fit: cover; }

/* ===== ABOUT PAGE PLACEHOLDER ===== */
.about-image-placeholder { border: 1px solid rgba(0,0,0,.06); border-radius: .75rem; }

/* ===== NEWS LIST HORIZONTAL CARDS (Professional News Feed) ===== */
.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-list-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.news-list-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-list-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border-color: rgba(178,58,44,.15);
    transform: translateX(4px);
}

.news-list-card:hover::before {
    transform: scaleY(1);
}

.news-list-card-thumb {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    border-radius: .65rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(178,58,44,.06), rgba(242,201,76,.08));
    position: relative;
}

.news-list-card-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.08) 100%);
    pointer-events: none;
}

.news-list-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-list-card:hover .news-list-card-thumb img {
    transform: scale(1.05);
}

.news-list-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    opacity: .15;
    font-size: 3rem;
}

.news-list-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    padding: .25rem 0;
}

.news-list-badge {
    align-self: flex-start;
    margin-bottom: .15rem;
}

.news-list-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color .2s;
}

.news-list-card:hover .news-list-card-title {
    color: var(--primary);
}

.news-list-card-summary {
    font-size: .95rem;
    color: var(--text);
    opacity: .7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.news-list-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .85rem;
    color: var(--text);
    opacity: .55;
    margin-top: .35rem;
}

.news-list-card-meta i {
    margin-right: .3rem;
}

.news-list-card-read {
    color: var(--primary);
    font-weight: 600;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: .25rem;
    transition: gap .2s;
}

.news-list-card:hover .news-list-card-read {
    gap: .5rem;
}

@media (max-width: 991px) {
    .news-list-card-thumb {
        width: 240px;
        height: 160px;
    }
    
    .news-list-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .news-list-card { }
}

/* BEGIN NelerYapiyoruz ============================================== */
/* Scope: .page-whatwedo — Alternating Light/Dark Editorial Bands     */
/* Dark band = Tarihçe premium theme language                        */
/* ================================================================== */

/* ── Variables ── */
.page-whatwedo {
  --wwd-red: #B23A2C;
  --wwd-red-dark: #9a3224;
  --wwd-gold: #F2C94C;
  --wwd-lentil: #c8a84b;
  --wwd-text: #1a1a1a;
}

/* ── Page background ── */
.page-whatwedo {
  min-height: 100vh;
  position: relative;
  background: #f4efe5;
}

/* ── Hero ── */
.page-whatwedo .wwd-hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}
.page-whatwedo .wwd-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(242,201,76,.15) 0%, transparent 48%),
    radial-gradient(ellipse at 10% 85%, rgba(178,58,44,.25) 0%, transparent 52%),
    linear-gradient(135deg, #111 0%, #2b1a15 45%, #3a1f18 100%);
  z-index: 0;
}
.page-whatwedo .wwd-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'%3E%3Cpath d='M45 0 L90 45 L45 90 L0 45 Z'/%3E%3Cpath d='M45 12 L78 45 L45 78 L12 45 Z'/%3E%3Ccircle cx='45' cy='45' r='20'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1; pointer-events: none;
}
.page-whatwedo .wwd-hero-inner {
  position: relative; z-index: 1;
  max-width: 1600px; margin: 0 auto; padding: 0 1.5rem;
}
.page-whatwedo .wwd-hero-kicker {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .75rem; border-radius: 999px;
  background: rgba(178,58,44,.3);
  border: 1px solid rgba(178,58,44,.5);
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .10em;
  margin-bottom: .65rem; color: #f7c7bf;
}
.page-whatwedo .wwd-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 900; letter-spacing: -.03em;
  line-height: 1.02; margin: 0 0 .5rem;
  background: linear-gradient(135deg, #fff 40%, rgba(242,201,76,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-whatwedo .wwd-hero-desc {
  font-size: 1.05rem; opacity: .75; max-width: 580px;
  line-height: 1.68; margin: 0; color: rgba(255,255,255,.8);
}
.page-whatwedo .wwd-hero-strip {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  margin-top: .85rem; font-size: .70rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.50);
}
.page-whatwedo .wwd-strip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.28);
}

/* ══════════════════════════════════════════════════════════════
   BAND BASE
   ══════════════════════════════════════════════════════════════ */
.page-whatwedo .wwd-band {
  position: relative; z-index: 1;
  width: 100%;
  padding: 3.5rem 0;
}

/* Band inner container — wide editorial width */
.page-whatwedo .wwd-band-inner {
  position: relative; z-index: 1;
  max-width: 1500px; margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════════════════════════════════════
   A) LIGHT BAND — Paper theme
   ══════════════════════════════════════════════════════════════ */
.page-whatwedo .wwd-band--light {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.45' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.015'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #faf7f1 0%, #f6f0e6 50%, #faf7f1 100%);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

/* ══════════════════════════════════════════════════════════════
   B) DARK BAND — Tarihçe premium theme
   ══════════════════════════════════════════════════════════════ */
.page-whatwedo .wwd-band--dark {
  background:
    linear-gradient(135deg, #111 0%, #2b1a15 50%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* Geometrik pattern overlay (Tarihçe ile aynı) */
.page-whatwedo .wwd-band--dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'%3E%3Cpath d='M45 0 L90 45 L45 90 L0 45 Z'/%3E%3Cpath d='M45 12 L78 45 L45 78 L12 45 Z'/%3E%3Ccircle cx='45' cy='45' r='20'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
/* Warm glow vignette */
.page-whatwedo .wwd-band--dark::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(242,201,76,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(178,58,44,.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
/* Gold accent separator line at top */
.page-whatwedo .wwd-band--dark .wwd-band-inner::before {
  content: "";
  position: absolute;
  top: -3.5rem; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wwd-red), var(--wwd-gold), var(--wwd-red));
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   BAND GRID: 2-column zigzag
   ══════════════════════════════════════════════════════════════ */
.page-whatwedo .wwd-band-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.page-whatwedo .wwd-band-grid.wwd-band-reverse {
  grid-template-columns: 1fr 55%;
}
.page-whatwedo .wwd-band-grid.wwd-band-reverse .wwd-visual {
  order: 2;
}
.page-whatwedo .wwd-band-grid.wwd-band-reverse .wwd-text {
  order: 1;
}

/* ══════════════════════════════════════════════════════════════
   VISUAL BLOCK
   ══════════════════════════════════════════════════════════════ */
.page-whatwedo .wwd-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  height: 100%;
  background: rgba(255,255,255,.5);
}
.page-whatwedo .wwd-visual.has-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* No-image: light theme placeholder */
.page-whatwedo .wwd-band--light .wwd-visual.no-image {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.010) 0 8px, transparent 8px 20px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.006) 0 10px, transparent 10px 24px),
    linear-gradient(160deg, #ece6dc 0%, #e5dfd5 40%, #ddd7cc 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
/* No-image: dark theme placeholder */
.page-whatwedo .wwd-band--dark .wwd-visual.no-image {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 8px, transparent 8px 20px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.008) 0 10px, transparent 10px 24px),
    linear-gradient(160deg, #1a1210 0%, #2b1a15 40%, #1f1510 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

/* Sticker — light */
.page-whatwedo .wwd-visual-sticker {
  position: absolute; bottom: .85rem; left: .85rem;
  font-size: .62rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--wwd-red);
  background: rgba(255,255,255,.90);
  padding: .22rem .6rem; border-radius: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  z-index: 2;
}
.page-whatwedo .wwd-visual.has-image .wwd-visual-sticker {
  color: #fff; background: rgba(0,0,0,.55);
}
/* Sticker — dark band override */
.page-whatwedo .wwd-band--dark .wwd-visual-sticker {
  background: rgba(178,58,44,.8);
  color: #fff;
  border: 1px solid rgba(242,201,76,.3);
}

/* ══════════════════════════════════════════════════════════════
   TEXT BLOCK
   ══════════════════════════════════════════════════════════════ */
.page-whatwedo .wwd-text {
  position: relative;
  padding: .75rem 0 .5rem 1.25rem;
}

/* Dark band: glass panel behind text (Tarihçe card language) */
.page-whatwedo .wwd-band--dark .wwd-text {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .9rem;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  backdrop-filter: blur(10px);
}

/* Accent line — light */
.page-whatwedo .wwd-text-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 3px;
  background: rgba(178,58,44,.25);
}
/* Accent line — dark: gold gradient */
.page-whatwedo .wwd-band--dark .wwd-text-accent {
  background: linear-gradient(180deg, var(--wwd-red), var(--wwd-gold));
  width: 3px;
  left: 0; top: 0; bottom: 0;
}
/* Category-colored accent lines (light only) */
.page-whatwedo .wwd-band--light .wwd-cat-edu .wwd-text-accent       { background: #3b7bff; }
.page-whatwedo .wwd-band--light .wwd-cat-trip .wwd-text-accent      { background: #2ab856; }
.page-whatwedo .wwd-band--light .wwd-cat-solidarity .wwd-text-accent { background: #ef4444; }
.page-whatwedo .wwd-band--light .wwd-cat-sport .wwd-text-accent     { background: #f59e0b; }
.page-whatwedo .wwd-band--light .wwd-cat-alumni .wwd-text-accent    { background: #06b6d4; }
.page-whatwedo .wwd-band--light .wwd-cat-corp .wwd-text-accent      { background: #1f2937; }
/* Category accent on dark band stays gold gradient (handled above) */

/* Topline */
.page-whatwedo .wwd-text-topline {
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
  margin-bottom: .35rem; padding-bottom: .35rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.page-whatwedo .wwd-band--dark .wwd-text-topline {
  border-bottom-color: rgba(255,255,255,.08);
}

/* Kicker */
.page-whatwedo .wwd-kicker {
  font-size: .60rem; letter-spacing: .22em;
  text-transform: uppercase; opacity: .45; font-weight: 800;
}
.page-whatwedo .wwd-band--dark .wwd-kicker {
  color: rgba(255,255,255,.5);
  opacity: 1;
}

/* Badge — light */
.page-whatwedo .wwd-badge {
  font-weight: 800; font-size: .64rem;
  padding: .16rem .5rem; border-radius: 999px;
  background: rgba(26,18,13,.05); border: 1px solid rgba(26,18,13,.08);
}
/* Badge — dark: gold accent */
.page-whatwedo .wwd-band--dark .wwd-badge {
  background: rgba(242,201,76,.12);
  border-color: rgba(242,201,76,.3);
  color: var(--wwd-gold);
}
/* Category badge colors (light) */
.page-whatwedo .wwd-band--light .wwd-cat-edu .wwd-badge       { background:rgba(59,123,255,.08); color:#1d4ed8; border-color:rgba(59,123,255,.20); }
.page-whatwedo .wwd-band--light .wwd-cat-trip .wwd-badge      { background:rgba(42,184,86,.08);  color:#15803d; border-color:rgba(42,184,86,.20); }
.page-whatwedo .wwd-band--light .wwd-cat-solidarity .wwd-badge { background:rgba(239,68,68,.08); color:#b91c1c; border-color:rgba(239,68,68,.20); }
.page-whatwedo .wwd-band--light .wwd-cat-sport .wwd-badge     { background:rgba(245,158,11,.10); color:#92400e; border-color:rgba(245,158,11,.24); }
.page-whatwedo .wwd-band--light .wwd-cat-alumni .wwd-badge    { background:rgba(6,182,212,.08); color:#0e7490; border-color:rgba(6,182,212,.20); }
.page-whatwedo .wwd-band--light .wwd-cat-corp .wwd-badge      { background:rgba(31,41,55,.06);   color:#1f2937; border-color:rgba(31,41,55,.14); }

/* Title */
.page-whatwedo .wwd-title {
  font-weight: 900; line-height: 1.08;
  margin: .2rem 0 .3rem; letter-spacing: -.03em;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--wwd-text);
}
.page-whatwedo .wwd-band--dark .wwd-title {
  color: #fff;
}

/* Lead */
.page-whatwedo .wwd-lead {
  font-size: .92rem; line-height: 1.78;
  margin: 0 0 .45rem; opacity: .82; color: var(--wwd-text);
}
.page-whatwedo .wwd-band--dark .wwd-lead {
  color: rgba(255,255,255,.72);
  opacity: 1;
}

/* Ne yaptık */
.page-whatwedo .wwd-what { margin-bottom: .3rem; }
.page-whatwedo .wwd-subhead {
  font-weight: 900; font-size: .66rem;
  text-transform: uppercase; letter-spacing: .10em;
  margin: 0 0 .15rem; opacity: .50; color: var(--wwd-text);
}
.page-whatwedo .wwd-band--dark .wwd-subhead {
  color: var(--wwd-gold); opacity: .7;
}
.page-whatwedo .wwd-bullets {
  margin: 0 0 .1rem 1rem; padding: 0;
  font-size: .85rem; line-height: 1.6; color: var(--wwd-text);
}
.page-whatwedo .wwd-band--dark .wwd-bullets {
  color: rgba(255,255,255,.68);
}
.page-whatwedo .wwd-bullets li { margin-bottom: .06rem; }

/* ── Callout (Özet Etki) ── */
/* Light band */
.page-whatwedo .wwd-callout {
  position: relative; border-radius: 10px;
  padding: .45rem .6rem .45rem .85rem;
  background: rgba(255,255,255,.40);
  border: 1px solid rgba(0,0,0,.04);
  margin-bottom: .3rem; margin-top: .15rem;
}
.page-whatwedo .wwd-callout::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  border-radius: 10px 0 0 10px;
  background: rgba(178,58,44,.25);
}
/* Callout light category colors */
.page-whatwedo .wwd-band--light .wwd-cat-edu .wwd-callout::before       { background:#3b7bff; }
.page-whatwedo .wwd-band--light .wwd-cat-trip .wwd-callout::before      { background:#2ab856; }
.page-whatwedo .wwd-band--light .wwd-cat-solidarity .wwd-callout::before { background:#ef4444; }
.page-whatwedo .wwd-band--light .wwd-cat-sport .wwd-callout::before     { background:#f59e0b; }
.page-whatwedo .wwd-band--light .wwd-cat-alumni .wwd-callout::before    { background:#06b6d4; }
.page-whatwedo .wwd-band--light .wwd-cat-corp .wwd-callout::before      { background:#1f2937; }
/* Dark band: glass callout (Tarihçe card language) */
.page-whatwedo .wwd-band--dark .wwd-callout {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}
.page-whatwedo .wwd-band--dark .wwd-callout::before {
  background: linear-gradient(180deg, var(--wwd-red), var(--wwd-gold));
}

.page-whatwedo .wwd-callout-label {
  font-size: .58rem; letter-spacing: .16em;
  text-transform: uppercase; opacity: .45;
  font-weight: 800; margin-bottom: .08rem;
}
.page-whatwedo .wwd-band--dark .wwd-callout-label {
  color: var(--wwd-gold); opacity: .7;
}
.page-whatwedo .wwd-callout-text {
  font-style: italic; line-height: 1.45;
  opacity: .78; font-size: .84rem; color: var(--wwd-text);
}
.page-whatwedo .wwd-band--dark .wwd-callout-text {
  color: rgba(255,255,255,.7);
  opacity: 1;
}

/* Meta */
.page-whatwedo .wwd-meta {
  display: flex; flex-wrap: wrap; gap: .45rem;
  font-size: .75rem; opacity: .44; color: var(--wwd-text);
  margin-top: .1rem;
}
.page-whatwedo .wwd-band--dark .wwd-meta {
  color: rgba(255,255,255,.5);
  opacity: 1;
}
.page-whatwedo .wwd-meta i { margin-right: .1rem; font-size: .68rem; }
.page-whatwedo .wwd-band--dark .wwd-meta i {
  color: var(--wwd-gold);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .page-whatwedo .wwd-band-grid,
  .page-whatwedo .wwd-band-grid.wwd-band-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .page-whatwedo .wwd-band-grid.wwd-band-reverse .wwd-visual,
  .page-whatwedo .wwd-band-grid.wwd-band-reverse .wwd-text {
    order: unset;
  }
  .page-whatwedo .wwd-band { padding: 2.5rem 0; }
  .page-whatwedo .wwd-visual { min-height: 240px; }
}
@media (max-width: 575px) {
  .page-whatwedo .wwd-band { padding: 2rem 0; }
  .page-whatwedo .wwd-band-inner { padding: 0 .85rem; }
  .page-whatwedo .wwd-visual { min-height: 200px; border-radius: 10px; }
  .page-whatwedo .wwd-hero-strip { display: none; }
  .page-whatwedo .wwd-hero { padding: 1.75rem 0 1.5rem; }
  .page-whatwedo .wwd-hero-inner { padding: 0 1rem; }
  .page-whatwedo .wwd-band--dark .wwd-text {
    padding: 1rem 1rem 1rem 1.25rem;
  }
}
/* END NelerYapiyoruz ================================================ */

@media (max-width: 767px) {
    .news-list-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .news-list-card-thumb {
        width: 100%;
        height: 200px;
    }
    
    .news-list-card:hover {
        transform: translateX(0) translateY(-2px);
    }
    
    .news-list-card-title {
        font-size: 1.05rem;
    }
    
    .news-list-card-summary {
        font-size: .9rem;
    }
}

/* ===== NEWS CARD LIST (Duyurular & Haberler - Yatay Dikdörtgen Kartlar) ===== */
.news-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-card-item {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .28s cubic-bezier(.4,0,.2,1),
                box-shadow .28s cubic-bezier(.4,0,.2,1),
                border-color .28s;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
    border: 1px solid rgba(0,0,0,.06);
    position: relative;
}

.news-card-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.news-card-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    border-color: rgba(178,58,44,.15);
}

.news-card-item:hover::before {
    transform: scaleY(1);
}

.news-card-img-wrap {
    flex: 0 0 260px;
    width: 260px;
    /* 4:3 — 7:5'ten biraz daha dengeli, aşırı yatay hissi önler */
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    /* Açık arka plan — görsel yüklenmediğinde siyah boşluk kalmasın */
    background: #f0ede8;
}

/* Cover image: 7:5 çerçevede dengeli kaplama — cover ile doldurup hafif yukarıdan kırp */
.news-card-img-wrap img,
.news-card-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Çerçeveyi tamamen doldur, letterbox/siyah alan kalmaz */
    object-position: center 30%; /* Görsel hafif aşağı kaydırılmış — önemli alan görünür */
    display: block;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.news-card-item:hover .news-card-img-wrap img,
.news-card-item:hover .news-card-cover-img {
    transform: scale(1.05);
}

/* Legacy hybrid classes — kept for backwards compat but neutralised */
.news-card-img-wrap .news-card-img-blur {
    display: none !important;
}

.news-card-img-wrap .news-card-img-contain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Görsel hafif aşağı — kötü crop olmaz */
    z-index: 1;
    display: block;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.news-card-item:hover .news-card-img-wrap .news-card-img-contain {
    transform: scale(1.05);
}

.news-card-img-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f0ee, #ede7e3);
    color: var(--primary);
    font-size: 2.5rem;
    opacity: .25;
}

.news-card-body {
    flex: 1;
    min-width: 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
}

.news-card-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .65rem;
    border-radius: 6px;
    background: rgba(178,58,44,.08);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    width: fit-content;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color .2s;
}

.news-card-item:hover .news-card-title {
    color: var(--primary);
}

.news-card-summary {
    font-size: .92rem;
    color: var(--text);
    opacity: .65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.news-card-meta {
    font-size: .82rem;
    color: var(--text);
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: auto;
}

.news-card-meta i {
    margin-right: .3rem;
}

.news-card-read {
    color: var(--primary);
    font-weight: 600;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .82rem;
    transition: gap .2s;
}

.news-card-item:hover .news-card-read {
    gap: .5rem;
}

.news-content {
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--text);
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: .75rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

/* Skeleton */
.news-card-item.kp-skeleton-card .news-card-img-wrap {
    min-height: 160px;
}

@media (max-width: 767px) {
    .news-card-item {
        flex-direction: column;
    }
    .news-card-img-wrap {
        flex: none;
        width: 100%;
        /* 7:5 aspect-ratio zaten ayarlı; ek yükseklik gerekmez */
    }
    .news-card-body {
        padding: 1rem;
    }
    .news-card-title {
        font-size: 1.05rem;
    }
}

/* ===== DETAIL PAGE PREMIUM (Haber & Duyuru Detay) ===== */
.detail-cover-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

/* DETAY SAYFASI — kapak görseli TAM GÖRÜNTÜ, kırpma yok
   object-fit: contain → dikey/yatay her fotoğraf eksiksiz görünür.
   height sabitlenmez; görsel doğal oranıyla genişler.
   max-height: çok büyük taşmayı önler, sayfa düzeni korunur. */
.detail-cover-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f5f0ee;
}

.detail-article {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.06);
    margin-bottom: 2rem;
}

.detail-body {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text);
}

.detail-body p {
    margin-bottom: 1.25rem;
}

.detail-body h2,
.detail-body h3 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: .75rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.detail-body blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(178,58,44,.03);
    padding: 1.25rem 1.5rem;
    border-radius: 0 .75rem .75rem 0;
    margin: 1.5rem 0;
    font-style: italic;
}

.detail-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.detail-footer {
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 2px solid rgba(0,0,0,.06);
}

@media (max-width: 767px) {
    .detail-article {
        padding: 1.5rem;
        border-radius: 12px;
    }
    .detail-body {
        font-size: 1rem;
        line-height: 1.85;
    }
    .detail-cover-img {
        max-height: 70vh;
    }
}

/* ===== KURUMSAL PAGES ===== */
.kurumsal-page { padding: 3rem 0; }
.kurumsal-header { text-align: center; margin-bottom: 2.5rem; }
.kurumsal-header h2 {
    font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: .75rem;
}
.kurumsal-header p { font-size: 1rem; color: var(--text); opacity: .7; max-width: 700px; margin: 0 auto; }
.kurumsal-content { max-width: 900px; margin: 0 auto; }
.kurumsal-item {
    margin-bottom: 2rem; padding: 1.5rem; background: var(--bg);
    border: 1px solid rgba(0,0,0,.06); border-radius: .75rem;
    transition: box-shadow .2s;
}
.kurumsal-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.kurumsal-item h3 {
    font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: .75rem;
    display: flex; align-items: center; gap: .5rem;
}
.kurumsal-item p { font-size: .95rem; line-height: 1.7; color: var(--text); }
.kurumsal-list { list-style: none; padding: 0; margin: 0; }
.kurumsal-list li {
    padding: .5rem 0 .5rem 1.5rem; position: relative;
    font-size: .95rem; color: var(--text); line-height: 1.6;
}
.kurumsal-list li::before {
    content: ""; position: absolute; left: 0; top: .85rem;
    width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
}
.kurumsal-link {
    color: var(--primary); text-decoration: none; font-weight: 600;
    transition: color .2s;
}
.kurumsal-link:hover { color: var(--accent); }
.kurumsal-quote {
    font-size: 1.05rem; font-style: italic; line-height: 1.7;
    color: var(--text); padding: 1rem 1.25rem; margin: 0;
    border-left: 4px solid var(--primary);
    background: rgba(178,58,44,.03); border-radius: 0 .5rem .5rem 0;
}
.kurumsal-quote i { font-size: 2rem; color: var(--primary); opacity: .3; }
.kurumsal-author { font-size: .9rem; font-weight: 600; color: var(--text); opacity: .7; margin-top: .75rem; }

/* Kurumsal Dynamic Page */
.kurumsal-dynamic-hero {
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    border-radius: .75rem;
    margin-bottom: 2rem;
}
.kurumsal-dynamic-hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.kurumsal-dynamic-content {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text);
}
.kurumsal-dynamic-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}
.kurumsal-dynamic-content p {
    margin-bottom: 1rem;
}
.kurumsal-dynamic-content ul,
.kurumsal-dynamic-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.kurumsal-dynamic-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.kurumsal-dynamic-content a:hover {
    color: var(--accent);
}

/* Kurumsal Timeline */
.kurumsal-timeline { margin-top: 1rem; }
.kurumsal-timeline-item {
    display: flex; gap: 1rem; padding: .75rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.kurumsal-timeline-item:last-child { border-bottom: none; }
.kurumsal-timeline-item span {
    font-weight: 800; font-size: 1.1rem; color: var(--primary);
    min-width: 50px;
}
.kurumsal-timeline-item p { margin: 0; font-size: .9rem; color: var(--text); }

/* Kurumsal Team */
.kurumsal-team-list { display: flex; flex-direction: column; gap: 1rem; }
.team-member {
    padding: 1rem; border: 1px solid rgba(0,0,0,.06);
    border-radius: .5rem; transition: box-shadow .2s;
}
.team-member:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.team-member h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 .25rem; }
.team-role {
    font-size: .82rem; font-weight: 600; color: var(--primary);
    margin-bottom: .35rem; display: block;
}
.team-member p { font-size: .88rem; color: var(--text); opacity: .7; margin: 0; }

/* ===== SUPPORTERS PAGE ===== */
.supporters-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem; margin-top: 1rem;
}
.supporter-card {
    text-align: center; padding: 1.25rem; border: 1px solid rgba(0,0,0,.06);
    border-radius: .75rem; transition: box-shadow .2s;
}
.supporter-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.supporter-logo { margin-bottom: .75rem; }
.supporter-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.supporter-card p { font-size: .82rem; color: var(--text); opacity: .7; margin: 0; }

.partners-list { display: flex; flex-direction: column; gap: .5rem; margin-top: .75rem; }
.partner-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .9rem; color: var(--text);
}
.partner-item i { color: var(--accent); }

/* Task Box (Supporters) */
.contact-task-box {
    border: 1px solid rgba(0,0,0,.08); border-radius: .75rem;
    overflow: hidden; margin-top: 1.5rem;
}
.task-box-header {
    padding: 1.25rem; background: rgba(178,58,44,.03);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.task-box-header i { font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: .5rem; }
.task-box-header h4 { font-size: 1.05rem; font-weight: 700; margin: 0 0 .25rem; }
.task-box-header p { font-size: .85rem; color: var(--text); opacity: .6; margin: 0; }
.task-box-content { padding: 1.25rem; }
.task-box-group { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.task-checkbox {
    display: flex; align-items: flex-start; gap: .75rem; cursor: pointer;
    padding: .75rem; border: 1px solid rgba(0,0,0,.08); border-radius: .5rem;
    transition: border-color .2s, background .2s;
}
.task-checkbox:hover { border-color: var(--primary); background: rgba(178,58,44,.02); }
.task-checkbox input[type="checkbox"] { margin-top: .3rem; accent-color: var(--primary); }
.task-checkmark { display: none; }
.task-label-content { display: flex; align-items: flex-start; gap: .5rem; }
.task-label-content i { color: var(--primary); margin-top: .15rem; font-size: 1.1rem; }
.task-label-content strong { display: block; font-size: .9rem; }
.task-label-content small { display: block; font-size: .78rem; color: var(--text); opacity: .6; }
.task-box-actions { text-align: center; }
.task-box-note {
    font-size: .78rem; color: var(--text); opacity: .5; margin-top: .75rem;
    display: flex; align-items: center; justify-content: center; gap: .35rem;
}
.cta-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 3rem 0; }
.contact-section-no-hero { padding-top: 2rem; }
.contact-form-card {
    background: var(--bg); border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem; padding: 1.5rem;
}
.contact-form-header {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-form-header i { font-size: 2rem; color: var(--primary); }
.contact-form-header h3 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.contact-form-header p { font-size: .85rem; color: var(--text); opacity: .6; margin: 0; }
.contact-form-group { margin-bottom: 1rem; }
.contact-label {
    display: flex; align-items: center; gap: .4rem;
    font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--text);
}
.contact-label i { color: var(--primary); font-size: .85rem; }
.contact-textarea { min-height: 120px; resize: vertical; }
.contact-submit-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%; padding: .75rem 1.5rem; border: none; border-radius: .5rem;
    background: var(--primary); color: #fff; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: background .2s;
}
.contact-submit-btn:hover { background: #9a3224; }
.contact-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.contact-form-note {
    font-size: .78rem; color: var(--text); opacity: .5; margin-top: .75rem;
    display: flex; align-items: center; gap: .35rem;
}

/* Contact Info Cards */
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
    display: flex; gap: 1rem; padding: 1.25rem;
    border: 1px solid rgba(0,0,0,.08); border-radius: .75rem;
    transition: box-shadow .2s;
}
.contact-info-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.contact-info-card.social { flex-direction: column; }
.contact-info-icon {
    width: 48px; height: 48px; border-radius: .5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.contact-info-icon.address { background: rgba(178,58,44,.08); color: var(--primary); }
.contact-info-icon.phone { background: rgba(46,125,50,.08); color: #2e7d32; }
.contact-info-icon.email { background: rgba(21,101,192,.08); color: #1565c0; }
.contact-info-content h4 { font-size: .95rem; font-weight: 700; margin: 0 0 .35rem; }
.contact-info-content p { font-size: .88rem; margin: 0; color: var(--text); }
.contact-info-content a { color: var(--primary); text-decoration: none; }
.contact-info-content a:hover { text-decoration: underline; }
.contact-info-link {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .82rem; color: var(--primary); text-decoration: none; margin-top: .5rem;
}
.contact-info-link:hover { text-decoration: underline; }
.contact-info-hours, .contact-info-note {
    font-size: .78rem; color: var(--text); opacity: .6; margin-top: .35rem;
    display: flex; align-items: center; gap: .35rem;
}
.contact-social-icons { display: flex; gap: .5rem; margin-top: .5rem; }
.contact-social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,.1); color: var(--text);
    text-decoration: none; font-size: 1.1rem; transition: all .2s;
}
.contact-social-icon:hover { color: #fff; }
.contact-social-icon.facebook:hover { background: #1877f2; border-color: #1877f2; }
.contact-social-icon.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.contact-social-icon.instagram:hover { background: #e4405f; border-color: #e4405f; }
.contact-social-icon.youtube:hover { background: #ff0000; border-color: #ff0000; }
.contact-social-icon.linkedin:hover { background: #0a66c2; border-color: #0a66c2; }

/* Contact Map */
.contact-map-card {
    border: 1px solid rgba(0,0,0,.08); border-radius: .75rem; overflow: hidden;
}
.contact-map-header {
    display: flex; align-items: center; gap: .5rem;
    padding: 1rem 1.25rem; border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-map-header i { color: var(--primary); font-size: 1.25rem; }
.contact-map-header h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.contact-map-container { width: 100%; }
.contact-map-container iframe { display: block; width: 100%; border: none; }

/* Contact Toast */
.contact-toast-container {
    position: fixed; top: 1.5rem; right: 1.5rem; z-index: 10000;
}
.contact-toast {
    min-width: 320px; border-radius: .5rem; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.contact-toast-success { border-left: 4px solid #2e7d32; background: #fff; }
.contact-toast-warning { border-left: 4px solid var(--accent); background: #fff; }
.contact-toast-error { border-left: 4px solid #c62828; background: #fff; }
.contact-toast-header {
    display: flex; align-items: center; gap: .5rem; padding: .75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-toast-close { background: none; border: none; cursor: pointer; margin-left: auto; }
.contact-toast-body { padding: .75rem 1rem; font-size: .9rem; }

/* ===== DONATE PAGE ===== */
.donate-page { padding: 2rem 0 3rem; }
.donate-page-no-hero { padding-top: 2rem; }
.donate-content { max-width: 1200px; margin: 0 auto; }
.donate-main-card {
    background: var(--bg); border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem; padding: 1.5rem;
}
.donate-card-header {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.donate-card-header i { font-size: 2rem; color: var(--primary); }
.donate-card-header h3 { font-size: 1.25rem; font-weight: 700; margin: 0; color: var(--text); }
.donate-card-header p { font-size: .88rem; color: var(--text); opacity: .6; margin: 0; }
.donate-section { margin-bottom: 1.5rem; }
.donate-label {
    display: flex; align-items: center; gap: .5rem;
    font-weight: 700; font-size: .95rem; margin-bottom: .75rem; color: var(--text);
}
.donate-label i { color: var(--primary); }
.donate-select {
    width: 100%; padding: .6rem .75rem; border: 1px solid rgba(0,0,0,.12);
    border-radius: .5rem; background: var(--bg); color: var(--text); font-size: .9rem;
}
.amount-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1rem;
}
.amount-card {
    background: var(--bg); border: 2px solid rgba(0,0,0,.1);
    border-radius: .5rem; padding: .75rem; cursor: pointer;
    text-align: center; transition: border-color .2s, background .2s;
}
.amount-card:hover { border-color: var(--primary); }
.amount-card.active { border-color: var(--primary); background: rgba(178,58,44,.06); }
.amount-value { font-weight: 700; font-size: 1rem; color: var(--text); }
.custom-amount-wrapper { margin-top: .5rem; }
.custom-amount-label { font-size: .82rem; color: var(--text); opacity: .6; margin-bottom: .35rem; display: block; }
.custom-amount-input { display: flex; align-items: center; gap: .5rem; }
.custom-amount-input .form-control { flex: 1; }
.currency-badge { font-weight: 700; font-size: .9rem; color: var(--primary); }
.donate-summary-inline {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 1rem; background: rgba(178,58,44,.04);
    border-radius: .5rem; margin-bottom: 1rem;
}
.summary-inline-item { display: flex; align-items: center; gap: .35rem; }
.summary-inline-label { font-size: .85rem; color: var(--text); opacity: .6; }
.summary-inline-value { font-weight: 600; color: var(--text); }
.summary-inline-value.amount { color: var(--primary); font-size: 1.1rem; font-weight: 700; }
.donate-submit-section { text-align: center; }
.donate-submit-btn { font-size: 1.1rem; padding: .85rem 1.5rem; }
.donate-submit-note {
    font-size: .82rem; color: var(--text); opacity: .5; margin-top: .75rem;
    display: flex; align-items: center; justify-content: center; gap: .35rem;
}
.donate-iban-card {
    background: var(--bg); border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem; padding: 1.5rem; margin-bottom: 1rem;
}
.iban-header { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.iban-header i { font-size: 1.5rem; color: var(--primary); }
.iban-header h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.iban-accounts { display: flex; flex-direction: column; gap: .75rem; }
.iban-account-item { border: 1px solid rgba(0,0,0,.06); border-radius: .5rem; padding: .75rem; }
.iban-bank-name {
    display: flex; align-items: center; gap: .35rem;
    font-weight: 600; font-size: .88rem; margin-bottom: .35rem;
}
.iban-bank-name i { color: var(--primary); }
.iban-number-wrapper { display: flex; align-items: center; gap: .5rem; }
.iban-number { font-family: monospace; font-size: .85rem; color: var(--text); flex: 1; }
.iban-copy-btn {
    background: none; border: 1px solid rgba(0,0,0,.1); border-radius: .35rem;
    padding: .25rem .5rem; cursor: pointer; color: var(--text); transition: background .2s;
}
.iban-copy-btn:hover { background: rgba(0,0,0,.05); }
.iban-note {
    display: flex; align-items: flex-start; gap: .5rem; margin-top: 1rem;
    padding: .75rem; background: rgba(242,201,76,.08); border-radius: .5rem; font-size: .85rem;
}
.iban-note i { color: var(--accent); margin-top: .1rem; }
.iban-note p { margin: 0; }
.donate-impact-card {
    background: var(--bg); border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem; padding: 1.5rem; margin-bottom: 1rem;
}
.impact-header { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.impact-header i { font-size: 1.25rem; color: var(--primary); }
.impact-header h4 { font-size: 1rem; font-weight: 700; margin: 0; }
.impact-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.impact-benefits li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; }
.impact-benefits li i { color: var(--accent); margin-top: .15rem; }
.donate-help-card {
    background: var(--bg); border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem;
}
.donate-help-card > i { font-size: 1.5rem; color: var(--primary); }
.donate-help-card h5 { font-size: .95rem; font-weight: 700; margin: 0 0 .25rem; }
.donate-help-card p { font-size: .85rem; color: var(--text); opacity: .6; margin: 0 0 .75rem; }

/* ===== DONATE BANK CARDS (Premium QR + IBAN) ===== */
.donate-bank-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), transform .25s;
}
.donate-bank-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.donate-bank-card-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: rgba(178,58,44,.03);
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
}
.donate-bank-card-header i {
    color: var(--primary);
    font-size: 1.1rem;
}
.donate-bank-card-img-link {
    display: block;
    width: 100%;
    cursor: zoom-in;
}
.donate-bank-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #fff;
}
.donate-bank-card-iban {
    padding: .75rem 1rem;
    border-top: 1px solid rgba(0,0,0,.06);
    background: rgba(242,201,76,.04);
}
.donate-bank-card-iban .iban-number {
    font-family: 'Courier New', monospace;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--text);
    user-select: all;
}
.donate-bank-card-footer {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1rem;
    border-top: 1px solid rgba(0,0,0,.04);
    font-size: .78rem;
    color: var(--text);
    opacity: .6;
}
.donate-bank-card-footer i {
    color: var(--primary);
    font-size: .85rem;
}

@media (max-width: 991px) {
    .donate-bank-card-img {
        max-height: 400px;
    }
}
@media (max-width: 575px) {
    .donate-bank-card-img {
        max-height: 320px;
    }
}

/* ===== AUTH / LOGIN PAGE ===== */
.auth-page {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f8f6f4 0%, #fff 100%);
    padding: 2rem 1rem;
}
.auth-card {
    width: 100%; max-width: 420px; background: #fff;
    border: 1px solid rgba(0,0,0,.08); border-radius: 1rem;
    padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.auth-brand { text-align: center; margin-bottom: 1.5rem; }
.auth-logo { max-width: 80px; margin: 0 auto 1rem; display: block; }
.auth-logo-fallback {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(178,58,44,.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 1rem;
}
.auth-title { font-size: 1.5rem; font-weight: 800; margin: 0 0 .35rem; }
.auth-subtitle { font-size: .9rem; color: var(--text); opacity: .6; margin: 0; }

.auth-alert {
    display: flex; align-items: flex-start; gap: .5rem;
    padding: .75rem 1rem; border-radius: .5rem; margin-bottom: 1rem; font-size: .88rem;
}
.auth-alert-error { background: rgba(198,40,40,.06); border: 1px solid rgba(198,40,40,.15); color: #c62828; }
.auth-alert-content { flex: 1; }
.auth-alert-close { background: none; border: none; cursor: pointer; color: inherit; padding: 0; }

.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-form-group { display: flex; flex-direction: column; gap: .35rem; }
.auth-label { font-weight: 600; font-size: .88rem; color: var(--text); }
.auth-input-wrapper { position: relative; }
.auth-input {
    width: 100%; padding: .65rem .75rem .65rem 2.25rem;
    border: 1px solid rgba(0,0,0,.15); border-radius: .5rem;
    background: var(--bg); color: var(--text); font-size: .9rem;
    transition: border-color .2s;
}
.auth-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(178,58,44,.1); }
.auth-input-error { border-color: #c62828; }
.auth-input-icon {
    position: absolute; left: .75rem; top: 50%; transform: translateY(-50%);
    color: var(--text); opacity: .4; font-size: .9rem;
}
.auth-input-password { padding-right: 2.75rem; }
.auth-password-toggle {
    position: absolute; right: .75rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; color: var(--text); opacity: .5;
    padding: .1rem; font-size: 1rem;
}
.auth-password-toggle:hover { opacity: .8; }
.auth-error-text { font-size: .78rem; color: #c62828; margin-top: .2rem; }

.auth-submit-btn {
    width: 100%; padding: .75rem 1rem; border: none; border-radius: .5rem;
    background: var(--primary); color: #fff; font-weight: 700; font-size: 1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .5rem;
    transition: background .2s;
}
.auth-submit-btn:hover { background: #9a3224; }
.auth-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.auth-submit-btn .spinner-border {
    width: 1.1rem; height: 1.1rem; border-width: 2px;
    border-color: rgba(255,255,255,.3); border-top-color: #fff;
}

.auth-footer { text-align: center; margin-top: 1.25rem; }
.auth-footer-link { font-size: .85rem; color: var(--text); opacity: .6; margin: 0; }
.auth-footer-link a { color: var(--primary); font-weight: 600; text-decoration: none; }
.auth-footer-link a:hover { text-decoration: underline; }

.auth-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .55rem 1rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .5rem;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}
.auth-secondary-btn:hover {
    background: rgba(0,0,0,.04);
    border-color: rgba(0,0,0,.25);
}
.auth-secondary-btn:disabled { opacity: .6; cursor: not-allowed; }

.auth-demo-card {
    width: 100%; max-width: 420px; margin-top: 1rem;
    background: rgba(242,201,76,.08); border: 1px solid rgba(242,201,76,.2);
    border-radius: .75rem; padding: 1rem;
}
.auth-demo-title {
    display: flex; align-items: center; gap: .5rem;
    font-weight: 700; font-size: .9rem; margin-bottom: .5rem; color: var(--text);
}
.auth-demo-item { font-size: .82rem; color: var(--text); opacity: .7; padding: .15rem 0; }

/* ===================================================================
   ADMIN PANEL STYLES
   =================================================================== */

/* ===== ADMIN SHELL (LAYOUT) ===== */
.admin-shell {
    display: flex;
    min-height: 100vh;
    background: #f5f5f5;
    color: var(--text);
}

.admin-sidebar {
    width: 260px;
    background: var(--text);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1050;
    overflow-y: auto;
    transition: transform .25s ease;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: .5rem;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.brand-text { flex: 1; min-width: 0; }
.brand-name { font-weight: 700; font-size: 1rem; }
.brand-sub { font-size: .75rem; opacity: .6; }

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: .25rem;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: .4rem;
    padding: .35rem .6rem;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text);
}

/* Admin Nav */
.admin-nav {
    flex: 1;
    padding: .5rem 0;
    display: flex;
    flex-direction: column;
}

.admin-nav-section {
    padding: .75rem 1rem .35rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255,255,255,.4);
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem 1rem;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    border-radius: .4rem;
    margin: 1px .5rem;
    transition: background .15s, color .15s;
}

.admin-nav-item:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.admin-nav-item.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.admin-nav-item i {
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
}

/* Admin Main Area */
.admin-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-topbar {
    height: 56px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.topbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.chip-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
}

.chip-meta { display: flex; flex-direction: column; }
.chip-name { font-size: .82rem; font-weight: 600; color: var(--text); }
.chip-role { font-size: .72rem; color: var(--text); opacity: .5; }

.admin-content {
    flex: 1;
    padding: 1.5rem;
}

/* ===== ADMIN PAGE COMPONENTS ===== */
.admin-page { }

.admin-breadcrumb {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    opacity: .6;
}

.admin-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.admin-breadcrumb a:hover { text-decoration: underline; }

.admin-breadcrumb .separator { opacity: .4; }

.admin-breadcrumb .current { font-weight: 600; opacity: 1; }

.admin-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-page-header-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 .25rem;
    color: var(--text);
}

.admin-page-header-info p {
    font-size: .88rem;
    color: var(--text);
    opacity: .6;
    margin: 0;
}

.admin-page-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.admin-quick-panel {
    display: flex;
    align-items: center;
    gap: .35rem;
}

/* ===== ADMIN BUTTONS ===== */
.btn-admin-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}

.btn-admin-primary:hover { background: #9a3224; color: #fff; }
.btn-admin-primary:disabled { opacity: .6; cursor: not-allowed; }

.btn-admin-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    border: 1px solid rgba(0,0,0,.15);
    background: #fff;
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}

.btn-admin-outline:hover { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.25); }

.btn-admin-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    border: none;
    background: var(--accent);
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s;
}

.btn-admin-accent:hover { background: #d9b343; }

.btn-admin-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    border: none;
    background: #c62828;
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s;
}

.btn-admin-danger:hover { background: #a12020; }

.btn-admin-sm { padding: .3rem .65rem; font-size: .82rem; }

/* ===== ADMIN KPI GRID ===== */

/* ---------- Panel micro-interactions ---------- */

.admin-kpi-card {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.admin-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.admin-card {
    transition: box-shadow .2s ease;
}

.admin-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.admin-timeline-item {
    transition: background .15s ease;
}

.admin-timeline-item:hover {
    background: rgba(178,58,44,.02);
}

.btn-admin-primary,
.btn-admin-outline,
.btn-admin-accent,
.btn-admin-danger {
    transition: background .2s, color .2s, box-shadow .2s, transform .15s;
}

.btn-admin-primary:active,
.btn-admin-outline:active,
.btn-admin-accent:active,
.btn-admin-danger:active {
    transform: scale(.97);
}

.btn-admin-primary:focus-visible,
.btn-admin-outline:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.admin-nav-item {
    transition: background .15s, color .15s, padding-left .15s;
}

/* ---------- End panel micro-interactions ---------- */

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-kpi-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow .2s, border-color .2s;
    cursor: default;
}

button.admin-kpi-card {
    cursor: pointer;
    text-align: left;
}

button.admin-kpi-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.admin-kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: .5rem;
    background: rgba(178,58,44,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.admin-kpi-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.admin-kpi-label {
    font-size: .82rem;
    color: var(--text);
    opacity: .6;
}

/* ===== ADMIN CARD ===== */
.admin-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem;
    overflow: hidden;
}

.admin-card-body {
    padding: 1.25rem;
}

.admin-card-body.p-0 { padding: 0; }

/* ===== ADMIN TOOLBAR ===== */
.admin-toolbar {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: .75rem 1rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box .search-icon {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
    opacity: .4;
    font-size: .9rem;
}

.search-box input {
    width: 100%;
    padding: .5rem .75rem .5rem 2.25rem;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: .4rem;
    background: #fff;
    color: var(--text);
    font-size: .88rem;
}

.search-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(178,58,44,.1);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.filter-group .form-select {
    font-size: .85rem;
    padding: .4rem .6rem;
    min-width: 140px;
}

/* ===== ADMIN TABLE ===== */
.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.admin-table thead th {
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--text);
    opacity: .6;
    border-bottom: 2px solid rgba(0,0,0,.08);
    background: #fafafa;
    white-space: nowrap;
}

.admin-table tbody td {
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
    color: var(--text);
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: rgba(178,58,44,.02);
}

.admin-table .col-check { width: 40px; text-align: center; }
.admin-table .col-actions { width: 60px; text-align: center; }

.td-name { font-weight: 600; color: var(--text); }
.td-sub { font-size: .78rem; color: var(--text); opacity: .6; }

/* ===== ADMIN BADGES ===== */
.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    white-space: nowrap;
}

.admin-badge-role {
    background: rgba(178,58,44,.08);
    color: var(--primary);
}

.admin-badge-active {
    background: rgba(46,125,50,.08);
    color: #2e7d32;
}

.admin-badge-inactive {
    background: rgba(0,0,0,.06);
    color: var(--text);
    opacity: .6;
}

/* ===== ADMIN PAGINATION ===== */
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;
    border-top: 1px solid rgba(0,0,0,.06);
    flex-wrap: wrap;
    gap: .5rem;
}

.admin-pagination-info {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text);
    opacity: .7;
}

.page-size-select {
    padding: .2rem .4rem;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: .3rem;
    font-size: .82rem;
    background: #fff;
}

.admin-pagination-controls {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.admin-pagination-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: .35rem;
    background: #fff;
    color: var(--text);
    font-size: .82rem;
    cursor: pointer;
    transition: background .15s;
}

.admin-pagination-controls button:hover:not(:disabled) {
    background: rgba(0,0,0,.04);
}

.admin-pagination-controls button.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.admin-pagination-controls button:disabled {
    opacity: .4;
    cursor: not-allowed;
}

/* ===== ADMIN ROW ACTIONS ===== */
.row-action-wrapper {
    position: relative;
}

.row-action-trigger {
    background: none;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: .35rem;
    padding: .2rem .5rem;
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    transition: background .15s;
}

.row-action-trigger:hover { background: rgba(0,0,0,.04); }

.row-action-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 180px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: .35rem 0;
    z-index: 200;
}

.row-action-menu button {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .45rem .85rem;
    border: none;
    background: none;
    color: var(--text);
    font-size: .85rem;
    cursor: pointer;
    text-align: left;
    transition: background .15s;
}

.row-action-menu button:hover { background: rgba(0,0,0,.04); }

.row-action-menu button.action-danger { color: #c62828; }
.row-action-menu button.action-danger:hover { background: rgba(198,40,40,.06); }

.row-action-divider {
    height: 1px;
    background: rgba(0,0,0,.08);
    margin: .25rem 0;
}

/* ===== ADMIN BULK BAR ===== */
.admin-bulk-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 1rem;
    background: rgba(178,58,44,.06);
    border: 1px solid rgba(178,58,44,.15);
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.bulk-count { font-weight: 600; font-size: .88rem; color: var(--primary); }

.bulk-actions { display: flex; gap: .35rem; }

/* ===== ADMIN ALERT ===== */
.admin-alert {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
    font-size: .88rem;
}

.admin-alert-error {
    background: rgba(198,40,40,.06);
    border: 1px solid rgba(198,40,40,.15);
    color: #c62828;
}

.admin-alert i { margin-top: .1rem; font-size: 1.1rem; }

/* ===== ADMIN TIMELINE ===== */
.admin-timeline {
    display: flex;
    flex-direction: column;
}

.admin-timeline-item {
    padding: .65rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.admin-timeline-item:last-child { border-bottom: none; }

.timeline-action {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}

.timeline-meta {
    font-size: .78rem;
    color: var(--text);
    opacity: .5;
    margin-top: .15rem;
}

/* ===== ADMIN EMPTY STATE ===== */
.admin-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.admin-empty-icon {
    font-size: 3rem;
    color: var(--text);
    opacity: .15;
    margin-bottom: 1rem;
}

.admin-empty h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .35rem;
}

.admin-empty p {
    font-size: .88rem;
    color: var(--text);
    opacity: .5;
    margin: 0 0 1rem;
}

/* ===== ADMIN MODAL ===== */
.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1040;
}

.admin-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}

.admin-modal-content {
    background: #fff;
    border-radius: .75rem;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 12px 48px rgba(0,0,0,.2);
}

.admin-modal-content.modal-lg { max-width: 720px; }

.admin-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.admin-modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.admin-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    opacity: .5;
    padding: 0;
    line-height: 1;
}

.admin-modal-close:hover { opacity: 1; }

.admin-modal-body { padding: 1.5rem; }

.admin-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,.08);
}

/* ===== ADMIN FORM ===== */
.admin-form-section {
    margin-bottom: 1.5rem;
}

.admin-form-section-title {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--text);
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.admin-form-section-title i { color: var(--primary); }

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .admin-form-row { grid-template-columns: 1fr; }
}

.admin-form-group {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.admin-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--text);
}

.admin-label .required { color: #c62828; }

.admin-input {
    width: 100%;
    padding: .5rem .75rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .4rem;
    background: #fff;
    color: var(--text);
    font-size: .88rem;
    transition: border-color .2s;
}

.admin-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(178,58,44,.1);
}

.admin-field-hint {
    font-size: .75rem;
    color: var(--text);
    opacity: .5;
}

.admin-checkbox {
    display: flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
    font-size: .88rem;
    padding: .2rem 0;
}

.admin-checkbox input[type="checkbox"] { accent-color: var(--primary); }

/* ===== ADMIN TOAST ===== */
.admin-toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
}

.admin-toast {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 280px;
    padding: .75rem 1rem;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
    border-left: 4px solid var(--primary);
}

.admin-toast.toast-success { border-left-color: #2e7d32; }
.admin-toast.toast-error { border-left-color: #c62828; }

.admin-toast-icon { font-size: 1.1rem; color: var(--primary); }
.admin-toast.toast-success .admin-toast-icon { color: #2e7d32; }
.admin-toast.toast-error .admin-toast-icon { color: #c62828; }

.admin-toast-message {
    flex: 1;
    font-size: .88rem;
    color: var(--text);
}

.admin-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    opacity: .4;
    padding: .1rem;
    font-size: .9rem;
}

.admin-toast-close:hover { opacity: .8; }

/* ===== ADMIN RESPONSIVE ===== */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-shell.sidebar-open .admin-sidebar {
        transform: translateX(0);
    }

    .sidebar-close { display: block; }
    .sidebar-toggle { display: block; }

    .admin-main {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .admin-page-header {
        flex-direction: column;
    }

    .admin-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-table thead { display: none; }

    .admin-table tbody tr {
        display: block;
        padding: .75rem;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .admin-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .35rem 0;
        border-bottom: none;
    }

    .admin-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: .78rem;
        color: var(--text);
        opacity: .5;
        text-transform: uppercase;
    }

    .admin-kpi-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: .35rem;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(0,0,0,.04);
}

.skeleton-cell-sm { width: 40px; height: 16px; }
.skeleton-cell-md { width: 120px; height: 16px; }
.skeleton-cell-lg { flex: 1; height: 16px; }

/* ===== LEADER KPI STYLES ===== */
.leader-kpi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.leader-card {
    background: var(--bg);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: .75rem;
    padding: 1.25rem;
    color: var(--text);
}

.leader-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: .35rem 0 0;
    color: var(--primary);
}

/* ===== TRIPLE SLIDER ===== */
.home-triple-slider { padding: 1.5rem 0; }
.triple-slider-grid {
    display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 1rem;
}
@media (max-width: 991px) { .triple-slider-grid { grid-template-columns: 1fr; } }

.triple-slider-left, .triple-slider-center, .triple-slider-right {
    border-radius: .75rem; overflow: hidden; position: relative;
    min-height: 300px; background: #f5f5f5;
}
.single-slider-container { position: relative; width: 100%; height: 100%; min-height: 300px; }
.single-slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
}
.single-slide.active { opacity: 1; z-index: 2; }
.slide-image { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.slide-link { display: block; width: 100%; height: 100%; }
.slide-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 100%);
    padding: 1.5rem; display: flex; align-items: flex-end;
    pointer-events: none;
}
.slide-overlay-text { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0; }
.slide-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 36px; height: 36px;
    border: none; border-radius: 50%;
    background: rgba(255,255,255,.8); color: var(--text);
    font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.slide-arrow:hover { background: #fff; }
.slide-arrow-prev { left: .5rem; }
.slide-arrow-next { right: .5rem; }
.slide-indicators {
    position: absolute; bottom: .75rem; left: 50%;
    transform: translateX(-50%); z-index: 10;
    display: flex; gap: .4rem;
}
.slide-indicator {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; background: rgba(255,255,255,.5);
    cursor: pointer; padding: 0; transition: background .2s;
}
.slide-indicator.active { background: var(--primary); }
.slider-loading {
    display: flex; align-items: center; justify-content: center;
    min-height: 300px; background: rgba(0,0,0,.03);
}

/* ===================================================================
   HOME PAGE PREMIUM ENHANCEMENTS
   Yeni yapı: .home-feature-rail / .rail-left / .rail-right
   Tüm kurallar home-cards-patch.css'e taşındı.
   =================================================================== */

/* Eski three-col-list-content gizleme (backwards compat) */
body[data-page="home"] [data-module] .three-col-list-content {
    display: none !important;
}

/* Kart listeleme scrollbar stilizasyonu */
body[data-page="home"] .featured-card .featured-card-slider {
    scrollbar-width: thin;
    scrollbar-color: rgba(178, 58, 44, 0.3) transparent;
}

body[data-page="home"] .featured-card .featured-card-slider::-webkit-scrollbar {
    width: 6px;
}

body[data-page="home"] .featured-card .featured-card-slider::-webkit-scrollbar-track {
    background: transparent;
}

body[data-page="home"] .featured-card .featured-card-slider::-webkit-scrollbar-thumb {
    background: rgba(178, 58, 44, 0.3);
    border-radius: 3px;
}

body[data-page="home"] .featured-card .featured-card-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(178, 58, 44, 0.5);
}
