/* ===================================================================
   TARİHÇE — Premium Page Styles
   Scope: .th-premium — sadece bu sayfa
   =================================================================== */

/* ── Genel reset içi sayfa ── */
.th-premium {
    --th-red: #B23A2C;
    --th-red-dark: #9a3224;
    --th-gold: #F2C94C;
    --th-lentil: #c8a84b;
    --th-text: #1a1a1a;
    --th-bg-soft: #f8f6f4;
    font-family: inherit;
}

.th-lentil-yellow {
    color: var(--th-lentil);
    font-weight: 700;
}

/* ================================================================
   (A) HERO
   ================================================================ */
.th-hero {
    position: relative;
    overflow: hidden;
    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: 5.5rem 0 4.5rem;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

/* Geometrik desen */
.th-hero-geo-overlay {
    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;
}

.th-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Kremit kırmızı aksan çizgisi — hero alt */
.th-hero-bottom-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--th-red), var(--th-gold), var(--th-red));
    z-index: 2;
}

/* Tag */
.th-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .32rem .85rem;
    border-radius: 999px;
    background: rgba(178,58,44,.3);
    border: 1px solid rgba(178,58,44,.5);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f7c7bf;
    margin-bottom: 1.4rem;
}

/* H1 / H2 */
.th-hero-h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: .6rem;
    background: linear-gradient(135deg, #fff 40%, rgba(242,201,76,.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.th-hero-h2 {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--th-gold);
    margin-bottom: 2rem;
    letter-spacing: -.005em;
}

/* Anchor butonları */
.th-hero-anchors {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.th-anchor-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.1rem;
    border-radius: .55rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .22s, border-color .22s, transform .22s;
}

.th-anchor-btn:hover {
    background: rgba(178,58,44,.35);
    border-color: rgba(178,58,44,.6);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats grid — 2×2 */
.th-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.th-stat-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: .9rem;
    padding: 1.2rem 1.3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: background .25s, transform .25s;
}

.th-stat-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--th-red);
    border-radius: 0 2px 2px 0;
}

.th-stat-card:hover {
    background: rgba(255,255,255,.13);
    transform: translateY(-3px);
}

.th-stat-value {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--th-gold);
    line-height: 1;
    margin-bottom: .2rem;
    letter-spacing: -.02em;
}

.th-stat-label {
    font-size: .78rem;
    color: var(--th-gold);
    font-weight: 500;
}

.th-stat-bg-icon {
    position: absolute;
    right: .9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    opacity: .08;
    color: #fff;
}

/* ================================================================
   Scroll-Reveal
   ================================================================ */
.th-rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s cubic-bezier(.25,.46,.45,.94),
                transform .6s cubic-bezier(.25,.46,.45,.94);
    will-change: opacity, transform;
}

.th-rv.visible {
    opacity: 1;
    transform: none;
}

.th-rv-d1 { transition-delay: 90ms; }
.th-rv-d2 { transition-delay: 180ms; }
.th-rv-d3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
    .th-rv { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   Ortak Section Başlıkları
   ================================================================ */
.th-section-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .28rem .8rem;
    border-radius: 999px;
    background: rgba(178,58,44,.1);
    color: var(--th-red);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}

.th-section-tag-light {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
}

.th-section-title {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    color: var(--th-text);
    letter-spacing: -.01em;
    line-height: 1.2;
    margin-bottom: .55rem;
}

.th-section-subtitle {
    font-size: .97rem;
    line-height: 1.7;
    color: var(--th-text);
    opacity: .58;
    max-width: 620px;
}

.th-title-light { color: #fff; }
.th-subtitle-light { opacity: .65; color: rgba(255,255,255,.8); }

/* ================================================================
   (B) ZAMAN TÜNELİ
   ================================================================ */
.th-timeline-section {
    padding: 5.5rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.th-timeline-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--th-red), var(--th-gold), var(--th-red));
}

/* Track — dikey çizgi */
.th-tl-track {
    position: relative;
    padding: .5rem 0 2rem;
    max-width: 780px;
}

.th-tl-track::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        var(--th-red) 0%,
        var(--th-gold) 50%,
        rgba(178,58,44,.18) 100%);
    border-radius: 1px;
    z-index: 0;
}

/* Item */
.th-tl-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.75rem;
    position: relative;
}

.th-tl-item:last-child { padding-bottom: 0; }

/* Node + dot */
.th-tl-node {
    flex-shrink: 0;
    z-index: 1;
}

.th-tl-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--th-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--th-red);
    box-shadow: 0 4px 14px rgba(178,58,44,.22);
    transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}

.th-tl-dot-accent {
    background: var(--th-red);
    color: #fff;
}

.th-tl-item:hover .th-tl-dot,
.th-tl-item.th-active .th-tl-dot {
    transform: scale(1.14);
    box-shadow: 0 0 0 5px rgba(178,58,44,.18), 0 8px 22px rgba(178,58,44,.3);
    background: var(--th-red);
    color: #fff;
}

/* Body */
.th-tl-body {
    flex: 1;
    min-width: 0;
    padding-top: .2rem;
}

/* Badge */
.th-tl-badge {
    display: inline-block;
    padding: .2rem .7rem;
    border-radius: 999px;
    background: rgba(178,58,44,.1);
    color: var(--th-red);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .55rem;
    border: 1px solid rgba(178,58,44,.2);
}

.th-tl-badge-accent {
    background: var(--th-red);
    color: #fff;
    border-color: var(--th-red);
}

/* Card */
.th-tl-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: .9rem;
    padding: 1.3rem 1.45rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

/* Aktif ve hover kart parlama */
.th-tl-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--th-red);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity .25s;
}

.th-tl-item:hover .th-tl-card,
.th-tl-item.th-active .th-tl-card {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(178,58,44,.12);
    border-color: rgba(178,58,44,.25);
}

.th-tl-item:hover .th-tl-card::before,
.th-tl-item.th-active .th-tl-card::before {
    opacity: 1;
}

