/*
Theme Name: 101Foot
Theme URI: https://101foot.com
Author: 101Foot Team
Author URI: https://101foot.com
Description: Professional football news and analysis theme for 101foot.com - Fast, bold, global.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 101foot
Tags: sports, news, football, soccer, magazine, dark, responsive
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --bg-primary: #080c10;
  --bg-secondary: #0d1117;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --accent: #16a34a;
  --accent-bright: #22c55e;
  --accent-glow: rgba(34, 197, 94, 0.15);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --border: #1e293b;
  --border-bright: #22c55e;
  --red: #ef4444;
  --yellow: #f59e0b;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-green: 0 0 20px rgba(34, 197, 94, 0.2);
  --transition: all 0.2s ease;
  --max-width: 1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent-bright); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  padding: 30px 0;
}

@media (max-width: 1024px) {
  .site-content { grid-template-columns: 1fr; }
}

/* =============================================
   BREAKING NEWS TICKER
   ============================================= */
.breaking-ticker {
  background: var(--accent);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #15803d;
}

.breaking-ticker::before {
  content: '⚡ BREAKING';
  background: #000;
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  padding: 0 18px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 10;
}

.ticker-wrap {
  padding-left: 130px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.05em;
}

.ticker-content span {
  margin-right: 60px;
}

.ticker-content span::before {
  content: '●';
  margin-right: 10px;
  opacity: 0.5;
}

@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}

.logo-text span {
  color: var(--accent-bright);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
}

/* =============================================
   NAVIGATION
   ============================================= */
.main-nav ul {
  display: flex;
  gap: 5px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: #fff;
  background: var(--accent-glow);
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  gap: 8px;
  transition: var(--transition);
}

.header-search:focus-within {
  border-color: var(--accent-bright);
  box-shadow: var(--shadow-green);
}

.header-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  width: 150px;
}

.header-search input::placeholder { color: var(--text-muted); }
.header-search button { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0; font-size: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-search { display: none; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 99;
  }

  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
}

/* =============================================
   CATEGORY NAV BAR
   ============================================= */
.cat-nav {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav ul {
  display: flex;
  gap: 0;
  min-width: max-content;
}

.cat-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 20px;
  display: block;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.cat-nav a:hover { color: var(--text-primary); border-bottom-color: var(--accent-bright); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  padding: 30px 0 0;
  margin-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--bg-card);
  cursor: pointer;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main:hover img { transform: scale(1.03); }

.hero-main-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  padding: 30px;
}

.hero-secondary {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  background: var(--bg-card);
  cursor: pointer;
}

.hero-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-secondary:hover img { transform: scale(1.04); }

.hero-secondary-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 20px;
}

.hero-cat-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 3px 10px;
  margin-bottom: 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
}

.hero-secondary-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.hero-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { grid-row: auto; min-height: 280px; }
  .hero-main-title { font-size: 26px; }
  .hero-secondary { min-height: 180px; }
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--accent-bright);
  border-radius: 2px;
  display: inline-block;
}

.section-link {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 600;
}

/* =============================================
   POST CARDS
   ============================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow), var(--shadow-green);
}

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

.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.05); }

.post-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.post-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  transition: var(--transition);
}

.post-card:hover .post-card-title { color: var(--accent-bright); }

.post-card-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.post-card-read-time {
  background: var(--accent-glow);
  color: var(--accent-bright);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
}

/* =============================================
   LIST POSTS (sidebar / compact)
   ============================================= */
.post-list-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.post-list-item:last-child { border-bottom: none; }

.post-list-item:hover .post-list-title { color: var(--accent-bright); }

.post-list-thumb {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

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

.post-list-item:hover .post-list-thumb img { transform: scale(1.05); }

.post-list-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  transition: var(--transition);
  margin-bottom: 6px;
}

.post-list-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* =============================================
   FEATURED STRIP (horizontal scroll)
   ============================================= */
.featured-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-card);
}

.strip-card {
  flex: 0 0 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.strip-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-green);
}

.strip-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-secondary);
}

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

.strip-card:hover .strip-card-thumb img { transform: scale(1.06); }

.strip-card-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  line-height: 1.3;
  color: var(--text-primary);
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { position: relative; }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* =============================================
   SINGLE POST
   ============================================= */
.post-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  margin-bottom: 0;
  background: var(--bg-card);
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  padding: 40px;
}

.single-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 1024px) { .single-post-wrapper { grid-template-columns: 1fr; } }

.post-title-single {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.post-meta-single {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.post-meta-single .cat-badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}

.post-meta-single .meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-content {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--accent-bright);
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.post-content p { margin-bottom: 22px; }

.post-content blockquote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-bright);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.5;
}

.post-content img {
  border-radius: var(--radius-lg);
  margin: 28px 0;
  width: 100%;
}

.post-content a { color: var(--accent-bright); font-weight: 600; }
.post-content a:hover { color: #fff; }

.post-content ul, .post-content ol {
  margin: 20px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }

/* =============================================
   SHARE BAR
   ============================================= */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 30px;
  flex-wrap: wrap;
}

.share-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 5px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  transition: var(--transition);
}

.share-btn.twitter { background: #1da1f2; color: #fff; }
.share-btn.facebook { background: #1877f2; color: #fff; }
.share-btn.whatsapp { background: #25d366; color: #fff; }
.share-btn.copy { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); }
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* =============================================
   TAGS
   ============================================= */
.tags-section { margin-top: 24px; }

.tag-item {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin: 4px 4px 4px 0;
  transition: var(--transition);
}

.tag-item:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: var(--accent-glow);
}

/* =============================================
   STATS / 101 FACTS WIDGET
   ============================================= */
.facts-widget {
  background: linear-gradient(135deg, #0d1f0d, #111827);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.facts-widget::before {
  content: '101';
  position: absolute;
  right: -10px;
  top: -20px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.facts-widget-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--accent-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(34,197,94,0.1);
}

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

.fact-number {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent-bright);
  line-height: 1;
  min-width: 40px;
}

.fact-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 30px 0;
}

.page-num {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent);
  margin-top: 60px;
}

.footer-top {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo-text { font-size: 36px; margin-bottom: 12px; display: block; }

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: var(--text-muted);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: var(--accent-glow);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent-bright); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent-bright); }

/* =============================================
   UTILITY
   ============================================= */
.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;
}

.no-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1f0d, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
}
