﻿/*
Theme Name: Caspian Watch Premium
Theme URI: https://caspianwatch.com
Author: Caspian Watch
Version: 14.0.0
Description: Premium independent news and human rights monitoring theme with a dark vintage editorial design.
License: GNU General Public License v2 or later
Text Domain: caspian-watch
*/

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CSS CUSTOM PROPERTIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --color-deep-forest:    #09212B;
  --color-vintage-green:  #0E2B36;
  --color-moss-green:     #143847;
  --color-sage-green:     #5D8792;
  --color-dusty-green:    #8AA8AD;
  --color-seafoam:        #AEBBAD;

  --color-vintage-brown:  #5A3A2A;
  --color-burnt-sienna:   #A04724;
  --color-vintage-orange: #CC5E2A;
  --color-terracotta:     #C6724A;
  --color-aged-peach:     #D28A64;
  --color-warm-sand:      #E6C8A8;
  --color-premium-gold:   #C99A2E;
  --color-gold-soft:      rgba(201, 154, 46, 0.48);

  --bg-main:      #06262E;
  --bg-secondary: var(--color-deep-forest);
  --card-teal:    #163845;
  --bg-card:      linear-gradient(160deg, rgba(22,56,69,0.88) 0%, rgba(12,36,46,0.92) 100%);
  --text-main:    #F2F0EB;
  --text-muted:   var(--color-seafoam);
  --border-color: rgba(255, 255, 255, 0.09);
  --border-gold:  rgba(201, 154, 46, 0.36);
  --texture-blue: url('assets/images/vintage-dark-blue.jpg');
  --texture-gold: url('assets/images/vintage-dark-gold.webp');
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BASE RESET
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-main);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(20,56,71,0.38) 0%, transparent 72%),
    linear-gradient(180deg, rgba(6,38,46,0.98) 0%, rgba(4,28,35,1) 100%);
  color: var(--text-main);
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--color-vintage-orange); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  line-height: 1.22;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeIn 0.55s ease-out forwards; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
  background-image:
    linear-gradient(180deg, rgba(6,25,36,0.76) 0%, rgba(5,20,30,0.9) 100%),
    var(--texture-blue);
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), inset 0 -1px 0 rgba(255,225,145,0.08);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background-image:
    linear-gradient(90deg, transparent, rgba(201,154,46,0.78), transparent),
    var(--texture-gold);
  background-size: 100% 100%, cover;
  background-blend-mode: screen, normal;
  pointer-events: none;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 88px; }
.logo-container { display: flex; align-items: center; }
.logo-container img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.34));
}

.main-nav { display: flex; gap: clamp(0.75rem, 1.25vw, 1.45rem); align-items: center; }
.main-nav .menu-item { list-style: none; }
.main-nav a {
  font-size: 0.82rem; font-weight: 700; color: var(--text-main);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.4rem 0; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--color-premium-gold), var(--color-vintage-orange));
  transition: width 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.current-menu-item::after { width: 100%; }
.main-nav a:hover { color: var(--color-warm-sand); text-shadow: 0 0 14px rgba(201,154,46,0.22); }

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none; flex-direction: column; justify-content: space-around;
  width: 30px; height: 24px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 201;
}
.mobile-menu-toggle span {
  width: 100%; height: 2.5px; background: var(--text-main);
  border-radius: 10px; transition: all 0.3s ease; transform-origin: 1px;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .mobile-menu-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 88px; left: 0; width: 100%;
    background-image:
      linear-gradient(180deg, rgba(6,25,36,0.9), rgba(5,20,30,0.96)),
      var(--texture-blue);
    background-size: cover;
    backdrop-filter: blur(16px);
    flex-direction: column; gap: 0; align-items: stretch;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  }
  .main-nav.active { max-height: 600px; padding: 1rem 0; }
  .main-nav a { padding: 1rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.04); text-align: left; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.main-content { padding: 3.5rem 0 5rem; }
.main-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; }
@media (max-width: 1100px) { .main-grid { grid-template-columns: 1fr; } }

