/* ============================================
   МирМол 2.0 — Main Stylesheet
   UX/UI Standards 2024-2026
   3-Column Layout Matching Original
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #0066FF;
  --primary-rgb: 0, 102, 255;
  --primary-light: #E8F0FE;
  --primary-dark: #0052CC;
  --accent: #FF6B35;
  --accent-rgb: 255, 107, 53;

  --bg: #F8F9FA;
  --bg-alt: #FFFFFF;
  --surface: #FFFFFF;
  --surface-hover: #F0F2F5;

  --text: #1A1A2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;

  --border: #E5E7EB;
  --border-light: #F3F4F6;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Manrope', 'Inter', sans-serif;

  --header-height: 72px;
  --container-max: 1400px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --badge-society: #0066FF;
  --badge-economy: #10B981;
  --badge-sport: #F59E0B;
  --badge-incident: #EF4444;
  --badge-culture: #8B5CF6;
}

/* ---------- Dark Mode ---------- */
[data-theme="dark"] {
  --bg: #0B0F19;
  --bg-alt: #111827;
  --surface: #1F2937;
  --surface-hover: #374151;

  --text: #F0F0F5;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;

  --border: #2D3748;
  --border-light: #1F2937;

  --primary-light: rgba(0, 102, 255, 0.15);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.5);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

.container-xxl {
  max-width: var(--container-max);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  transition: color var(--transition);
}

[data-theme="dark"] .dropdown-menu {
  background: var(--surface);
  border-color: var(--border);
}

[data-theme="dark"] .offcanvas {
  background: var(--surface);
  color: var(--text);
}

[data-theme="dark"] .btn-close {
  filter: invert(1);
}

[data-theme="dark"] .navbar-toggler-icon {
  filter: invert(1);
}

/* ---------- Reading Progress Bar ---------- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

[data-theme="dark"] .site-header {
  background: rgba(11, 15, 25, 0.85);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .navbar {
  padding: 0;
  min-height: var(--header-height);
}

.header-logo {
  height: 40px;
  width: auto;
  transition: transform var(--transition);
}

.header-logo:hover {
  transform: scale(1.03);
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.mega-menu {
  min-width: 360px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  margin-top: 8px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.mega-menu .dropdown-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.mega-menu .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(4px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-icon:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.header-social {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.header-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.header-social a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 20px 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.search-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: clamp(18px, 3vw, 24px);
  font-family: var(--font-heading);
  font-weight: 500;
  background: transparent;
  color: var(--text);
  padding: 8px 0;
}

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

.navbar-toggler {
  border: none;
  padding: 8px;
  font-size: 20px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas {
  background: var(--surface);
  border-left: 1px solid var(--border) !important;
}

.offcanvas-logo {
  height: 32px;
}

.mobile-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav li a.active {
  color: var(--primary);
}

.sub-nav {
  list-style: none;
  padding: 0 0 0 16px;
}

.sub-nav li a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
}

.mobile-social {
  display: flex;
  gap: 12px;
}

.mobile-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 20px;
}

/* ---------- FEATURED SLIDER (style-28) ---------- */
.featured-slider {
  margin-top: var(--header-height);
  padding: 16px 0;
  background: var(--bg);
}

.slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 480px;
}

.slider-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.slider-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.slide-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 100%;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
}

.slide-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.badge-society { background: var(--badge-society); }
.badge-economy { background: var(--badge-economy); }
.badge-sport { background: var(--badge-sport); }
.badge-incident { background: var(--badge-incident); }
.badge-culture { background: var(--badge-culture); }

.slide-card-big .slide-title {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-card-big .slide-content time {
  font-size: 13px;
  opacity: 0.8;
}

.slide-card-small .slide-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-card-small .slide-content {
  padding: 12px;
}

.slide-card-small .slide-badge {
  font-size: 10px;
  padding: 3px 8px;
  margin-bottom: 6px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all var(--transition);
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.3);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.slider-main:hover .carousel-control-prev,
.slider-main:hover .carousel-control-next {
  opacity: 1;
}

/* ---------- TICKER ---------- */
.ticker-section {
  padding: 0;
  background: var(--primary);
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  height: 48px;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary-dark);
  height: 100%;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
}

.ticker-item {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  flex-shrink: 0;
}

.ticker-item:hover {
  opacity: 1;
  text-decoration: underline;
  color: #fff;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ---------- MAIN 3-COLUMN CONTENT ---------- */
.main-content {
  padding: clamp(24px, 4vw, 48px) 0;
  background: var(--bg);
}

/* ---------- BLOCK TITLE (shared) ---------- */
.block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}

