/*
Theme Name: Beire News
Theme URI: https://innovus.com/beire
Author: Innovus
Author URI: https://innovus.com
Description: A premium, modern WordPress theme designed for a news website. Focuses on Navy Blue, white layout, glassy overlays, hero banners, and slick UI grids.
Version: 1.1.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: beirenews
*/

:root {
  --primary-color: #0A192F;
  /* Deep Navy Blue */
  --primary-color-light: #162C55;
  --secondary-color: #FFFFFF;
  /* Pure White */
  --accent-color: #06B6D4;
  /* Rich Cyan — pairs with both navy and white */
  --text-color: #111827;
  --text-muted: #6B7280;
  --bg-body: #F3F4F6;
  --bg-card: rgba(255, 255, 255, 0.9);
  --border-light: rgba(0, 0, 0, 0.05);

  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(10, 25, 47, 0.1);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================================
   HEADER FLOATING GLASSMORPHISM
   ========================================================================= */
.site-header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  z-index: 9999;
  background: rgba(10, 25, 47, 0.6) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 30px;
  border-radius: 50px;
  color: var(--secondary-color);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideDownFade 0.8s ease forwards;
}

@keyframes slideDownFade {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 15px;
    opacity: 1;
  }
}

.site-header:hover {
  background: rgba(10, 25, 47, 0.85) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  display: flex;
  align-items: center;
}

.custom-logo-link {
  display: inline-block;
  max-width: 150px;
  /* Adjust this value as needed */
  transition: var(--transition);
}

.custom-logo-link img {
  height: auto;
  width: 100%;
  max-height: 50px;
  /* Limits the height for navbar */
  object-fit: contain;
}

.site-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.site-title a {
  color: var(--secondary-color);
}

.main-navigation ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 30px;
  position: relative;
  transition: var(--transition);
}

.main-navigation li a:hover {
  color: #0A192F;
  background: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.glass-search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  /* very subtle */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 4px 8px;
  transition: var(--transition);
}

.glass-search-form:hover,
.glass-search-form:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.glass-search-input {
  background: transparent;
  border: none;
  color: var(--secondary-color);
  padding: 6px 12px;
  width: 140px;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.glass-search-input:focus {
  width: 220px;
}

.glass-search-submit {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0 5px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.glass-search-submit:hover {
  color: var(--accent-color);
  transform: scale(1.15) rotate(5deg);
}

.btn-subscribe {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.95rem;
}

.btn-subscribe:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* =========================================================================
   HERO SLIDER
   ========================================================================= */
.hero-slider-section {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  /* Ticker bar sits directly below, no gap */
}

/* =========================================================================
   NEWS TICKER / MARQUEE BAR
   ========================================================================= */
.news-ticker-bar {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 52px;
  overflow: hidden;
  position: relative;
  z-index: 100;
  margin-bottom: 60px;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 22px;
  height: 100%;
  flex-shrink: 0;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 30px;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 0 rgba(10, 25, 47, 0.6);
  animation: tickerPulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes tickerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 25, 47, 0.6);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(10, 25, 47, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 25, 47, 0);
  }
}

.ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.ticker-track:hover,
.ticker-track.paused {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none;
}

.ticker-item:hover {
  color: var(--accent-color);
}

.ticker-bullet {
  color: var(--accent-color);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.ticker-pause-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  cursor: pointer;
  padding: 0 16px;
  height: 100%;
  flex-shrink: 0;
  transition: color 0.2s;
}

.ticker-pause-btn:hover {
  color: var(--accent-color);
}


.heroSwiper {
  width: 100%;
  height: 85vh;
  min-height: 600px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-color);
  display: flex !important;
  align-items: flex-end;
  /* Align content to bottom */
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 1) 0%, rgba(10, 25, 47, 0.4) 50%, rgba(10, 25, 47, 0.1) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Swiper Overrides */
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color) !important;
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: var(--secondary-color) !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color) !important;
  opacity: 1 !important;
}

