/* ============================================================
   SOP.BA WordPress Theme — Based on ridzal-web v3 "FOKUS"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary:   #0d1b72;
  --accent:    #c41e1e;
  --white:     #ffffff;
  --text:      #0f172a;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --surface:   #f8fafc;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --radius:    4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea { font-family: var(--font-body); }

.sop-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ---- TOP BAR ---- */
.sop-top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.sop-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sop-top-bar-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.sop-top-bar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sop-top-bar-social a {
  display: flex;
  align-items: center;
  color: var(--primary);
  transition: color 0.2s;
}
.sop-top-bar-social a:hover { color: var(--accent); }
.sop-top-bar-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  padding: 18px 0 16px;
}
.sop-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sop-header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--primary);
}
.sop-header-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
}
.sop-header-brand-text { display: flex; flex-direction: column; }
.sop-header-site-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.01em;
}
.sop-header-tagline {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.sop-header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--primary);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.sop-header-search-btn:hover { background: var(--surface); color: var(--accent); }
.sop-header-search-btn svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.sop-header-accent-line { height: 4px; background: var(--accent); width: 100%; }

/* Search overlay */
.sop-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 114, 0.95);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sop-search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.sop-search-inner {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
  position: relative;
}
.sop-search-close {
  position: absolute;
  top: -60px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
}
.sop-search-overlay .search-form {
  display: flex;
  border-bottom: 2px solid var(--white);
}
.sop-search-overlay .search-field {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 16px 0;
  outline: none;
}
.sop-search-overlay .search-field::placeholder { color: rgba(255, 255, 255, 0.6); }
.sop-search-overlay .search-submit {
  background: none;
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0 16px;
  text-transform: uppercase;
}

/* ---- NAVIGATION ---- */
.sop-site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.sop-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sop-nav-links { display: flex; align-items: center; list-style: none; }
.sop-nav-links li { list-style: none; }
.sop-nav-links a {
  display: block;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.sop-nav-links a:hover,
.sop-nav-links .current-menu-item > a,
.sop-nav-links .current_page_item > a,
.sop-nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.sop-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  color: var(--primary);
}
.sop-hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.sop-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sop-hamburger.open span:nth-child(2) { opacity: 0; }
.sop-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sop-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.sop-mobile-menu.open { display: flex; }
.sop-mobile-menu a {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.sop-mobile-menu a:hover,
.sop-mobile-menu a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--surface);
}

/* ---- BREAKING TICKER ---- */
.sop-breaking-ticker {
  background: var(--accent);
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sop-ticker-label {
  flex-shrink: 0;
  background: #a01818;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.sop-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.sop-ticker-track {
  display: flex;
  align-items: center;
  animation: ticker-scroll 45s linear infinite;
  white-space: nowrap;
  gap: 0;
}
.sop-ticker-track:hover { animation-play-state: paused; }
.sop-ticker-item {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  padding: 0 40px 0 0;
  flex-shrink: 0;
}
.sop-ticker-item::before {
  content: '●';
  margin-right: 12px;
  font-size: 8px;
  opacity: 0.7;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- ADS ---- */
.sop-ad-section {
  padding: 24px 0;
  background: var(--white);
}
.sop-ad-section + .sop-ad-section { border-top: 1px solid var(--border); }
.sop-ad-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sop-ad-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 auto;
}
.sop-ad-unit-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.sop-ad-unit-text { font-size: 12px; font-weight: 600; }
.sop-ad-unit-size { font-size: 10px; opacity: 0.7; }
.sop-ad-leaderboard { width: 728px; height: 90px; }
.sop-ad-mobile-banner { width: 320px; height: 50px; display: none; }
.sop-ad-large-rect { width: 336px; height: 280px; }

/* ---- HERO SLIDER ---- */
.sop-hero-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.sop-hero-slider {
  position: relative;
  overflow: hidden;
}
.sop-hero-track {
  position: relative;
  min-height: 520px;
}
.sop-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 1;
}
.sop-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.sop-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1200px;
  margin: 0 auto;
}
.sop-hero-img-col {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.sop-hero-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,114,0.2) 0%, rgba(13,27,114,0.05) 100%);
}
.sop-hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sop-hero-text-col {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-left: 1px solid var(--border);
}
.sop-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sop-hero-arrow:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.sop-hero-prev { left: 20px; }
.sop-hero-next { right: 20px; }
.sop-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.sop-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.sop-hero-dot.is-active,
.sop-hero-dot:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.sop-hero-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sop-hero-category::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.sop-hero-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.sop-hero-title a { color: inherit; }
.sop-hero-title a:hover { color: var(--accent); }
.sop-hero-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.sop-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 26px;
}
.sop-hero-meta-author { font-weight: 600; color: var(--primary); }
.sop-hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.sop-hero-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
  width: fit-content;
}
.sop-hero-read-more:hover { border-bottom-color: var(--accent); gap: 10px; color: var(--accent); }