.block-title-accent {
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: 4px;
  flex-shrink: 0;
}

.block-title h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  flex: 1;
}

.block-title-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
  transition: all var(--transition);
  flex-shrink: 0;
}

.block-title-link:hover {
  gap: 8px;
  color: var(--primary-dark);
}

/* ---------- LEFT SIDEBAR ---------- */
.sidebar-left {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

/* Newsfeed List */
.newsfeed-block {
  margin-bottom: 32px;
}

.newsfeed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.newsfeed-list li {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.newsfeed-list li:last-child {
  border-bottom: none;
}

.newsfeed-list li:hover {
  background: var(--primary-light);
  padding-left: 20px;
}

.newsfeed-list li a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.newsfeed-list li:hover a {
  color: var(--primary);
}

.newsfeed-list li time {
  font-size: 11px;
  color: var(--text-muted);
}

/* Sport Sidebar Block */
.sport-sidebar-block {
  margin-bottom: 32px;
}

.sport-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.sport-mini-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.sport-mini-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sport-mini-card a {
  display: block;
}

.sport-mini-img {
  height: 100px;
  overflow: hidden;
}

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

.sport-mini-card:hover .sport-mini-img img {
  transform: scale(1.06);
}

.sport-mini-card h4 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  padding: 8px 10px 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.sport-mini-card:hover h4 {
  color: var(--primary);
}

.sport-mini-card time {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  padding: 0 10px 8px;
}

.sport-text-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sport-text-list li {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.sport-text-list li:last-child {
  border-bottom: none;
}

.sport-text-list li:hover {
  background: var(--primary-light);
}

.sport-text-list li a {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.sport-text-list li:hover a {
  color: var(--primary);
}

.sport-text-list li time {
  font-size: 10px;
  color: var(--text-muted);
}

/* ---------- CENTER COLUMN ---------- */
.center-block {
  margin-bottom: 40px;
}

/* Interview Grid - 2 columns */
.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.interview-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.interview-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.interview-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.interview-card .card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.interview-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.interview-card:hover .card-image img {
  transform: scale(1.05);
}

.interview-card .card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.interview-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
  line-height: 1.35;
}

.interview-card:hover h4 {
  color: var(--primary);
}

.interview-author {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* Society Grid - 2 columns overlay style */
.society-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.society-overlay-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.society-overlay-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.society-overlay-card a {
  display: block;
  position: relative;
  height: 200px;
}

.society-overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.society-overlay-card:hover img {
  transform: scale(1.05);
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 2;
}

.overlay-content .slide-badge {
  margin-bottom: 6px;
}

.overlay-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

/* Extra/Actual Grid */
.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.extra-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.extra-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.extra-card a {
  display: block;
}

.extra-card .card-image {
  position: relative;
  height: 130px;
  overflow: hidden;
}

.extra-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.extra-card:hover .card-image img {
  transform: scale(1.06);
}

.extra-card .card-body {
  padding: 12px;
}

.extra-card .card-badge {
  position: static;
  display: inline-block;
  margin-bottom: 6px;
}

.extra-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
  line-height: 1.35;
}

.extra-card:hover h4 {
  color: var(--primary);
}

.extra-card time {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- RIGHT SIDEBAR ---------- */
.sidebar-right {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

/* Sidebar Banner */
.sidebar-banner {
  margin-bottom: 24px;
}

.banner-telegram,
.banner-vk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 14px;
  transition: all var(--transition);
}

.banner-telegram {
  background: linear-gradient(135deg, #0088cc, #0066aa);
}

.banner-vk {
  background: linear-gradient(135deg, #4C75A3, #3B5998);
}

.banner-telegram:hover,
.banner-vk:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.banner-telegram i,
.banner-vk i {
  font-size: 28px;
  flex-shrink: 0;
}

.banner-telegram strong,
.banner-vk strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.banner-telegram span,
.banner-vk span {
  font-size: 12px;
  opacity: 0.85;
}

/* Popular Block */
.popular-block {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.popular-block .block-title {
  border-bottom-color: var(--primary);
}

.popular-list {
  display: flex;
  flex-direction: column;
}

.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.popular-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-item:first-child {
  padding-top: 0;
}

.popular-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
  text-align: center;
  transition: all var(--transition);
}

.popular-item:hover .popular-number {
  opacity: 0.7;
  transform: scale(1.1);
}

.popular-content {
  flex: 1;
  min-width: 0;
}

.popular-content h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.popular-item:hover .popular-content h4 {
  color: var(--primary);
}

.popular-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popular-thumb {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
}

.popular-content time {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, #111827 0%, #0B0F19 100%);
  color: #D1D5DB;
  padding: clamp(40px, 6vw, 80px) 0 0;
}

.footer-logo {
  height: 36px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #9CA3AF;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  color: #9CA3AF;
}

.footer-contact i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #D1D5DB;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}

.social-btn i {
  font-size: 18px;
}

.footer-editor {
  font-size: 13px;
  color: #6B7280;
}

.footer-bottom {
  margin-top: clamp(32px, 5vw, 60px);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 4px;
}

/* ---------- BACK TO TOP ---------- */
.btn-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.btn-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
  .slider-grid {
    height: 400px;
  }

  .sidebar-left,
  .sidebar-right {
    position: static;
  }

  .extra-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .slider-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .slider-main {
    height: 350px;
  }

  .slider-side {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 160px;
  }

  .interview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .society-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 64px;
  }

  .slider-grid {
    height: auto;
  }

  .slider-main {
    height: 280px;
  }

  .slider-side {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .slide-card-small {
    height: 140px;
  }

  .interview-grid {
    grid-template-columns: 1fr;
  }

  .society-grid {
    grid-template-columns: 1fr;
  }

  .extra-grid {
    grid-template-columns: 1fr;
  }

  .sport-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ticker-label {
    padding: 0 12px;
    font-size: 11px;
  }

  .block-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .slider-main {
    height: 240px;
  }

  .slide-card-small {
    height: 120px;
  }

  .slide-card-big .slide-title {
    font-size: 18px;
  }

  .slide-card-small .slide-title {
    font-size: 11px;
  }

  .slide-card-small .slide-badge {
    display: none;
  }

  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .social-btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--primary);
  color: #fff;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background: var(--bg);
}

/* ---------- FOCUS VISIBLE ---------- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================
   INNER PAGES — Shared Styles
   ============================================ */

/* ---------- Breadcrumbs ---------- */
.page-breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.page-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.page-breadcrumb a:hover {
  color: var(--primary);
}
.page-breadcrumb .separator {
  margin: 0 8px;
  color: var(--border);
}
.page-breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

/* ---------- Page Title ---------- */
.page-title-section {
  padding: 0 0 32px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 32px;
}
.page-title-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

/* ---------- Article List Card ---------- */
.article-list-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  transition: transform var(--transition);
}
.article-list-card:hover {
  transform: translateX(4px);
}
.article-list-card .card-thumb {
  flex-shrink: 0;
  width: 260px;
  height: 174px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.article-list-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.article-list-card:hover .card-thumb img {
  transform: scale(1.05);
}
.article-list-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-list-card .card-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.article-list-card .card-categories a {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--primary-light);
  transition: all var(--transition);
}
[data-theme="dark"] .article-list-card .card-categories a {
  background: rgba(var(--primary-rgb), 0.15);
}
.article-list-card .card-categories a:hover {
  background: var(--primary);
  color: #fff;
}
.article-list-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.article-list-card .card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.article-list-card .card-title a:hover {
  color: var(--primary);
}
.article-list-card .card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.article-list-card .card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-list-card .card-meta i {
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .article-list-card {
    flex-direction: column;
    gap: 12px;
  }
  .article-list-card .card-thumb {
    width: 100%;
    height: 200px;
  }
}

/* ---------- Sidebar (Inner Pages) ---------- */
.inner-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.sidebar-widget {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}
.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: popular;
}
.sidebar-popular-list li {
  counter-increment: popular;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sidebar-popular-list li:last-child {
  border-bottom: none;
}
.sidebar-popular-list li::before {
  content: counter(popular);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-popular-list li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  line-height: 1.4;
  transition: color var(--transition);
}
.sidebar-popular-list li a:hover {
  color: var(--primary);
}
.sidebar-popular-list .pop-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Pagination ---------- */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 40px 0;
}
.pagination-wrap .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}
.pagination-wrap .page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.pagination-wrap .page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pagination-wrap .page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ---------- Interview Grid Card ---------- */
.interview-grid-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.interview-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.interview-grid-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.interview-grid-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.interview-grid-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.interview-grid-card .card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.interview-grid-card .card-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.interview-grid-card .card-content h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.interview-grid-card .card-content h3 a:hover {
  color: var(--primary);
}
.interview-grid-card .card-author {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.interview-grid-card .card-author span {
  color: var(--primary);
  font-weight: 600;
}
.interview-grid-card .card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- Video Grid Card ---------- */
.video-grid-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
}
.video-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.video-grid-card .video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.video-grid-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: all var(--transition);
}
.video-grid-card:hover .video-thumb img {
  opacity: 1;
  transform: scale(1.05);
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.video-grid-card:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--primary);
}
.video-grid-card .video-content {
  padding: 20px;
}
.video-grid-card .video-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.video-grid-card .video-content h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.video-grid-card .video-content h3 a:hover {
  color: var(--primary);
}
.video-grid-card .video-content .video-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.video-grid-card .video-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Blog Post Card ---------- */
.blog-post-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.blog-post-card:hover {
  box-shadow: var(--shadow-md);
}
.blog-post-card .blog-img-wrap {
  aspect-ratio: 2/1;
  overflow: hidden;
}
.blog-post-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-post-card:hover .blog-img-wrap img {
  transform: scale(1.03);
}
.blog-post-card .blog-content {
  padding: 24px;
}
.blog-post-card .blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-post-card .blog-content h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.blog-post-card .blog-content h3 a:hover {
  color: var(--primary);
}
.blog-post-card .blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.blog-post-card .blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
}