.hero-content {
  max-width: 800px;
  color: var(--secondary-color);
  animation: slideUpFade 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-category a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-title a {
  color: var(--secondary-color);
}

.hero-excerpt {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
}

.hero-meta {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 30px;
}

.hero-date {
  margin-right: 20px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.btn-read-more:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}

.btn-read-more .arrow {
  margin-left: 10px;
  transition: transform 0.3s;
}

.btn-read-more:hover .arrow {
  transform: translateX(5px);
}

/* =========================================================================
   GRID & LAYOUT WRAPPER
   ========================================================================= */
.main-content-area {
  margin-bottom: 100px;
}

.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

@media (max-width: 1024px) {
  .layout-wrapper {
    grid-template-columns: 1fr;
  }
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-light);
}

.section-title span {
  color: var(--text-muted);
  font-weight: 300;
}

/* =========================================================================
   MODERN CARDS
   ========================================================================= */
.news-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.modern-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.modern-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.modern-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.modern-card:hover .modern-card-thumb img {
  transform: scale(1.05);
}

.floating-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(10, 25, 47, 0.85);
  /* Navy badge */
  backdrop-filter: blur(4px);
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}

.thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary-color-light);
}

.modern-card-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.modern-card-title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

.modern-card-title a {
  color: var(--primary-color);
}

.modern-card-title a:hover {
  color: var(--accent-color);
}

.modern-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.modern-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
}

.doc-date {
  font-size: 0.85rem;
  color: #9CA3AF;
  font-weight: 500;
}

.mini-tags {
  display: flex;
  gap: 5px;
}

.mini-tags a {
  font-size: 0.75rem;
  background: rgba(10, 25, 47, 0.05);
  /* very light navy */
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.mini-tags a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* =========================================================================
   GLASSY SIDEBAR WIDGETS
   ========================================================================= */
.modern-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.glass-widget {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--glass-shadow);
}

/* Base list reset for native widgets */
.wp-native-widgets ul,
.glass-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Add spacing between list items */
.wp-native-widgets ul li,
.glass-widget ul li {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

/* Remove bottom margin/border for the last item */
.wp-native-widgets ul li:last-child,
.glass-widget ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* Link styling */
.wp-native-widgets ul li a,
.glass-widget ul li a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.5;
  transition: var(--transition);
}

/* Dynamic Hover Effects */
.wp-native-widgets ul li a:hover,
.glass-widget ul li a:hover {
  color: var(--accent-color);
  transform: translateX(8px);
}

.widget-title {
  margin: 0 0 25px;
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 900;
  border-left: 4px solid var(--accent-color);
  padding-left: 15px;
}

.tag-cloud-glass {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud-glass a {
  display: inline-block;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 25, 47, 0.1);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tag-cloud-glass a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
}

.promo-widget {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  color: var(--secondary-color);
  border: none;
}

.promo-widget h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 800;
}

.glass-input {
  width: 100%;
  padding: 12px 15px;
  margin: 15px 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-family: inherit;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.glass-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.glass-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.glass-btn:hover {
  background: #FFF;
  transform: translateY(-2px);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, #060E1A 100%);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 30px;
  margin-top: 80px;
  position: relative;
  font-size: 0.95rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   ALL NEWS ARCHIVE PAGE
   ========================================================================= */
.all-news-hero {
  position: relative;
  background: var(--primary-color);
  padding: 160px 20px 80px;
  text-align: center;
  margin-top: -100px;
  overflow: hidden;
}

.all-news-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.1), transparent 50%);
}

.all-news-title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 10px;
}

.all-news-title span {
  color: var(--accent-color);
}

.all-news-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin: 0 0 30px;
}

.all-news-search-container {
  max-width: 600px;
  margin: 0 auto;
}

.all-news-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  transition: var(--transition);
}

.all-news-search-form:focus-within {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.search-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.all-news-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 15px;
  font-size: 1.1rem;
  font-family: inherit;
  outline: none;
}