/* Active glow */
.th-tl-item.th-active .th-tl-card {
    background: linear-gradient(135deg, #fff 85%, rgba(178,58,44,.04) 100%);
}

.th-tl-card-accent {
    border-color: rgba(178,58,44,.25);
    background: linear-gradient(135deg, #fff 80%, rgba(242,201,76,.06) 100%);
}

.th-tl-card-accent::before {
    opacity: 1 !important;
    background: linear-gradient(180deg, var(--th-red), var(--th-gold));
}

/* Card header */
.th-tl-card-hd {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .65rem;
}

.th-tl-icon-box {
    width: 36px;
    height: 36px;
    border-radius: .45rem;
    background: rgba(178,58,44,.1);
    color: var(--th-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.th-tl-item:hover .th-tl-icon-box,
.th-tl-item.th-active .th-tl-icon-box {
    background: var(--th-red);
    color: #fff;
}

.th-icon-box-accent {
    background: var(--th-red);
    color: #fff;
}

.th-tl-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--th-text);
    line-height: 1.25;
}

.th-tl-card-text {
    font-size: .9rem;
    line-height: 1.72;
    color: var(--th-text);
    opacity: .72;
    margin: 0;
}

/* Counter row (M2) */
.th-tl-counter-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: .85rem;
    padding: .6rem 1rem;
    background: rgba(178,58,44,.06);
    border-radius: .55rem;
    width: fit-content;
}

.th-counter-from {
    font-size: 1.3rem;
    font-weight: 900;
    color: rgba(178,58,44,.5);
    line-height: 1;
}

.th-counter-arrow {
    color: var(--th-red);
    font-size: .9rem;
}

.th-counter-to {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--th-red);
    line-height: 1;
}

.th-counter-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--th-text);
    opacity: .55;
    margin-left: .2rem;
}

/* Number chips (M9) */
.th-number-chips {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .85rem;
}

.th-chip {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .28rem .7rem;
    border-radius: 999px;
    background: rgba(178,58,44,.09);
    border: 1px solid rgba(178,58,44,.18);
    font-size: .78rem;
    color: var(--th-text);
}

.th-chip strong {
    color: var(--th-red);
    font-weight: 800;
}

/* School badge (M10) */
.th-school-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    padding: .5rem 1rem;
    border-radius: .55rem;
    background: var(--th-red);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
}

/* ================================================================
   ZIGZAG TİMELİNE
   ================================================================ */

/* Zigzag track: orta çizgisi genişler, item'lar sıradönüşümlene sol-sağ */
.th-tl-track.th-tl-zigzag {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    position: relative;
}

.th-tl-track.th-tl-zigzag::before {
    /* dikey orta çizgi */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    top: 0;
    bottom: 0;
    position: absolute;
    content: "";
    background: linear-gradient(180deg,
        var(--th-red) 0%,
        var(--th-gold) 50%,
        rgba(178,58,44,.18) 100%);
    border-radius: 1px;
    z-index: 0;
}

/* Her item üç sütunun tamamını kaplar */
.th-tl-track.th-tl-zigzag .th-tl-item {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    align-items: start;
    gap: 1.5rem;
    padding-bottom: 2.75rem;
    position: relative;
}

.th-tl-track.th-tl-zigzag .th-tl-item:last-child { padding-bottom: 0; }

/* Node orta kolonda */
.th-tl-track.th-tl-zigzag .th-tl-node {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
}

/* Tek item'lar (1,3,5,7,9) — sol kart, sağ boş */
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(odd) .th-tl-body {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Sağ taraf boş placeholder */
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(odd)::after {
    content: "";
    grid-column: 3;
    grid-row: 1;
}

/* Çift item'lar (2,4,6,8,10) — sağ kart, sol boş */
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(even) .th-tl-body {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Sol taraf boş placeholder */
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(even)::before {
    content: "";
    grid-column: 1;
    grid-row: 1;
}

/* Zigzag badge ve chip hızalamaları */
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(odd) .th-tl-counter-row,
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(odd) .th-number-chips,
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(odd) .th-school-badge {
    align-self: flex-end;
}

/* Kart sol kenarlı çizgi: tek → sağ taraf, çift → sol taraf */
.th-tl-track.th-tl-zigzag .th-tl-item:nth-child(odd) .th-tl-card::before {
    left: auto;
    right: 0;
    border-radius: 2px 0 0 2px;
}

/* Responsive: küçük ekranlarda tekrar düz sol hizalama */
@media (max-width: 767px) {
    .th-tl-track.th-tl-zigzag {
        display: block;
    }
    .th-tl-track.th-tl-zigzag::before {
        left: 22px;
        transform: none;
    }
    .th-tl-track.th-tl-zigzag .th-tl-item {
        display: flex;
        grid-template-columns: none;
        gap: 1.25rem;
    }
    .th-tl-track.th-tl-zigzag .th-tl-item .th-tl-body {
        text-align: left !important;
        align-items: flex-start !important;
    }
    .th-tl-track.th-tl-zigzag .th-tl-item:nth-child(odd) .th-tl-card::before {
        left: 0;
        right: auto;
        border-radius: 0 2px 2px 0;
    }
}

/* ================================================================
   (C) DÖNÜM NOKTALARI
   ================================================================ */
.th-milestones-section {
    padding: 5.5rem 0;
    background: #fff;
    position: relative;
}

.th-milestones-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--th-red), var(--th-gold), transparent);
}

.th-milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.th-milestone-card {
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 1.1rem;
    padding: 1.85rem 1.5rem;
    background: var(--th-bg-soft);
    display: flex;
    flex-direction: column;
    gap: .65rem;
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s, border-color .28s;
}

.th-milestone-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--th-red), var(--th-gold));
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    border-radius: 2px 2px 0 0;
}

.th-milestone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(178,58,44,.12);
    border-color: rgba(178,58,44,.22);
}

.th-milestone-card:hover::after { transform: scaleX(1); }

.th-ms-icon {
    width: 52px;
    height: 52px;
    border-radius: .7rem;
    background: rgba(178,58,44,.1);
    color: var(--th-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: background .2s, color .2s;
}

.th-milestone-card:hover .th-ms-icon {
    background: var(--th-red);
    color: #fff;
}

.th-ms-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--th-red);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.th-ms-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--th-text);
}

.th-ms-text {
    font-size: .87rem;
    line-height: 1.7;
    color: var(--th-text);
    opacity: .66;
    margin: 0;
}

/* ================================================================
   (D) BUGÜN VE ÇEVRE — 3 Kolon Dashboard
   ================================================================ */