.section-heading { font-size: 2rem; margin-bottom: 0.75rem; }
.section-underline {
  height: 2px; width: 80px;
  background-image:
    linear-gradient(90deg, rgba(201,154,46,0.92), rgba(204,94,42,0.88)),
    var(--texture-gold);
  background-size: 100% 100%, cover;
  background-blend-mode: multiply, normal;
  box-shadow: 0 0 14px rgba(201,154,46,0.24);
  margin-bottom: 2rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEWS GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Latest news carousel */
.cw-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(145deg, rgba(9,33,43,0.92), rgba(5,20,30,0.98)),
    var(--texture-blue);
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 52px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.05);
  margin-bottom: 4rem;
}
.cw-carousel::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background-image:
    linear-gradient(90deg, transparent, rgba(201,154,46,0.78), transparent),
    var(--texture-gold);
  background-size: 100% 100%, cover;
  background-blend-mode: screen, normal;
  pointer-events: none;
}
.cw-carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.cw-carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 430px;
}
.cw-carousel-media {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  background: var(--color-deep-forest);
}
.cw-carousel-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 56%, rgba(5,20,30,0.68) 100%);
  pointer-events: none;
}
.cw-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cw-carousel-slide:hover .cw-carousel-image { transform: scale(1.035); }
.cw-carousel-fallback {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 35%, rgba(20,56,71,0.72), transparent 74%),
    linear-gradient(145deg, rgba(9,33,43,0.95), rgba(5,20,30,0.98)),
    var(--texture-blue);
  background-size: cover;
}
.cw-carousel-fallback span {
  color: rgba(242,240,235,0.28);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  letter-spacing: 0.16em;
}
.cw-carousel-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(145deg, rgba(22,56,69,0.9), rgba(6,25,36,0.96));
}
.cw-carousel-topline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.cw-carousel-category {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201,154,46,0.42);
  color: var(--color-warm-sand);
  border-radius: 4px;
  padding: 0.35rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.18);
}
.cw-carousel-category:hover { color: #fff; border-color: var(--color-premium-gold); }
.cw-carousel-date {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.cw-carousel-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 1.15rem;
}
.cw-carousel-title a { color: var(--text-main); }
.cw-carousel-title a:hover { color: var(--color-warm-sand); }
.cw-carousel-excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 1.6rem;
}
.cw-carousel-link {
  align-self: flex-start;
  color: var(--color-vintage-orange);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cw-carousel-link:hover { color: var(--color-warm-sand); }
.cw-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(201,154,46,0.38);
  background: rgba(5,20,30,0.78);
  color: var(--text-main);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  transition: all 0.25s ease;
}
.cw-carousel-control:hover {
  border-color: var(--color-premium-gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.34), 0 0 0 1px rgba(201,154,46,0.2);
  color: var(--color-warm-sand);
}
.cw-carousel-prev { left: 1rem; }
.cw-carousel-next { right: 1rem; }
.cw-carousel-indicators {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  z-index: 4;
  display: flex;
  gap: 0.55rem;
}
.cw-carousel-indicator {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.cw-carousel-indicator.active {
  width: 28px;
  border-color: var(--color-premium-gold);
  background: var(--color-premium-gold);
}

@media (max-width: 900px) {
  .cw-carousel-slide { grid-template-columns: 1fr; }
  .cw-carousel-media,
  .cw-carousel-fallback { min-height: 270px; }
  .cw-carousel-media::after { background: linear-gradient(180deg, transparent 55%, rgba(5,20,30,0.5)); }
  .cw-carousel-panel { padding: 2rem; }
  .cw-carousel-control { top: 220px; }
}

@media (max-width: 560px) {
  .cw-carousel { border-radius: 8px; margin-bottom: 2.5rem; }
  .cw-carousel-media,
  .cw-carousel-fallback { min-height: 220px; }
  .cw-carousel-panel { padding: 1.5rem; }
  .cw-carousel-control { top: 185px; width: 36px; height: 36px; }
  .cw-carousel-indicators { left: 1.5rem; right: auto; bottom: 1rem; }
}

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 10px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,154,46,0.2); border-color: var(--color-gold-soft); }
.card-img-container { height: 210px; overflow: hidden; position: relative; background: var(--color-vintage-green); }
.card-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .card-img-container img { transform: scale(1.06); }
.card-img-fallback { display: flex; align-items: center; justify-content: center; }
.card-img-fallback span { color: rgba(255,255,255,0.25); font-family: 'Source Serif 4', Georgia, serif; font-size: 1.4rem; letter-spacing: 4px; }
.card-content { padding: 1.4rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-date { font-size: 0.82rem; color: var(--color-dusty-green); margin-bottom: 0.5rem; }
.card-title { font-size: 1.15rem; line-height: 1.4; margin-bottom: 0.9rem; color: var(--text-main); }
.news-card:hover .card-title { color: var(--color-vintage-orange); }
.card-excerpt { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; flex-grow: 1; margin-bottom: 1rem; }
.read-more-link { color: var(--color-sage-green); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: auto; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRISONERS GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.prisoners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 1100px) { .prisoners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .prisoners-grid { grid-template-columns: 1fr; } }

/* Prisoner Card */
.prisoner-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 10px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.prisoner-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 22px 42px rgba(0,0,0,0.52), 0 0 0 1px rgba(201,154,46,0.22); border-color: var(--color-gold-soft); }