.all-news-search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.all-news-search-btn {
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.all-news-search-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.clear-search-btn {
  position: absolute;
  right: -40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

.clear-search-btn:hover {
  color: #ff4757;
}


/* ---- Filter Bar ---- */
.filter-bar-wrapper {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 70px;
  z-index: 900;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.filter-bar {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 30px;
  background: var(--bg-body);
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
}

.filter-pill span {
  opacity: 0.5;
  margin-left: 5px;
  font-size: 0.8rem;
}

.filter-pill:hover {
  border-color: var(--primary-color);
}

.filter-pill.active {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}


/* ---- Numeric Pagination ---- */
.custom-numeric-pagination {
  margin-top: 60px;
  text-align: center;
}

.custom-numeric-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background: var(--glass-bg);
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.custom-numeric-pagination .page-numbers.current {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.custom-numeric-pagination a.page-numbers:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.custom-numeric-pagination .prev,
.custom-numeric-pagination .next {
  width: auto;
  padding: 0 20px;
  border-radius: 30px;
}


/* =========================================================================
   HOMEPAGE SPORTS SECTION
   ========================================================================= */
.sports-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-light);
}

.sports-header .section-title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sports-view-all {
  font-size: 0.9rem;
  padding: 10px 20px;
}

.sports-layout {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  grid-template-areas: "featured side";
  gap: 30px;
}

@media (max-width: 900px) {
  .sports-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "featured" "side";
  }
}

.sports-featured {
  position: relative;
  display: block;
}

.sports-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 47, 0.95) 100%);
}

.sports-featured-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.sports-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sports-side-card {
  flex-direction: row;
  height: 150px;
}

@media (max-width: 600px) {
  .sports-side-card {
    flex-direction: column;
    height: auto;
  }

  .sports-side-card .modern-card-thumb {
    width: 100% !important;
    height: 200px !important;
  }
}

.footer-brand {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 15px;
  letter-spacing: -0.5px;
}

.footer-desc {
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.footer-latest-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-post-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.footer-post-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-post-title {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  transition: var(--transition);
}

.footer-post-link:hover .footer-post-title {
  color: var(--accent-color);
}

.footer-post-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================================
   ABOUT PAGE — FULL ENHANCED TEMPLATE
   ========================================================================= */

/* ---- Hero ---- */
.about-hero-section {
  position: relative;
  background: var(--primary-color);
  overflow: hidden;
  padding: 200px 20px 130px;
  margin-top: -100px;
  text-align: center;
  color: var(--secondary-color);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(22, 44, 85, 0.6) 0%, transparent 70%);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0) 0%, rgba(10, 25, 47, 0.7) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin: 0;
  color: var(--secondary-color);
  letter-spacing: -1px;
  line-height: 1.1;
}

.about-title span {
  color: var(--accent-color);
}

.about-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

.about-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.25);
}

.about-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.35);
  background: #fff;
}

.about-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.about-btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.about-hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  letter-spacing: 1px;
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ---- Stats Bar ---- */
.about-stats-bar {
  background: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 40px 20px;
}

.about-stat-item {
  text-align: center;
  padding: 10px 40px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.about-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .about-stat-divider {
    display: none;
  }

  .about-stat-item {
    min-width: 120px;
    padding: 10px 20px;
  }
}

/* ---- Page Container ---- */
.about-page-container {
  padding-top: 80px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ---- WordPress Content Card ---- */
.about-wp-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-color);
  padding: 50px;
}

.about-wp-content p {
  margin-bottom: 1.2em;
}

.about-wp-content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-top: 40px;
}

/* ---- Section Shared ---- */
.about-section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary-color);
  margin: 0 0 50px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.about-section-heading span {
  color: var(--accent-color);
}

/* ---- Mission ---- */
.about-mission-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-mission-wrap {
    grid-template-columns: 1fr;
  }
}

.about-mission-text .about-section-heading {
  margin-bottom: 25px;
}

.about-mission-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 20px;
}

.about-mission-visual {
  position: relative;
}

.mission-quote-card {
  background: var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(10, 25, 47, 0.2);
}

.mission-quote-icon {
  font-size: 5rem;
  color: var(--accent-color);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
  font-family: Georgia, serif;
}

.mission-quote-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0 20px;
}

.mission-quote-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.mission-accent-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -20px;
  bottom: -20px;
  background-image: radial-gradient(circle, var(--accent-color) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.2;
  z-index: 0;
}

/* ---- Values Grid ---- */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 25, 47, 0.07);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(10, 25, 47, 0.07);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.13);
  border-color: var(--accent-color);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-color);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ---- Timeline ---- */
.about-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  padding-right: calc(50% + 30px);
  position: relative;
}

.timeline-item--right {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: calc(50% + 30px);
}

