/*
Theme Name: Relentless
Theme URI: https://relentlessaaron.net
Author: Relentless Aaron
Author URI: https://relentlessaaron.net
Description: A dark, modern magazine-style WordPress theme with red accents. Built for the Relentless brand.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: relentless
Tags: dark, magazine, modern, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:        #0a0a0a;
  --color-surface:   #111111;
  --color-surface2:  #1a1a1a;
  --color-border:    #2a2a2a;
  --color-red:       #e01c1c;
  --color-red-dark:  #b01414;
  --color-red-glow:  rgba(224, 28, 28, 0.15);
  --color-text:       #f0f0f0;
  --color-muted:      #888888;
  --color-label:     #cccccc;
  --font-heading:    'Oswald', 'Impact', sans-serif;
  --font-body:       'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width:       1280px;
  --gutter:          1.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-red);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-label);
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}


.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.4em;
  background: var(--color-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-logo span {
  color: var(--color-red);
}

.site-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  text-transform: uppercase;
  margin-top: 0.1rem;
}

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

#primary-nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.2s;
}

#primary-nav a:hover,
#primary-nav .current-menu-item > a {
  color: var(--color-red);
}

.nav-cta {
  background: var(--color-red);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--color-red-dark);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.5) 40%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 4rem;
  max-width: 780px;
}

.hero-category {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta span::before {
  content: '\2022';
  margin-right: 0.5rem;
}

.hero-meta span:first-child::before {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-red-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* ============================================================
   MAGAZINE GRID
============================================================ */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

/* Featured post - spans 8 cols */
.post-card-featured {
  grid-column: span 8;
}

/* Side stack - spans 4 cols */
.post-card-side {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Post cards */
.post-card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, transform 0.2s;
}

.post-card:hover {
  border-color: var(--color-red);
  transform: translateY(-2px);
}

.post-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-surface2);
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.04);
}

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

.post-card-cat {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  color: var(--color-text);
  text-transform: uppercase;
}

.post-card-featured .post-card-title {
  font-size: 1.5rem;
}

.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Horizontal small card */
.post-card-h {
  display: flex;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.75rem;
  transition: border-color 0.2s;
}

.post-card-h:hover {
  border-color: var(--color-red);
}

.post-card-h-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  overflow: hidden;
  background: var(--color-surface2);
}

.post-card-h-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-h-body {
  flex: 1;
  min-width: 0;
}

.post-card-h-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 3-col row */
.post-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   YOUTUBE CAROUSEL
============================================================ */
.yt-section {
  background: var(--color-surface);
  border-top: 3px solid var(--color-red);
  border-bottom: 1px solid var(--color-border);
}

.yt-carousel-wrap {
  position: relative;
}

.yt-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--color-red) var(--color-surface2);
  padding-bottom: 1rem;
}

.yt-carousel::-webkit-scrollbar {
  height: 4px;
}

.yt-carousel::-webkit-scrollbar-track {
  background: var(--color-surface2);
}

.yt-carousel::-webkit-scrollbar-thumb {
  background: var(--color-red);
  border-radius: 2px;
}

.yt-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.yt-card:hover {
  border-color: var(--color-red);
  transform: translateY(-3px);
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}

.yt-card:hover .yt-play-btn {
  background: var(--color-red-glow);
}

.yt-play-icon {
  width: 48px;
  height: 48px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.yt-card:hover .yt-play-icon {
  transform: scale(1.1);
}

.yt-play-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}

.yt-card-body {
  padding: 1rem;
}

.yt-video-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.yt-video-meta {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.yt-nav-btns {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

.yt-nav-btn {
  width: 38px;
  height: 38px;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.yt-nav-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.yt-nav-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Modal */
.yt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.yt-modal.open {
  display: flex;
}

.yt-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.yt-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

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

.yt-modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.yt-modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   SIDEBAR
============================================================ */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 80px;
}

.widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

/* ============================================================
   NEWSLETTER BAR
============================================================ */
.newsletter-bar {
  background: linear-gradient(135deg, #1a0000 0%, var(--color-surface2) 100%);
  border: 1px solid var(--color-red);
  padding: 3rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.newsletter-text p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.newsletter-input {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-right: none;
  color: var(--color-text);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: var(--color-red);
}

.newsletter-input::placeholder {
  color: var(--color-muted);
}

.newsletter-submit {
  background: var(--color-red);
  border: 1px solid var(--color-red);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-submit:hover {
  background: var(--color-red-dark);
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--color-surface);
  border-top: 3px solid var(--color-red);
  margin-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-brand .site-logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  transition: all 0.2s;
  font-family: var(--font-heading);
  font-weight: 700;
}

.social-link:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-red);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ============================================================
   SINGLE POST
============================================================ */
.post-header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 3rem;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-label);
  max-width: 720px;
}

.post-content h2,
.post-content h3 {
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content blockquote {
  border-left: 4px solid var(--color-red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.15rem;
  color: var(--color-text);
  font-style: italic;
}

.post-content code {
  background: var(--color-surface2);
  padding: 0.2em 0.5em;
  font-size: 0.88em;
  border-radius: 2px;
}

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-muted);
  transition: all 0.2s;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

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

  .post-card-featured,
  .post-card-side {
    grid-column: span 1;
  }

  .post-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-sidebar-wrap {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --gutter: 1rem; }

  #primary-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem var(--gutter);
  }

  #primary-nav.open {
    display: block;
  }

  #primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .post-grid-3 {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-input {
    width: 100%;
    border-right: 1px solid var(--color-border);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .yt-card {
    flex: 0 0 260px;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LOADING SKELETON
============================================================ */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-surface2) 25%,
    var(--color-border) 50%,
    var(--color-surface2) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 2px;
}

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