.th-today-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #111 0%, #2b1a15 50%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.th-today-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.022)' stroke-width='1'%3E%3Cline x1='0' y1='0' x2='48' y2='0'/%3E%3Cline x1='0' y1='0' x2='0' y2='48'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.th-today-section > .container { position: relative; z-index: 1; }

/* ── Üst başlık alanı ── */
.th-today-header {
    margin-bottom: 2.5rem;
}

.th-today-header-left { display: flex; flex-direction: column; gap: .75rem; }

/* Section title mercimek sarısı override */
.th-today-header .th-section-title.th-lentil-yellow {
    -webkit-text-fill-color: var(--th-lentil);
    background: none;
    color: var(--th-lentil);
}

/* Meta rozetleri */
.th-today-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .2rem;
}

.th-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .28rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.62);
    letter-spacing: .02em;
}

.th-meta-badge i { color: rgba(255,255,255,.4); font-size: .7rem; }

.th-meta-update {
    background: rgba(178,58,44,.15);
    border-color: rgba(178,58,44,.28);
    color: rgba(255,200,180,.75);
}

.th-meta-update i { color: var(--th-red); }

/* ── 3 Kolon ana grid ── */
.th-today-3col {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 2rem;
    align-items: start;
}

/* Kolon ortak başlık */
.th-col-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    padding-bottom: .65rem;
    border-bottom: 2px solid rgba(178,58,44,.35);
    margin-bottom: .85rem;
}

.th-col-head i { color: var(--th-red); font-size: .75rem; }

/* ── Kolon 1: Öne Çıkanlar ── */
.th-col-highlights {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.th-card-group-label {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    padding: .15rem 0 .1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: .05rem;
}

.th-info-card-v2 {
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .8rem;
    padding: .85rem 1rem .85rem 1.3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: background .25s, transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}

.th-info-card-v2::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--th-red);
    border-radius: 0 2px 2px 0;
    transition: background .25s;
}

.th-info-card-v2:hover {
    background: rgba(255,255,255,.11);
    transform: translateX(4px);
    box-shadow: 0 0 0 1px rgba(178,58,44,.3), 0 6px 20px rgba(178,58,44,.15);
    border-color: rgba(178,58,44,.28);
}

.th-info-card-v2:hover::before {
    background: linear-gradient(180deg, var(--th-red), var(--th-gold));
}

.th-info-v2-accent {
    border-color: rgba(178,58,44,.2);
    background: rgba(178,58,44,.09);
}

.th-info-v2-badge {
    display: inline-block;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--th-red);
    color: #fff;
    padding: .1rem .45rem;
    border-radius: 999px;
    margin-bottom: .28rem;
}

.th-info-v2-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--th-gold);
    line-height: 1;
    letter-spacing: -.03em;
}

.th-info-v2-lbl {
    font-size: .74rem;
    font-weight: 600;
    color: rgba(255,255,255,.82);
    margin-top: .06rem;
}

.th-info-v2-bg {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    opacity: .05;
    color: #fff;
    pointer-events: none;
}

/* ── Kolon 2: Güncel Özet ── */
.th-col-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Özet tablo */
.th-summary-table {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: .9rem;
    overflow: hidden;
}

.th-summary-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .18s;
}

.th-summary-row:last-child { border-bottom: none; }
.th-summary-row:hover { background: rgba(255,255,255,.05); }

.th-summary-icon {
    width: 28px;
    height: 28px;
    border-radius: .4rem;
    background: rgba(178,58,44,.15);
    color: var(--th-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
}

.th-summary-label {
    flex: 1;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.th-summary-val {
    font-size: .95rem;
    font-weight: 800;
    color: var(--th-gold);
    letter-spacing: -.01em;
}

.th-summary-sep {
    height: 1px;
    background: rgba(178,58,44,.2);
    margin: 0;
}

/* Açıklama metni */
.th-summary-desc {
    font-size: .86rem;
    line-height: 1.78;
    color: rgba(255,255,255,.52);
    margin: 0;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: .8rem;
    border-left: 3px solid var(--th-red);
}

.th-summary-desc strong { color: rgba(255,255,255,.82); font-weight: 700; }

/* Kaynak notu */
.th-source-note {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .72rem;
    color: rgba(255,255,255,.3);
    font-style: italic;
    padding: .65rem .9rem;
    border-radius: .6rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

.th-source-note i { color: rgba(178,58,44,.5); flex-shrink: 0; margin-top: .05rem; }

/* ── Kolon 3: Konum ── */
.th-col-location {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.th-location-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.th-location-card:hover {
    border-color: rgba(178,58,44,.3);
    box-shadow: 0 8px 28px rgba(178,58,44,.14);
}

/* Harita placeholder */
.th-map-placeholder {
    position: relative;
    height: 148px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(178,58,44,.12) 0%, transparent 65%),
        linear-gradient(180deg, #1a1210 0%, #2b1a15 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.th-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.th-map-pin-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.th-map-pin {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--th-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(178,58,44,.55);
    animation: mapPinPulse 2.8s ease-in-out infinite;
}

@keyframes mapPinPulse {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 4px 16px rgba(178,58,44,.55); }
    50%       { transform: translateY(-4px) scale(1.06); box-shadow: 0 8px 24px rgba(178,58,44,.7); }
}

.th-map-ripple {
    position: absolute;
    bottom: -6px;
    width: 56px;
    height: 14px;
    border-radius: 50%;
    background: rgba(178,58,44,.18);
    animation: mapRipple 2.8s ease-in-out infinite;
}

@keyframes mapRipple {
    0%, 100% { transform: scale(1); opacity: .5; }
    50%       { transform: scale(1.3); opacity: .15; }
}

.th-map-label {
    position: absolute;
    bottom: .65rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    z-index: 2;
}

/* Konum bilgi satırları */
.th-location-info {
    padding: .9rem 1.1rem .5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.th-location-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    color: rgba(255,255,255,.65);
}

.th-location-row i {
    color: var(--th-red);
    font-size: .8rem;
    flex-shrink: 0;
    width: 14px;
}

.th-location-desc {
    font-size: .72rem;
    color: rgba(255,255,255,.32);
    font-style: italic;
    margin: 0;
    padding: .55rem 1.1rem .9rem;
    line-height: 1.55;
}

/* ================================================================
BACK-TO-TOP
================================================================ */
.th-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--th-red);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(178,58,44,.42);
    z-index: 600;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .3s, transform .3s, background .2s;
    pointer-events: none;
}

.th-back-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.th-back-top:hover { background: var(--th-red-dark); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
    .th-milestone-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
    .th-hero { min-height: auto; padding: 4rem 0 3.5rem; }
    .th-stats-grid { grid-template-columns: repeat(4, 1fr); }
    .th-today-3col { grid-template-columns: 1fr 1fr; }
    .th-col-location { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .th-hero { padding: 3rem 0 2.5rem; }
    .th-hero-h1 { font-size: 3rem; }
    .th-stats-grid { grid-template-columns: 1fr 1fr; }
    .th-milestone-grid { grid-template-columns: 1fr; }
    .th-timeline-section,
    .th-milestones-section,
    .th-today-section { padding: 3.5rem 0; }
    .th-tl-track::before { left: 22px; }
    .th-tl-dot { width: 44px; height: 44px; font-size: 1rem; }
    .th-tl-item { gap: 1.25rem; }
    .th-hero-anchors { flex-direction: column; }
    .th-anchor-btn { justify-content: center; }
    .th-today-3col { grid-template-columns: 1fr; }
    .th-col-location { grid-column: auto; }
    .th-today-meta { flex-direction: column; }
}

@media (max-width: 575px) {
    .th-hero-h1 { font-size: 2.5rem; }
    .th-stats-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
    .th-stat-value { font-size: 1.35rem; }
    .th-back-top { bottom: 1.25rem; right: 1.25rem; }
}

/* ================================================================
   DESTEKÇİLER — PREMIUM SAYFA (spx- prefix)
   Tarihçe / Kurumsal marka dili ile tam uyumlu
   Scope: .spx-page [data-scope="public"] — admin etkilenmez
   ================================================================ */

/* ── Sayfa wrap ── */
.spx-page {
    --spx-red:      #B23A2C;
    --spx-red-dark: #9a3224;
    --spx-gold:     #F2C94C;
    --spx-lentil:   #c8a84b;
    --spx-text:     #1a1a1a;
    --spx-bg-soft:  #f8f6f4;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.spx-hero {
    position: relative;
    overflow: hidden;
    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: 5.5rem 0 4.5rem;
    display: flex;
    align-items: center;
}

.spx-hero-geo {
    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;
}

.spx-hero-inner { position: relative; z-index: 1; }

.spx-hero-bottom-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--spx-red), var(--spx-gold), var(--spx-red));
    z-index: 2;
}