.prisoner-card-img-link { display: block; }
.prisoner-card-img { position: relative; height: 240px; overflow: hidden; background: var(--color-vintage-green); }
.prisoner-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.prisoner-card:hover .prisoner-card-img img { transform: scale(1.05); }
.prisoner-card-no-photo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 1rem; letter-spacing: 2px; }

/* Status badge overlay */
.prisoner-status-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.badge-imprisoned { background: rgba(200,40,40,0.9); color: #fff; box-shadow: 0 2px 8px rgba(200,40,40,0.5); }
.badge-released   { background: rgba(40,160,80,0.9); color: #fff; box-shadow: 0 2px 8px rgba(40,160,80,0.5); }

.prisoner-card-content { padding: 1.4rem; display: flex; flex-direction: column; flex-grow: 1; }

/* Category badges */
.prisoner-cat-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.prisoner-cat-badge {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 3px; text-transform: uppercase;
}
.cat-siyasi     { background: rgba(204,94,42,0.2);  color: var(--color-vintage-orange); border: 1px solid rgba(204,94,42,0.3); }
.cat-media      { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }
.cat-dindar     { background: rgba(34,197,94,0.15);  color: #86efac; border: 1px solid rgba(34,197,94,0.25); }
.cat-ziyal%C4%B1,.cat-ziyali { background: rgba(167,139,250,0.15); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.25); }

.prisoner-card-name { font-size: 1.15rem; line-height: 1.35; margin-bottom: 0.6rem; }
.prisoner-card-name a { color: var(--text-main); }
.prisoner-card:hover .prisoner-card-name a { color: var(--color-vintage-orange); }
.prisoner-card-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; flex-grow: 1; margin-bottom: 1.2rem; }
.prisoner-card-btn {
  display: inline-block; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid var(--border-color); border-radius: 5px;
  color: var(--text-muted); transition: all 0.25s ease; align-self: flex-start;
}
.prisoner-card-btn:hover { border-color: var(--color-vintage-orange); color: var(--color-vintage-orange); background: rgba(204,94,42,0.08); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM 3D STATS BOX (Homepage Sidebar)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,94,42,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(204,94,42,0); }
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.85); }
}

.pp-stats-box {
  background: linear-gradient(145deg,
    rgba(205,221,214,0.96) 0%,
    rgba(160,190,187,0.96) 48%,
    rgba(116,158,162,0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.75rem;
  color: #08212B;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 14px 42px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.06), inset 0 0 0 1px rgba(201,154,46,0.06);
  margin-bottom: 2rem;
  cursor: default;
}
/* Decorative glow corner */
.pp-stats-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,246,203,0.34) 0%, transparent 70%);
  pointer-events: none;
}