/* ---------- About Page ---------- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.about-content .about-contacts {
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.about-content .about-contacts p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.about-content .about-contacts i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
}

/* ---------- Article Detail Page ---------- */
.article-header {
  padding: 32px 0;
}
.article-header .article-cats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.article-header .article-cats a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--primary);
}
.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}
.article-header .article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.article-header .article-meta-bar i {
  margin-right: 4px;
}
.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.article-body p {
  margin-bottom: 20px;
}
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
}
[data-theme="dark"] .article-body blockquote {
  background: rgba(var(--primary-rgb), 0.1);
}
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 32px 0;
}
.article-share span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.article-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-hover);
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}
.article-share a:hover {
  background: var(--primary);
  color: #fff;
}
.related-articles {
  padding: 40px 0;
}
.related-articles h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.related-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.related-card .related-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.related-card .related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card .related-body {
  padding: 16px;
}
.related-card .related-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}
.related-card .related-body h4 a {
  color: var(--text);
  text-decoration: none;
}
.related-card .related-body h4 a:hover {
  color: var(--primary);
}
.related-card .related-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Inner Page Section Spacing ---------- */
.inner-page-content {
  padding: 100px 0 60px;
  min-height: 60vh;
}

/* ============================================
   ABOUT PAGE — Redesigned
   ============================================ */