.spx-hero-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .3rem .85rem; border-radius: 999px;
    background: rgba(178,58,44,.28); border: 1px solid rgba(178,58,44,.5);
    font-size: .72rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: #f7c7bf;
    margin-bottom: 1.2rem;
}

.spx-hero-h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 900; line-height: .93; letter-spacing: -.03em;
    margin-bottom: .65rem;
    background: linear-gradient(135deg, #fff 40%, rgba(242,201,76,.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spx-hero-h2 {
    font-size: clamp(.92rem, 1.9vw, 1.15rem); font-weight: 400;
    line-height: 1.65; color: rgba(255,255,255,.72); margin-bottom: 0;
}

/* Stats grid */
.spx-hero-stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spx-stat {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: .9rem;
    padding: 1.1rem 1.2rem;
    backdrop-filter: blur(10px);
    position: relative; overflow: hidden;
    transition: background .25s, transform .25s;
}

.spx-stat::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--spx-red);
    border-radius: 0 2px 2px 0;
}

.spx-stat:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }

.spx-stat-icon {
    font-size: 1.1rem; color: rgba(255,255,255,.4);
    margin-bottom: .35rem;
}

.spx-stat-val {
    font-size: 1.65rem; font-weight: 900; color: var(--spx-gold);
    line-height: 1; letter-spacing: -.02em; margin-bottom: .15rem;
}

.spx-stat-lbl {
    font-size: .76rem; color: rgba(255,255,255,.6); font-weight: 500;
}

/* ─────────────────────────────────────────────
   MAIN SECTION — Açık zemin
───────────────────────────────────────────── */
.spx-main-section {
    padding: 5.5rem 0;
    background: #fafafa;
    position: relative;
}

.spx-main-section::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--spx-red), var(--spx-gold), var(--spx-red));
}

/* Section meta */
.spx-section-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .28rem .8rem; border-radius: 999px;
    background: rgba(178,58,44,.1); color: var(--spx-red);
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: .65rem;
}

.spx-section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800; color: var(--spx-text);
    letter-spacing: -.01em; line-height: 1.2; margin-bottom: .5rem;
}

.spx-section-subtitle {
    font-size: .95rem; line-height: 1.72;
    color: var(--spx-text); opacity: .58; max-width: 600px; margin: 0;
}

/* ─────────────────────────────────────────────
   FİLTRE BAR
───────────────────────────────────────────── */
.spx-filter-bar {
    display: flex; flex-wrap: wrap; gap: .55rem;
    margin-bottom: 2.5rem;
}

.spx-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .42rem 1rem; border-radius: 999px;
    background: #fff; border: 1.5px solid rgba(0,0,0,.09);
    color: var(--spx-text); font-size: .82rem; font-weight: 600;
    cursor: pointer; transition: all .22s cubic-bezier(.4,0,.2,1);
    position: relative;
}

.spx-chip:hover {
    border-color: rgba(178,58,44,.4); color: var(--spx-red);
    background: rgba(178,58,44,.04);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(178,58,44,.1);
}

.spx-chip-active {
    background: var(--spx-red); border-color: var(--spx-red);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(178,58,44,.32);
    transform: translateY(-1px);
}

.spx-chip-active:hover { background: var(--spx-red-dark); border-color: var(--spx-red-dark); }

.spx-chip-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; border-radius: 999px;
    background: rgba(255,255,255,.25); font-size: .72rem; font-weight: 700;
    padding: 0 .4rem;
}

.spx-chip:not(.spx-chip-active) .spx-chip-badge {
    background: rgba(178,58,44,.1); color: var(--spx-red);
}

/* ─────────────────────────────────────────────
   KART GRİD
───────────────────────────────────────────── */
.spx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ─────────────────────────────────────────────
   SPONSOR KART — Tasarım dili: büyük logo alanı,
   alt kısım markalı bilgi şeridi
───────────────────────────────────────────── */
.spx-card {
    background: #fff;
    border: 1.5px solid rgba(0,0,0,.06);
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                border-color .3s;
    animation: spxCardIn .5s both;
}