/* ============================================================
   SINGLE POST TEMPLATE
   ============================================================ */
.single-post-wrap { max-width: 100%; }

.single-hero {
  min-height: 70vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.single-hero--no-image {
  background: #111;
  min-height: 40vh;
  padding-top: 4rem;
}
.single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
}
.single-hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem 4rem;
  max-width: 900px;
}
.single-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.post-content { min-width: 0; }
.post-body {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.85;
}
.post-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
  border-left: 4px solid #e01c1c;
  padding-left: 1rem;
}
.post-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: #e01c1c;
  margin: 2rem 0 0.75rem;
}
.post-body p { margin-bottom: 1.5rem; }
.post-body a { color: #e01c1c; text-decoration: underline; }
.post-body hr { border: none; border-top: 1px solid #333; margin: 2.5rem 0; }
.post-body blockquote {
  border-left: 4px solid #e01c1c;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #111;
  color: #ccc;
  font-style: italic;
  font-size: 1.15rem;
}
.single-cta-bar {
  background: #111;
  border: 1px solid #e01c1c;
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  text-align: center;
}
.single-cta-bar--bottom { margin-top: 3rem; }
.cta-prompt {
  color: #aaa;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.btn-cta {
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  letter-spacing: 0.08em;
}
.post-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid #222;
}
.post-tag {
  background: #111; color: #aaa;
  border: 1px solid #333;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.post-tag:hover { border-color: #e01c1c; color: #e01c1c; }
.sidebar { min-width: 0; }
.sidebar-widget {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.sidebar-widget p { color: #aaa; font-size: 0.95rem; line-height: 1.6; }
.widget-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #e01c1c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #222;
}
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { margin-bottom: 1rem; }
.related-list a { display: flex; gap: 0.75rem; align-items: flex-start; text-decoration: none; color: #ddd; font-size: 0.9rem; line-height: 1.4; }
.related-list img { width: 70px; height: 50px; object-fit: cover; flex-shrink: 0; border-radius: 2px; }
.related-list a:hover { color: #e01c1c; }
.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list li a { color: #aaa; text-decoration: none; font-size: 0.9rem; display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid #1a1a1a; }
.cat-list li a:hover { color: #e01c1c; }

@media (max-width: 900px) {
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .single-hero-inner { padding: 2rem 1.5rem 3rem; }
}

/* ============================================================
   ARCHIVE / CATEGORY / SEARCH PAGES
   ============================================================ */
.archive-wrap { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.archive-header { padding: 3rem 0 2rem; border-bottom: 1px solid #222; margin-bottom: 2rem; }
.archive-label { font-size: 0.8rem; color: #e01c1c; text-transform: uppercase; letter-spacing: .1em; font-family: 'Oswald',sans-serif; }
.archive-title { font-family: 'Oswald',sans-serif; font-size: clamp(1.8rem,4vw,3rem); color: #fff; text-transform: uppercase; margin: .5rem 0 0; }
.archive-desc { color: #888; margin-top: .75rem; }
.archive-posts { min-width: 0; }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.post-card { background: #111; border: 1px solid #1e1e1e; border-radius: 4px; overflow: hidden; transition: border-color .2s; }
.post-card:hover { border-color: #333; }
.card-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.card-thumb:hover img { transform: scale(1.04); }
.card-body { padding: 1.25rem; }
.card-title { font-family: 'Oswald',sans-serif; font-size: 1.2rem; margin: .5rem 0 .5rem; }
.card-title a { color: #fff; text-decoration: none; text-transform: uppercase; }
.card-title a:hover { color: #e01c1c; }
.card-excerpt { color: #888; font-size: .9rem; line-height: 1.6; margin: .75rem 0; }
.card-read-more { color: #e01c1c; font-size: .85rem; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.pagination { margin: 3rem 0; display: flex; gap: .5rem; flex-wrap: wrap; }
.pagination .page-numbers { padding: .5rem 1rem; background: #111; border: 1px solid #222; color: #aaa; text-decoration: none; font-size: .9rem; border-radius: 3px; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: #e01c1c; border-color: #e01c1c; color: #fff; }
.no-posts { color: #888; padding: 3rem 0; }
@media (max-width: 700px) { .post-grid { grid-template-columns: 1fr; } }