.timeline-year {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary-color);
  background: var(--accent-color);
  padding: 5px 14px;
  border-radius: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.8;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-color-light);
  border: 3px solid var(--accent-color);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-dot--active {
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(0, 229, 255, 0.2);
}

.timeline-content {
  padding: 25px 30px;
  flex: 1;
}

.timeline-content--active {
  border: 1px solid var(--accent-color);
}

.timeline-content h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-color);
}

.timeline-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .about-timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item--right {
    padding: 0 0 0 55px;
    flex-direction: column;
  }

  .timeline-year {
    align-self: flex-start;
  }

  .timeline-dot {
    left: 20px;
  }
}

/* ---- Team ---- */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 40px 30px;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.13);
}

.team-avatar {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
}

.team-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 6px;
}

.team-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team-socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: rgba(10, 25, 47, 0.04);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 800;
  transition: var(--transition);
  text-decoration: none;
}

.team-socials a:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* ---- Awards ---- */
.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.award-card {
  text-align: center;
  padding: 35px 25px;
  transition: var(--transition);
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(10, 25, 47, 0.12);
  border-color: var(--accent-color);
}

.award-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.award-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 8px;
  line-height: 1.3;
}

.award-source {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---- Newsletter CTA ---- */
.about-cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  color: var(--secondary-color);
}

.about-cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.about-cta-content {
  position: relative;
  z-index: 1;
}

.about-cta-card .about-section-eyebrow {
  color: var(--accent-color);
  display: block;
  margin-bottom: 12px;
}

.about-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--secondary-color);
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.about-cta-content>p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.about-cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto 16px;
}

.about-cta-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.about-cta-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.about-cta-input:focus {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.about-cta-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

@media (max-width: 700px) {
  .about-cta-card {
    padding: 50px 25px;
  }
}

/* =========================================================================
   SINGLE POST LAYOUT & STYLING
   ========================================================================= */
.single-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-color);
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: -80px;
}

.single-overlay {
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.95));
}

.single-title {
  color: var(--secondary-color);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.single-cat a {
  font-size: 1rem;
  padding: 8px 18px;
}

.single-meta {
  color: #CBD5E0;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.single-layout {
  position: relative;
  z-index: 10;
}

.single-article-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-content {
  padding: 60px 50px;
  font-size: 1.25rem;
  line-height: 2;
  color: var(--text-color);
}

.post-content h2,
.post-content h3 {
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.post-content li {
  margin-bottom: 15px;
  padding-left: 10px;
}

.comments-wrapper {
  padding: 40px 50px;
}

/* =========================================================================
   WORDPRESS NATIVE WIDGET STYLING
   ========================================================================= */
.wp-native-widgets .widget {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.wp-native-widgets .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widgettitle {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  display: inline-block;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 5px;
}

/* Sidebar Search Widget */
.widget_search form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget_search input[type="text"],
.widget_search input[type="search"] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.widget_search input[type="text"]:focus,
.widget_search input[type="search"]:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.widget_search input[type="submit"] {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.widget_search input[type="submit"]:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

/* Sidebar Recent Posts & Comments Lists */
.widget_recent_entries ul,
.widget_recent_comments ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_recent_entries li,
.widget_recent_comments li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-light);
  transition: var(--transition);
}

.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget_recent_entries a,
.widget_recent_comments a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  display: block;
}

.widget_recent_entries a:hover,
.widget_recent_comments a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

/* =========================================================================
   COMMENTS FORM STYLING
   ========================================================================= */
.comment-respond {
  margin-top: 40px;
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comment-reply-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.comment-form p {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.comment-form label {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #FFF;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.form-submit input[type="submit"] {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(10, 25, 47, 0.2);
}

.form-submit input[type="submit"]:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}

.comment-notes,
.logged-in-as {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* =========================================================================
   SOCIAL SHARE BUTTONS
   ========================================================================= */
.social-share-container {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.share-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.post-social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFF !important;
  transition: var(--transition);
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.share-btn.facebook {
  background: #1877F2;
}

.share-btn.twitter {
  background: #000000;
}

.share-btn.linkedin {
  background: #0A66C2;
}

.share-btn.whatsapp {
  background: #25D366;
}