@keyframes spxCardIn {
    from { opacity: 0; transform: translateY(18px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.spx-card::after {
    content: "";
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--spx-red), var(--spx-gold));
    transform: scaleX(0); transition: transform .3s cubic-bezier(.4,0,.2,1);
    border-radius: 2px 2px 0 0;
}

.spx-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(178,58,44,.13);
    border-color: rgba(178,58,44,.2);
}

.spx-card:hover::after { transform: scaleX(1); }

/* Anchor ve inner — yüksekliği düzenle */
.spx-card-anchor, .spx-card-inner {
    display: flex; flex-direction: column;
    height: 100%; text-decoration: none; color: inherit;
}

/* Logo alanı */
.spx-card-logo-area {
    height: 190px;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem 1.75rem;
    background: linear-gradient(145deg, #fafafa 0%, #f5f5f5 100%);
    border-bottom: 1.5px solid rgba(0,0,0,.04);
    position: relative; overflow: hidden;
}

/* Işık halo efekti hover */
.spx-card-logo-area::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(178,58,44,.04) 0%, transparent 65%);
    opacity: 0; transition: opacity .3s;
}

.spx-card:hover .spx-card-logo-area::before { opacity: 1; }

.spx-card-logo-area img {
    max-width: 82%; max-height: 80%;
    object-fit: contain;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    position: relative; z-index: 1;
}

.spx-card:hover .spx-card-logo-area img { transform: scale(1.06); }

.spx-logo-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--spx-red); font-size: 3.2rem; opacity: .14;
}

/* External link badge */
.spx-card-ext-badge {
    position: absolute; top: .85rem; right: .85rem;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(178,58,44,.08); color: var(--spx-red);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; z-index: 2;
    opacity: 0; transition: opacity .25s, transform .25s;
    transform: translate(4px,-4px);
}

.spx-card:hover .spx-card-ext-badge { opacity: 1; transform: translate(0,0); }

/* Kart body — bilgi şeridi */
.spx-card-body {
    padding: 1.1rem 1.35rem 1.3rem;
    flex: 1; display: flex; flex-direction: column; gap: .3rem;
    position: relative;
}

.spx-card-accent-line {
    width: 28px; height: 3px;
    background: linear-gradient(90deg, var(--spx-red), var(--spx-gold));
    border-radius: 2px; margin-bottom: .4rem;
    transition: width .3s;
}

.spx-card:hover .spx-card-accent-line { width: 44px; }

.spx-card-name {
    font-size: .97rem; font-weight: 700;
    color: var(--spx-text); line-height: 1.3;
}

.spx-card-label {
    font-size: .78rem; color: var(--spx-red);
    font-weight: 600; letter-spacing: .02em;
    text-transform: uppercase;
}

/* Skeleton */
.spx-card-skeleton { pointer-events: none; }
.spx-card-skeleton .spx-card-logo-area { padding: 0; }

.spx-shimmer {
    background: linear-gradient(90deg, #f0ede8 25%, #e8e3dc 50%, #f0ede8 75%);
    background-size: 200% 100%;
    animation: spxShimmer 1.4s infinite;
}

.spx-card-skeleton .spx-card-logo-area {
    background: linear-gradient(90deg, #f0ede8 25%, #e8e3dc 50%, #f0ede8 75%);
    background-size: 200% 100%;
    animation: spxShimmer 1.4s infinite;
}

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

/* ─────────────────────────────────────────────
   BOŞ / HATA DURUM
───────────────────────────────────────────── */
.spx-empty {
    text-align: center; padding: 5rem 2rem;
    display: flex; flex-direction: column; align-items: center; gap: .75rem;
}

.spx-empty-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(178,58,44,.08); color: var(--spx-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: .5rem;
}

.spx-empty h3 { font-size: 1.05rem; font-weight: 700; color: var(--spx-text); margin: 0; }
.spx-empty p { font-size: .88rem; color: var(--spx-text); opacity: .55; max-width: 360px; margin: 0; }

.spx-cta-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem 1.25rem; border-radius: .6rem;
    background: var(--spx-red); color: #fff;
    font-size: .86rem; font-weight: 700; text-decoration: none;
    border: none; cursor: pointer;
    transition: background .22s, transform .22s, box-shadow .22s;
    box-shadow: 0 4px 14px rgba(178,58,44,.28);
    margin-top: .75rem;
}

.spx-cta-btn:hover {
    background: var(--spx-red-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(178,58,44,.38);
}

/* ─────────────────────────────────────────────
   TEŞEKKÜR DARK BAND
───────────────────────────────────────────── */
.spx-thanks-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #111 0%, #2b1a15 50%, #1a1a1a 100%);
    color: #fff; position: relative; overflow: hidden;
}

.spx-thanks-geo {
    position: absolute; inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.022)' stroke-width='1'%3E%3Cline x1='0' y1='0' x2='48' y2='0'/%3E%3Cline x1='0' y1='0' x2='0' y2='48'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none; z-index: 0;
}

.spx-thanks-inner { position: relative; z-index: 1; }

.spx-thanks-bottom-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--spx-red), var(--spx-gold), var(--spx-red));
    z-index: 2;
}

.spx-thanks-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .28rem .8rem; border-radius: 999px;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: .65rem;
}

.spx-thanks-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800; color: #fff;
    letter-spacing: -.01em; line-height: 1.2; margin-bottom: .75rem;
}

.spx-thanks-text {
    font-size: .97rem; line-height: 1.8;
    color: rgba(255,255,255,.62); margin: 0;
}

/* CTA kutusu */
.spx-cta-card {
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1.2rem;
    padding: 2rem 1.75rem;
    backdrop-filter: blur(12px);
    text-align: center;
    transition: background .25s, transform .25s;
    position: relative;
    overflow: hidden;
}

.spx-cta-card::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--spx-red), var(--spx-gold));
    border-radius: 0 2px 2px 0;
}

.spx-cta-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }

.spx-cta-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(178,58,44,.25);
    border: 2px solid rgba(178,58,44,.45);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: #f7c7bf;
    margin: 0 auto 1rem;
}

.spx-cta-title {
    font-size: 1.1rem; font-weight: 800;
    color: #fff; margin-bottom: .5rem;
}