.pp-stats-live-header {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ef4444;
  animation: live-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.25);
}
.live-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: #9f2f2f; }
.live-update-time { margin-left: auto; font-size: 0.68rem; color: rgba(8,33,43,0.55); font-variant-numeric: tabular-nums; }

.pp-stats-title {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 1.7rem;
  margin-bottom: 0.5rem; color: #08212B; line-height: 1.2;
}
.pp-stats-divider {
  height: 3px; width: 50px; border-radius: 2px; margin-bottom: 1rem;
  background-image:
    linear-gradient(90deg, rgba(201,154,46,0.92), rgba(204,94,42,0.88)),
    var(--texture-gold);
  background-size: 100% 100%, cover;
  background-blend-mode: multiply, normal;
  box-shadow: 0 0 12px rgba(201,154,46,0.38);
}
.pp-stats-desc { font-size: 0.88rem; line-height: 1.6; color: rgba(8,33,43,0.78); margin-bottom: 1.5rem; }

/* 6-stat grid */
.pp-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem;
}
.pp-stat-block {
  background: rgba(8,33,43,0.12); border: 1px solid rgba(8,33,43,0.13);
  border-radius: 8px; padding: 0.85rem 0.6rem; text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pp-stat-block:hover { background: rgba(8,33,43,0.18); border-color: rgba(201,154,46,0.46); }
.pp-stat-num {
  display: block; font-size: 1.65rem; font-weight: 800;
  font-family: 'Inter', sans-serif; line-height: 1; margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}
.pp-stat-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(8,33,43,0.7); }