.about-hero {
  padding: 40px 0 32px;
}
.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.about-lead a {
  color: var(--primary);
  font-weight: 600;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.about-logo-block {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.about-logo-img {
  height: 56px;
  margin-bottom: 20px;
}
.about-logo-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.about-contact-block {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}
.about-contact-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.about-contact-block h3 i {
  color: var(--primary);
  margin-right: 8px;
}
.about-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.about-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.about-contact-list li:last-child {
  border-bottom: none;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
[data-theme="dark"] .contact-icon {
  background: rgba(var(--primary-rgb), 0.15);
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.about-contact-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.about-contact-list a:hover {
  color: var(--primary);
}
.about-contact-list span:not(.contact-label) {
  font-size: 0.9rem;
  color: var(--text);
}
.about-social-row {
  display: flex;
  gap: 10px;
}
.about-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition);
}
.about-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
  color: #fff;
}

.about-form-block {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}
.about-form-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.about-form-block h3 i {
  color: var(--primary);
  margin-right: 8px;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
  background: var(--bg);
  color: var(--text);
}
.contact-form .form-control::placeholder {
  color: var(--text-muted);
}
.contact-submit-btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}
.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: #10B981;
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  align-items: center;
  gap: 10px;
}
.form-success i {
  font-size: 1.2rem;
}

.about-map-section {
  margin-bottom: 32px;
}
.about-map-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.about-map-section h3 i {
  color: var(--primary);
  margin-right: 8px;
}
.about-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.about-map-wrap iframe {
  display: block;
}

.about-legal {
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
}
.about-legal p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.about-legal a {
  color: var(--primary);
}

@media (max-width: 768px) {
  .about-stats {
    gap: 20px;
  }
  .stat-number {
    font-size: 1.35rem;
  }
}