.spx-cta-text {
    font-size: .86rem; color: rgba(255,255,255,.58);
    line-height: 1.65; margin-bottom: 1.35rem;
}

.spx-cta-card .spx-cta-btn {
    background: var(--spx-gold); color: var(--spx-text);
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(242,201,76,.32);
}

.spx-cta-card .spx-cta-btn:hover {
    background: #d9b343; color: var(--spx-text);
    box-shadow: 0 8px 24px rgba(242,201,76,.45);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .spx-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .spx-hero { padding: 4rem 0 3rem; }
    .spx-hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
    .spx-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .spx-main-section, .spx-thanks-section { padding: 4rem 0; }
}

@media (max-width: 767px) {
    .spx-hero { padding: 3rem 0 2.5rem; }
    .spx-hero-h1 { font-size: 2.8rem; }
    .spx-hero-stats-grid { grid-template-columns: 1fr 1fr; }
    .spx-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .spx-card-logo-area { height: 150px; }
    .spx-filter-bar { gap: .4rem; }
}

@media (max-width: 575px) {
    .spx-grid { grid-template-columns: 1fr; }
    .spx-card-logo-area { height: 180px; }
    .spx-hero-stats-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
    .spx-stat-val { font-size: 1.35rem; }
}

/* ================================================================
   LOADING EKRANI — Premium pulsed logo (beyaz arka plan)
   ================================================================ */
#app-loading {
    background: #ffffff;
}

#app-loading .loading-logo {
    filter: none;
}

#app-loading .loading-text {
    color: rgba(0,0,0,.45);
}

/* ================================================================
   GİRİŞ SAYFASI — .auth-secondary-btn (Ana Sayfa butonu)
   ================================================================ */
.auth-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 100%;
    padding: .55rem 1rem;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: .5rem;
    background: transparent;
    color: var(--text, #1a1a1a);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
    text-decoration: none;
}

.auth-secondary-btn:hover {
    background: var(--primary, #B23A2C);
    border-color: var(--primary, #B23A2C);
    color: #fff;
    transform: translateY(-1px);
}

.auth-secondary-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ================================================================
   HEADER — "DESTEKÇİMİZ OL" butonu özel vurgu
   ================================================================ */
.main-header .ds-btn-primary {
    background: linear-gradient(135deg, var(--primary, #B23A2C) 0%, #9a3224 100%);
    box-shadow: 0 3px 12px rgba(178,58,44,.32);
    border: none;
    transition: all .25s cubic-bezier(.4,0,.2,1);
}

.main-header .ds-btn-primary:hover {
    background: linear-gradient(135deg, #9a3224 0%, #7e2920 100%);
    box-shadow: 0 6px 20px rgba(178,58,44,.5);
    transform: translateY(-2px);
}

/* ================================================================
   LEİDER LAYOUT — Sidebar Ekip Oluştur
   ================================================================ */
.admin-sidebar .admin-nav-item .bi-people-fill {
    color: var(--kp-gold, #F2C94C);
}


   Tarihçe temasıyla aynı marka dili — kp- prefix
   Scope: [data-scope="public"] — admin/panel ETKİLENMEZ
   ================================================================ */

/* ── Renk değişkenleri (th-premium ile aynı tonlar) ── */
:root {
    --kp-red:     #B23A2C;
    --kp-red-dark:#9a3224;
    --kp-gold:    #F2C94C;
    --kp-lentil:  #c8a84b;
    --kp-text:    #1a1a1a;
    --kp-bg-soft: #f8f6f4;
}

/* ── Hero — th-hero ile birebir aynı görünüm ── */
[data-scope="public"] .kp-hero {
    position: relative;
    overflow: hidden;
    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: 5.5rem 0 4.5rem;
    min-height: 72vh;
    display: flex;
    align-items: center;
}

[data-scope="public"] .kp-hero-geo-overlay {
    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;
}

[data-scope="public"] .kp-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

[data-scope="public"] .kp-hero-bottom-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kp-red), var(--kp-gold), var(--kp-red));
    z-index: 2;
}

/* ── Rozet ── */
[data-scope="public"] .kp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .32rem .85rem;
    border-radius: 999px;
    background: rgba(178,58,44,.3);
    border: 1px solid rgba(178,58,44,.5);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f7c7bf;
    margin-bottom: 1.4rem;
}

/* ── Başlıklar ── */
[data-scope="public"] .kp-hero-h1 {
    font-size: clamp(3.36rem, 7.2vw, 6rem); /* %20 büyütüldü */
    font-weight: 900;
    line-height: .93;
    letter-spacing: -.03em;
    margin-bottom: .65rem;
    background: linear-gradient(135deg, #fff 40%, rgba(242,201,76,.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-scope="public"] .kp-hero-h2 {
font-size: clamp(.95rem, 2vw, 1.2rem);
font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,.72);
    margin-bottom: 2rem;
}

/* ── Anchor butonları ── */
[data-scope="public"] .kp-hero-anchors {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

[data-scope="public"] .kp-anchor-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.1rem;
    border-radius: .55rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .22s, border-color .22s, transform .22s;
    cursor: pointer;
}

[data-scope="public"] .kp-anchor-btn:hover {
    background: rgba(178,58,44,.35);
    border-color: rgba(178,58,44,.6);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Stat grid 2×2 ── */
[data-scope="public"] .kp-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

[data-scope="public"] .kp-stat-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: .9rem;
    padding: 1.2rem 1.3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: background .25s, transform .25s;
}

[data-scope="public"] .kp-stat-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--kp-red);
    border-radius: 0 2px 2px 0;
}

[data-scope="public"] .kp-stat-card:hover {
    background: rgba(255,255,255,.13);
    transform: translateY(-3px);
}

[data-scope="public"] .kp-stat-value {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--kp-gold);
    line-height: 1;
    margin-bottom: .2rem;
    letter-spacing: -.02em;
}

[data-scope="public"] .kp-stat-label {
    font-size: .78rem;
    color: var(--kp-gold);
    font-weight: 500;
}

[data-scope="public"] .kp-stat-bg-icon {
    position: absolute;
    right: .9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    opacity: .08;
    color: #fff;
}

/* ── Scroll-Reveal ── */
[data-scope="public"] .kp-rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.25,.46,.45,.94),
                transform .6s cubic-bezier(.25,.46,.45,.94);
    will-change: opacity, transform;
}