.pp-stat-total       .pp-stat-num { color: #6E4D12; }
.pp-stat-imprisoned  .pp-stat-num { color: #b83232; }
.pp-stat-released    .pp-stat-num { color: #187142; }
.pp-stat-deceased    .pp-stat-num { color: #4b5563; }
.pp-stat-house       .pp-stat-num { color: #9a6700; }
.pp-stat-investigation .pp-stat-num { color: #175a9f; }

/* Category row */
.pp-cats-divider { height: 1px; background: rgba(8,33,43,0.13); margin-bottom: 1rem; }
.pp-category-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.pp-cat-item { text-align: center; padding: 0.6rem 0.3rem; border-radius: 6px; background: rgba(8,33,43,0.1); border: 1px solid rgba(8,33,43,0.08); }
.pp-cat-num { display: block; font-size: 1.1rem; font-weight: 800; font-family: 'Inter', sans-serif; }
.pp-cat-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(8,33,43,0.66); }
.pp-cat-siyasi .pp-cat-num  { color: #9d4a22; }
.pp-cat-media  .pp-cat-num  { color: #1d5f91; }
.pp-cat-dindar .pp-cat-num  { color: #17643d; }
.pp-cat-ziyali .pp-cat-num  { color: #5f3e91; }

/* CTA Button */
.pp-stats-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, #143847, #0E2B36);
  border: 1px solid rgba(201,154,46,0.42);
  color: #fff; font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.9rem 1.5rem; border-radius: 8px;
  transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.08);
}
.pp-stats-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,154,46,0.28);
  color: #fff; filter: brightness(1.1);
}
.pp-stats-btn svg { transition: transform 0.3s ease; }
.pp-stats-btn:hover svg { transform: translateX(4px); }

/* Compact version (archive sidebar) */
.pp-stats-box-compact .pp-stats-grid { grid-template-columns: repeat(2, 1fr); }
.pp-stats-grid-2 { grid-template-columns: repeat(2, 1fr) !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   POLITICAL PRISONERS ARCHIVE PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero */
.pp-archive-hero {
  background-image:
    linear-gradient(135deg, rgba(5,20,30,0.84) 0%, rgba(20,56,71,0.78) 52%, rgba(6,25,36,0.92) 100%),
    var(--texture-blue);
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--border-gold);
  padding: 4rem 0 3rem;
  margin-bottom: 0;
  position: relative; overflow: hidden;
}
.pp-archive-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,154,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pp-hero-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--color-vintage-orange);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.pp-hero-title {
  font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.1;
}
.pp-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.6; }

/* Stats Bar */
.pp-stats-bar {
  background: #09212B; border-bottom: 1px solid rgba(201,154,46,0.2);
  padding: 1.5rem 0;
}
.pp-stats-bar-inner {
  display: flex; align-items: stretch; gap: 0;
  flex-wrap: wrap;
}
.pp-bar-stat {
  display: flex; flex-direction: column; padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.pp-bar-stat:last-child { border-right: none; }
.pp-bar-num {
  font-size: 1.8rem; font-weight: 800; font-family: 'Inter', sans-serif;
  color: var(--text-main); display: block; line-height: 1; margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}
.pp-bar-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); font-weight: 600; }
.pp-bar-imprisoned .pp-bar-num { color: #f87171; }
.pp-bar-released   .pp-bar-num { color: #4ade80; }
.pp-bar-deceased   .pp-bar-num { color: #9ca3af; }
.pp-bar-house      .pp-bar-num { color: #fbbf24; }
.pp-bar-investigation .pp-bar-num { color: #60a5fa; }

@media (max-width: 768px) {
  .pp-stats-bar-inner { gap: 0.5rem; }
  .pp-bar-stat { padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; }
}

/* Filter Bar */
.pp-filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  background: rgba(22,56,69,0.42); border: 1px solid var(--border-color);
  border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}
.pp-filter-search {
  flex: 1; min-width: 200px; padding: 0.7rem 1rem;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.3); color: var(--text-main);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color 0.25s ease;
}
.pp-filter-search:focus { border-color: var(--color-premium-gold); }
.pp-filter-search::placeholder { color: rgba(255,255,255,0.3); }

.pp-filter-select {
  padding: 0.7rem 1rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(9,33,43,0.9);
  color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 0.88rem;
  outline: none; cursor: pointer; transition: border-color 0.25s ease;
  min-width: 140px;
}
.pp-filter-select:focus { border-color: var(--color-premium-gold); }

.pp-filter-reset {
  padding: 0.7rem 1.25rem; border-radius: 6px;
  border: 1px solid rgba(204,94,42,0.5); background: transparent;
  color: var(--color-vintage-orange); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer;
  transition: all 0.25s ease;
}
.pp-filter-reset:hover { background: rgba(204,94,42,0.1); border-color: var(--color-vintage-orange); }

.pp-result-count {
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.pp-result-count span { font-weight: 700; color: var(--text-main); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRISONER SINGLE PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pp-back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--color-sage-green); font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 2rem; transition: color 0.25s ease;
}
.pp-back-link:hover { color: var(--color-vintage-orange); }

.prisoner-single {
  display: grid; grid-template-columns: 380px 1fr; gap: 3rem;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 14px; overflow: hidden; backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.04);
}
.prisoner-single:hover { border-color: rgba(201,154,46,0.3); }
@media (max-width: 900px) { .prisoner-single { grid-template-columns: 1fr; } }

.prisoner-single-sidebar {
  background: rgba(0,0,0,0.3); border-right: 1px solid var(--border-color);
  padding: 3rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.prisoner-single-photo {
  width: 240px; height: 240px; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--color-premium-gold); box-shadow: 0 0 0 8px rgba(201,154,46,0.12);
  margin-bottom: 1.75rem; flex-shrink: 0; position: relative;
  background: linear-gradient(145deg, rgba(22,56,69,0.95), rgba(9,33,43,0.95));
}
.prisoner-single-no-photo {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.32); font-size: 0.92rem; font-weight: 700; letter-spacing: 0.16em;
}
.prisoner-single-name {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 2rem; margin-bottom: 0.75rem;
  color: var(--text-main); line-height: 1.25;
}
.prisoner-single-meta { width: 100%; margin-top: 2rem; text-align: left; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.prisoner-meta-row { margin-bottom: 1rem; }
.prisoner-meta-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.25rem; }
.prisoner-meta-value { font-size: 1rem; color: var(--color-warm-sand); font-weight: 500; }
.prisoner-meta-value a { color: var(--color-vintage-orange); }

.prisoner-single-content { padding: 3rem; }
.prisoner-single-section-title {
  font-family: 'Source Serif 4', Georgia, serif; font-size: 1.8rem;
  color: var(--color-vintage-orange); border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem; margin-bottom: 2rem;
}
.post-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-main); }
.post-content p { margin-bottom: 1.25rem; }
.post-content h2, .post-content h3 { color: var(--color-warm-sand); margin: 2rem 0 1rem; }
.post-content a { color: var(--color-vintage-orange); text-decoration: underline; }
.post-content img { border-radius: 8px; margin: 1.5rem 0; }

/* Share buttons */
.prisoner-share { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.prisoner-share-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; font-weight: 800; font-size: 0.85rem;
  transition: all 0.25s ease; text-decoration: none !important;
}
.share-twitter  { background: rgba(0,0,0,0.4);   color: #e7e9ea; border: 1px solid rgba(255,255,255,0.12); }
.share-facebook { background: rgba(24,119,242,0.2); color: #7bb7ff; border: 1px solid rgba(24,119,242,0.3); }
.share-telegram { background: rgba(41,182,246,0.2); color: #7dd3fc; border: 1px solid rgba(41,182,246,0.3); }
.share-btn:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(0,0,0,0.5); color: #fff !important; }
.share-twitter:hover  { background: #000; }
.share-facebook:hover { background: #1877f2; }
.share-telegram:hover { background: #29b6f6; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ARCHIVE PAGE HEADER (Category / Tag)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.archive-header { padding: 3rem 0 2rem; }
.archive-header-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-vintage-orange); margin-bottom: 0.75rem; }
.archive-header-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 3rem; margin-bottom: 1rem; }
.archive-header-desc { color: var(--text-muted); line-height: 1.65; max-width: 700px; }
.archive-header-line {
  height: 3px; width: 80px;
  background-image:
    linear-gradient(90deg, rgba(201,154,46,0.92), rgba(204,94,42,0.88)),
    var(--texture-gold);
  background-size: 100% 100%, cover;
  background-blend-mode: multiply, normal;
  border-radius: 2px; margin-top: 1.5rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  background-image:
    linear-gradient(180deg, rgba(5,20,30,0.9) 0%, rgba(4,17,26,0.96) 100%),
    var(--texture-blue);
  background-size: cover;
  background-position: center;
  border-top: 2px solid var(--border-gold);
  padding-top: 4rem; margin-top: 5rem;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,225,145,0.08);
}
.site-footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background-image:
    linear-gradient(90deg, transparent, rgba(201,154,46,0.74), transparent),
    var(--texture-gold);
  background-size: 100% 100%, cover;
  background-blend-mode: screen, normal;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { font-family: 'Inter', sans-serif; letter-spacing: 0.2em; font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-main); }
.footer-desc  { color: var(--text-muted); line-height: 1.65; font-size: 0.9rem; max-width: 85%; }
.footer-heading { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.15rem; margin-bottom: 1rem; color: var(--color-warm-sand); }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav .menu-item { list-style: none; }
.footer-nav a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.25s ease; }
.footer-nav a:hover { color: var(--color-vintage-orange); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,154,46,0.18);
  color: var(--text-muted); transition: all 0.25s ease;
  font-weight: 800;
  font-size: 0.85rem;
}
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,154,46,0.28); color: #fff !important; }
.social-twitter:hover  { background: #000; border-color: #333; }
.social-facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-telegram:hover { background: #29b6f6; border-color: #29b6f6; }
.social-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; }

.footer-mini-stats { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.footer-mini-stat { text-align: left; }
.footer-mini-stat strong { display: block; font-size: 1.5rem; font-weight: 800; font-family: 'Inter', sans-serif; }
.footer-mini-stat span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.footer-prisoners-link { display: inline-block; margin-top: 1rem; font-size: 0.85rem; font-weight: 700; color: var(--color-vintage-orange); text-transform: uppercase; letter-spacing: 0.05em; }

.copyright { background: rgba(0,0,0,0.35); text-align: center; padding: 1.5rem 0; font-size: 0.85rem; color: var(--text-muted); }