/* ---- SECTION LABEL ---- */
.sop-section-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.sop-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.sop-section-label-line { flex: 1; height: 1px; background: var(--border); }
.sop-section-see-all {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.sop-section-see-all:hover { color: var(--accent); }

/* ---- ARTICLE SHARED ---- */
.sop-article-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.sop-article-title-lg {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}
.sop-article-title-lg a { color: inherit; transition: color 0.2s; }
.sop-article-title-lg a:hover { color: var(--accent); }
.sop-article-title-sm {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 8px;
}
.sop-article-title-sm a { color: inherit; transition: color 0.2s; }
.sop-article-title-sm a:hover { color: var(--accent); }
.sop-article-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.sop-article-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sop-article-meta-author { font-weight: 600; color: var(--primary); }

/* ---- SPORT SECTION ---- */
.sop-sport-section {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.sop-sport-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.sop-sport-featured-img {
  width: 100%;
  height: 230px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.sop-sport-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sop-sport-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sop-sport-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sop-sport-grid-3 .sop-open-article {
  padding: 0 28px 0 0;
  border-right: 1px solid var(--border);
}
.sop-sport-grid-3 .sop-open-article:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 28px;
}
.sop-sport-grid-3 .sop-open-article:nth-child(2) { padding-left: 28px; }
.sop-sport-small-img {
  width: 100%;
  height: 140px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.sop-sport-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- VIJESTI SECTION ---- */
.sop-vijesti-section {
  background: var(--surface);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.sop-list-article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.sop-list-article:last-child { border-bottom: none; }
.sop-list-article-img {
  flex-shrink: 0;
  width: 106px;
  height: 76px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.sop-list-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sop-list-article-body { flex: 1; min-width: 0; }
.sop-list-article-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 7px;
}
.sop-list-article-title a { color: inherit; transition: color 0.2s; }
.sop-list-article-title a:hover { color: var(--accent); }
.sop-list-article-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 9px;
}
.sop-list-article-meta {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sop-list-article-author { font-weight: 600; color: var(--primary); }

/* ---- CRNA HRONIKA ---- */
.sop-crna-section {
  background: var(--primary);
  padding: 56px 0;
  border-bottom: 4px solid var(--accent);
}
.sop-crna-section .sop-section-label { color: rgba(255,255,255,0.7); }
.sop-crna-section .sop-section-label-line { background: rgba(255,255,255,0.12); }
.sop-crna-section .sop-section-see-all { color: rgba(255,255,255,0.4); }
.sop-crna-section .sop-section-see-all:hover { color: #fff; }
.sop-crna-list { display: flex; flex-direction: column; }
.sop-crna-article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left 0.2s;
}
.sop-crna-article:last-child { border-bottom: none; }
.sop-crna-article:hover { padding-left: 6px; }
.sop-crna-dot {
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.sop-crna-body { flex: 1; min-width: 0; }
.sop-crna-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 5px;
}
.sop-crna-title a { color: inherit; transition: color 0.2s; }
.sop-crna-title a:hover { color: rgba(255,255,255,0.7); }
.sop-crna-meta {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sop-crna-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.25);
  font-size: 18px;
  transition: color 0.2s, transform 0.2s;
}
.sop-crna-article:hover .sop-crna-arrow { color: var(--accent); transform: translateX(4px); }

/* ---- LIFESTYLE ---- */
.sop-lifestyle-section {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.sop-lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.sop-lifestyle-img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.sop-lifestyle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- NEWSLETTER ---- */
.sop-newsletter-section {
  background: var(--white);
  padding: 72px 0;
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--border);
}
.sop-newsletter-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.sop-newsletter-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.sop-newsletter-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.sop-newsletter-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}
.sop-newsletter-form {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.sop-newsletter-form:focus-within { border-color: var(--primary); }
.sop-newsletter-input {
  flex: 1;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: none;
  outline: none;
}
.sop-newsletter-input::placeholder { color: var(--muted); }
.sop-newsletter-btn {
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.sop-newsletter-btn:hover { background: #a01818; }
.sop-newsletter-note { font-size: 11px; color: var(--muted); margin-top: 12px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--primary);
  padding: 24px 0;
}
.sop-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sop-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sop-footer-logo {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 4px;
  opacity: 0.9;
}
.sop-footer-site-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.sop-footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sop-footer-links a,
.footer-navigation a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.sop-footer-links a:hover,
.footer-navigation a:hover { color: var(--white); }
.sop-footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.sop-footer-social { display: flex; align-items: center; gap: 14px; }
.sop-footer-social a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.sop-footer-social a:hover { color: var(--white); }
.sop-footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- COOKIE BANNER ---- */
.sop-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 16px 0;
  z-index: 1200;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.sop-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sop-cookie-text {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}
.sop-cookie-text p { margin: 0; }
.sop-cookie-link {
  color: var(--accent);
  text-decoration: underline;
  margin-left: 4px;
}
.sop-cookie-button {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.sop-cookie-button:hover { background: #a01818; }

/* ---- WORDPRESS DEFAULTS ---- */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.gallery { display: flex; flex-wrap: wrap; gap: 10px; }
.gallery-item { flex: 1 1 calc(33.333% - 10px); }
.page-links { margin: 24px 0; }
.page-links a,
.page-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin-right: 4px;
  border: 1px solid var(--border);
  font-size: 13px;
}
.page-links .current { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* Single post */
.sop-single .entry-header { margin-bottom: 24px; }
.sop-single .entry-title {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sop-single .post-thumbnail { margin-bottom: 32px; }
.sop-single .post-thumbnail img { width: 100%; border-radius: var(--radius); }
.sop-single .entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.sop-single .entry-content p { margin-bottom: 1.5em; }
.sop-single .entry-content a { color: var(--accent); text-decoration: underline; }
.sop-single .entry-content h2,
.sop-single .entry-content h3,
.sop-single .entry-content h4 { margin-top: 1.5em; margin-bottom: 0.75em; }

/* Archive */
.sop-archive-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.sop-archive-title {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
}

/* Pagination */
.sop-pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sop-pagination a,
.sop-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.sop-pagination .current,
.sop-pagination a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* Widgets */
.widget { margin-bottom: 32px; }
.widget-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .sop-hero-track { min-height: auto; }
  .sop-hero-layout { grid-template-columns: 1fr; }
  .sop-hero-img-col { min-height: 260px; }
  .sop-hero-text-col { padding: 36px 32px; border-left: none; border-top: 1px solid var(--border); }
  .sop-hero-title { font-size: 28px; }
  .sop-hero-arrow { display: none; }
  .sop-hero-dots { bottom: 12px; }
  .sop-sport-featured { grid-template-columns: 1fr; gap: 20px; }
  .sop-sport-featured-img { height: 200px; }
  .sop-sport-grid-3 { grid-template-columns: 1fr; }
  .sop-sport-grid-3 .sop-open-article {
    padding: 22px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .sop-sport-grid-3 .sop-open-article:last-child { border-bottom: none; padding-left: 0; }
  .sop-sport-grid-3 .sop-open-article:nth-child(2) { padding-left: 0; }
  .sop-sport-small-img { height: 180px; }
  .sop-lifestyle-grid { gap: 36px; }
  .sop-ad-leaderboard { display: none; }
  .sop-ad-mobile-banner { display: inline-flex; }
}

/* ---- SEARCH RESULTS PAGE ---- */
.sop-search-page { padding: 56px 0 80px; }

/* ---- RELATED NEWS ---- */
.sop-related-news {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.sop-related-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}
.sop-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.sop-related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sop-related-card:hover {
  border-color: rgba(13, 27, 114, 0.25);
  box-shadow: 0 8px 24px rgba(13, 27, 114, 0.08);
}
.sop-related-img {
  display: block;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}
.sop-related-body { padding: 16px; }
.sop-related-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}
.sop-related-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.sop-related-card-title a:hover { color: var(--accent); }
.sop-related-meta {
  font-size: 12px;
  color: var(--muted);
}
.sop-search-header {
  text-align: center;
  margin-bottom: 44px;
}
.sop-search-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.sop-search-query {
  color: var(--accent);
  display: inline-block;
  word-break: break-word;
}
.sop-search-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.sop-search-article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sop-search-article:hover {
  border-color: rgba(13, 27, 114, 0.25);
  box-shadow: 0 8px 24px rgba(13, 27, 114, 0.08);
}
.sop-search-img {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.sop-search-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.sop-search-article:hover .sop-search-img img { transform: scale(1.04); }
.sop-search-body { display: flex; flex-direction: column; gap: 10px; }
.sop-search-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}
.sop-search-article-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.sop-search-article-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.sop-search-article-title a:hover { color: var(--accent); }
.sop-search-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sop-search-meta a { color: var(--muted); text-decoration: none; }
.sop-search-meta a:hover { color: var(--primary); }
.sop-search-sep { opacity: 0.6; }
.sop-search-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.sop-search-excerpt p { margin: 0; }
.sop-search-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.sop-search-read-more:hover { color: var(--accent); }
.sop-not-found {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0;
}
.sop-not-found .page-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.sop-not-found .page-content p {
  color: var(--muted);
  margin-bottom: 24px;
}
.sop-not-found .search-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sop-not-found .search-field {
  flex: 1;
  border: none;
  padding: 13px 16px;
  font-size: 14px;
}
.sop-not-found .search-submit {
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 0 20px;
  cursor: pointer;
}
.sop-not-found .search-submit:hover { background: var(--accent); }

@media (max-width: 640px) {
  .sop-container { padding: 0 16px; }
  .sop-top-bar-date { display: none; }
  .sop-header-site-name { font-size: 22px; }
  .sop-header-tagline { display: none; }
  .sop-header-logo { width: 42px; height: 42px; }
  .sop-nav-links { display: none; }
  .sop-hamburger { display: flex; }
  .sop-hero-text-col { padding: 28px 20px; }
  .sop-hero-title { font-size: 24px; }
  .sop-list-article-img { width: 84px; height: 60px; }
  .sop-list-article-excerpt { display: none; }
  .sop-lifestyle-grid { grid-template-columns: 1fr; gap: 36px; }
  .sop-lifestyle-img { height: 180px; }
  .sop-search-page { padding: 36px 0 56px; }
  .sop-search-header { margin-bottom: 28px; }
  .sop-search-article { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .sop-search-img { aspect-ratio: 16 / 9; }
  .sop-search-article-title { font-size: 18px; }
  .sop-search-excerpt { display: none; }
  .sop-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sop-related-img { height: 120px; }
  .sop-related-title { font-size: 20px; }
  .sop-footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .sop-footer-links { flex-wrap: wrap; gap: 16px; }
  .sop-cookie-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- LEGAL / PAGE CONTENT ---- */
.sop-page-content {
  padding-top: 56px;
  padding-bottom: 80px;
}

.sop-legal-page .entry-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.15;
}

.sop-legal-page .entry-content {
  max-width: 820px;
  color: var(--text);
}

.sop-legal-page .entry-content h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sop-legal-page .entry-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 12px;
}

.sop-legal-page .entry-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.sop-legal-page .entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sop-legal-page .entry-content a:hover {
  color: var(--primary);
}

.sop-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.sop-pricing-section {
  margin-bottom: 40px;
}

.sop-pricing-section h2 {
  margin-top: 0;
}

.sop-pricing-card {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.sop-pricing-featured {
  background: rgba(196, 30, 30, 0.06);
  border-left-color: var(--accent);
}

.sop-price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.sop-price-note {
  font-size: 15px;
  color: var(--muted);
}

.sop-contact-cta {
  margin-top: 48px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  text-align: center;
}

.sop-contact-cta p {
  margin-bottom: 8px;
}

.sop-contact-cta a {
  font-weight: 700;
  color: var(--accent);
}

/* Impressum */
.sop-impressum-card {
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.sop-impressum-card h2 {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 32px;
}

.sop-impressum-block {
  margin-bottom: 28px;
}

.sop-impressum-block h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.sop-impressum-block p,
.sop-impressum-block address,
.sop-impressum-block li {
  font-style: normal;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.sop-impressum-block ul {
  list-style: none;
  padding-left: 0;
}

.sop-impressum-contacts {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.sop-impressum-contacts a {
  color: var(--accent);
}

/* Contact page */
.sop-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.sop-contact-info .sop-lead {
  margin-bottom: 20px;
}

.sop-contact-block {
  margin-top: 28px;
}

.sop-contact-block h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.sop-contact-block p {
  font-size: 17px;
}

.sop-contact-block a {
  color: var(--accent);
}

.sop-contact-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sop-contact-social a {
  display: flex;
  align-items: center;
  color: var(--primary);
  transition: color 0.2s;
}

.sop-contact-social a:hover {
  color: var(--accent);
}

.sop-contact-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sop-contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.sop-contact-form .sop-form-row {
  margin-bottom: 20px;
}

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

.sop-contact-form input[type="text"],
.sop-contact-form input[type="email"],
.sop-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sop-contact-form input:focus,
.sop-contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 27, 114, 0.08);
}

.sop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.sop-button-primary {
  background: var(--accent);
  color: var(--white);
}

.sop-button-primary:hover {
  background: #a01818;
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .sop-legal-page .entry-title { font-size: 32px; }
  .sop-legal-page .entry-content h2 { font-size: 22px; }
  .sop-impressum-card { padding: 28px; }
  .sop-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sop-contact-form-wrap { padding: 24px; }
}