[data-scope="public"] .kp-rv.visible { opacity: 1; transform: none; }

[data-scope="public"] .kp-rv-d1 { transition-delay: 80ms; }
[data-scope="public"] .kp-rv-d2 { transition-delay: 160ms; }
[data-scope="public"] .kp-rv-d3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    [data-scope="public"] .kp-rv { opacity: 1; transform: none; transition: none; }
}

/* Mobilde kp-rv gecikmesini azalt — scroll reveal daha hızlı tetiklensin */
@media (max-width: 767px) {
    [data-scope="public"] .kp-rv {
        transition-duration: .25s;
    }
    [data-scope="public"] .kp-rv-d1 { transition-delay: 30ms; }
    [data-scope="public"] .kp-rv-d2 { transition-delay: 60ms; }
    [data-scope="public"] .kp-rv-d3 { transition-delay: 90ms; }
}

/* Mobilde ana sayfa bölümleri hemen görünsün — scroll-reveal gecikme sorunu çözümü */
@media (max-width: 767px) {
    [data-scope="public"] .kp-page #neler-yapiyoruz .kp-rv,
    [data-scope="public"] .kp-page #biz-kimiz .kp-rv,
    [data-scope="public"] .kp-page .home-feature-rail .kp-rv {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Section başlığı ── */
[data-scope="public"] .kp-section-tag,
.kp-page .kp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .28rem .8rem;
    border-radius: 999px;
    background: rgba(178,58,44,.1);
    color: var(--kp-red);
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .65rem;
}

[data-scope="public"] .kp-section-title,
.kp-page .kp-section-title {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--kp-red);
    letter-spacing: -.01em;
    line-height: 1.2;
    margin-bottom: .5rem;
}

[data-scope="public"] .kp-section-subtitle,
.kp-page .kp-section-subtitle {
    font-size: .95rem;
    line-height: 1.72;
    color: var(--kp-text);
    opacity: .58;
    max-width: 600px;
    margin: 0;
}

/* ── İçerik section'ları (aydınlık) ── */
[data-scope="public"] .kp-content-section,
.kp-page .kp-content-section {
    padding: 5rem 0;
    background: #fafafa;
    position: relative;
}

[data-scope="public"] .kp-content-section::before,
.kp-page .kp-content-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kp-red), var(--kp-gold), var(--kp-red));
}

[data-scope="public"] .kp-content-section-white,
.kp-page .kp-content-section-white { background: #fff; }

/* ── Profil kartları grid ── */
[data-scope="public"] .kp-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

[data-scope="public"] .kp-member-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 1.1rem;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s, border-color .28s;
    position: relative;
}

[data-scope="public"] .kp-member-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kp-red), var(--kp-gold));
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

[data-scope="public"] .kp-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(178,58,44,.11);
    border-color: rgba(178,58,44,.2);
}

[data-scope="public"] .kp-member-card:hover::after { transform: scaleX(1); }

[data-scope="public"] .kp-member-photo {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--kp-bg-soft);
    overflow: hidden;
}

[data-scope="public"] .kp-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

[data-scope="public"] .kp-member-card:hover .kp-member-photo img { transform: scale(1.04); }

[data-scope="public"] .kp-member-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0ede8 0%, #e8e3dc 100%);
}

[data-scope="public"] .kp-member-photo-placeholder img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    opacity: .22;
}

[data-scope="public"] .kp-member-hover-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(178,58,44,.65);
    opacity: 0;
    transition: opacity .3s;
}

[data-scope="public"] .kp-member-card:hover .kp-member-hover-logo { opacity: 1; }

[data-scope="public"] .kp-member-hover-logo img {
    width: 45%;
    height: auto;
    opacity: .9;
    filter: brightness(0) invert(1);
}

[data-scope="public"] .kp-member-body { padding: 1.1rem 1.2rem 1.25rem; }

[data-scope="public"] .kp-member-accent-line {
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--kp-red), var(--kp-gold));
    border-radius: 2px;
    margin-bottom: .65rem;
}

[data-scope="public"] .kp-member-name {
    font-size: .97rem;
    font-weight: 700;
    color: var(--kp-text);
    line-height: 1.3;
    margin-bottom: .25rem;
}

[data-scope="public"] .kp-member-role {
    font-size: .8rem;
    color: var(--kp-red);
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: .6rem;
}

[data-scope="public"] .kp-member-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(178,58,44,.1);
    color: var(--kp-red);
    font-size: .8rem;
    text-decoration: none;
    transition: background .2s, color .2s;
}

[data-scope="public"] .kp-member-social:hover { background: var(--kp-red); color: #fff; }

/* Öne çıkan kart (başkan) */
[data-scope="public"] .kp-member-card-featured {
    border-color: rgba(178,58,44,.22);
    background: linear-gradient(135deg, #fff 80%, rgba(242,201,76,.04) 100%);
}

[data-scope="public"] .kp-member-card-featured::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--kp-red), var(--kp-gold));
    border-radius: 0 2px 2px 0;
}

/* ── Skeleton loading ── */
[data-scope="public"] .kp-skeleton-card { pointer-events: none; }

[data-scope="public"] .kp-skeleton-photo {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(90deg, #f0ede8 25%, #e8e3dc 50%, #f0ede8 75%);
    background-size: 200% 100%;
    animation: kpShimmer 1.4s infinite;
}

[data-scope="public"] .kp-skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0ede8 25%, #e8e3dc 50%, #f0ede8 75%);
    background-size: 200% 100%;
    animation: kpShimmer 1.4s infinite;
    margin-bottom: .5rem;
}

[data-scope="public"] .kp-skeleton-name  { width: 70%; }
[data-scope="public"] .kp-skeleton-title { width: 45%; }

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

/* ── Boş durum ── */
[data-scope="public"] .kp-empty {
    text-align: center;
    padding: 4.5rem 2rem;
    color: rgba(0,0,0,.38);
}

[data-scope="public"] .kp-empty i { font-size: 3.2rem; opacity: .25; display: block; margin-bottom: 1rem; }
[data-scope="public"] .kp-empty h3 { font-size: 1.05rem; font-weight: 600; color: var(--kp-text); margin-bottom: .4rem; }
[data-scope="public"] .kp-empty p  { font-size: .88rem; max-width: 380px; margin: 0 auto; }

/* ── İletişim kutusu ── */
[data-scope="public"] .kp-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem 1.75rem;
    border-radius: 1rem;
    background: var(--kp-bg-soft);
    border: 1px solid rgba(178,58,44,.12);
    border-left: 4px solid var(--kp-red);
    margin-top: 3rem;
}

[data-scope="public"] .kp-contact-box i { font-size: 1.5rem; color: var(--kp-red); flex-shrink: 0; margin-top: .1rem; }
[data-scope="public"] .kp-contact-box p { font-size: .9rem; line-height: 1.7; color: var(--kp-text); opacity: .72; margin: 0; }

[data-scope="public"] .kp-contact-link { color: var(--kp-red); font-weight: 600; text-decoration: none; }
[data-scope="public"] .kp-contact-link:hover { color: var(--kp-red-dark); text-decoration: underline; }

/* ── Alan kartları (Gençlik çalışma alanları / Yönetim sorumlulukları) ── */
[data-scope="public"] .kp-areas-grid,
.kp-page .kp-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

[data-scope="public"] .kp-area-card,
.kp-page .kp-area-card {
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 1rem;
    padding: 1.65rem 1.35rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

[data-scope="public"] .kp-area-card::after,
.kp-page .kp-area-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kp-red), var(--kp-gold));
    transform: scaleX(0);
    transition: transform .3s;
}

[data-scope="public"] .kp-area-card:hover,
.kp-page .kp-area-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(178,58,44,.1); border-color: rgba(178,58,44,.18); }
[data-scope="public"] .kp-area-card:hover::after,
.kp-page .kp-area-card:hover::after { transform: scaleX(1); }

[data-scope="public"] .kp-area-icon,
.kp-page .kp-area-icon {
    width: 48px;
    height: 48px;
    border-radius: .65rem;
    background: rgba(178,58,44,.1);
    color: var(--kp-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background .2s, color .2s;
}

[data-scope="public"] .kp-area-card:hover .kp-area-icon,
.kp-page .kp-area-card:hover .kp-area-icon { background: rgba(178,58,44,.18); color: var(--kp-red); }
[data-scope="public"] .kp-area-title,
.kp-page .kp-area-title { font-size: .95rem; font-weight: 700; color: var(--kp-text); }
[data-scope="public"] .kp-area-text,
.kp-page .kp-area-text  { font-size: .84rem; line-height: 1.7; color: var(--kp-text); opacity: .62; margin: 0; }

/* Manifesto kutusu (Gençlik) */
[data-scope="public"] .kp-manifesto,
.kp-page .kp-manifesto {
    padding: 1.75rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fff 80%, rgba(242,201,76,.04) 100%);
    border: 1px solid rgba(178,58,44,.16);
    border-left: 5px solid var(--kp-red);
    position: relative;
    margin-bottom: .5rem;
}

[data-scope="public"] .kp-manifesto::before,
.kp-page .kp-manifesto::before {
    content: "\201C";
    position: absolute;
    top: -.2rem;
    left: 1.4rem;
    font-size: 4.5rem;
    color: var(--kp-red);
    opacity: .12;
    font-family: Georgia, serif;
    line-height: 1;
}

[data-scope="public"] .kp-manifesto p,
.kp-page .kp-manifesto p {
    font-size: .97rem;
    line-height: 1.8;
    color: var(--kp-text);
    opacity: .75;
    margin: 0;
    position: relative;
    z-index: 1;
}

[data-scope="public"] .kp-manifesto strong,
.kp-page .kp-manifesto strong { color: var(--kp-text); font-weight: 700; }

/* ── CTA Buton (kp-cta-btn) ── */
[data-scope="public"] .kp-cta-btn,
.kp-page .kp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.4rem;
    border-radius: .6rem;
    background: var(--kp-red);
    color: #fff;
    border: none;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .22s, transform .22s, box-shadow .22s;
}

[data-scope="public"] .kp-cta-btn:hover,
.kp-page .kp-cta-btn:hover {
    background: var(--kp-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(178,58,44,.25);
}

/* ================================================================
   DESTEKÇİLER (SPONSORLAR) — LOGO GRID (PREMIUM)
   ================================================================ */

/* ── Destekçiler logo grid (PREMIUM) ── */
[data-scope="public"] .kp-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

[data-scope="public"] .kp-sponsor-card {
    background: #fff;
    border: 2px solid rgba(0,0,0,.06);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: border-color .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
    position: relative;
}

[data-scope="public"] .kp-sponsor-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kp-red), var(--kp-gold));
    transform: scaleX(0);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}

[data-scope="public"] .kp-sponsor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(178,58,44,.15);
    border-color: rgba(178,58,44,.25);
}

[data-scope="public"] .kp-sponsor-card:hover::after {
    transform: scaleX(1);
}

[data-scope="public"] .kp-sponsor-card-link,
[data-scope="public"] .kp-sponsor-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

[data-scope="public"] .kp-sponsor-logo {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-bottom: 2px solid rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}

[data-scope="public"] .kp-sponsor-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(178,58,44,.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}

[data-scope="public"] .kp-sponsor-card:hover .kp-sponsor-logo::before {
    opacity: 1;
}

[data-scope="public"] .kp-sponsor-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform .3s;
}

[data-scope="public"] .kp-sponsor-card:hover .kp-sponsor-logo img {
    transform: scale(1.05);
}

[data-scope="public"] .kp-sponsor-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--kp-red);
    opacity: .18;
    font-size: 3.5rem;
}

[data-scope="public"] .kp-sponsor-body {
    padding: 1.5rem 1.75rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    position: relative;
}

[data-scope="public"] .kp-sponsor-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--kp-text);
    line-height: 1.3;
    margin: 0 0 .25rem 0;
}

[data-scope="public"] .kp-sponsor-label {
    font-size: .82rem;
    color: var(--kp-red);
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}

[data-scope="public"] .kp-sponsor-text {
    font-size: .88rem;
    color: var(--kp-text);
    opacity: .62;
    margin: .5rem 0 0 0;
    line-height: 1.55;
}

[data-scope="public"] .kp-sponsor-ext {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: .85rem;
    color: var(--kp-red);
    opacity: 0;
    transition: opacity .3s, transform .3s;
    background: rgba(178,58,44,.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-scope="public"] .kp-sponsor-card:hover .kp-sponsor-ext {
    opacity: 1;
    transform: translateX(3px);
}

