/* =============================================
   TUZLUCA MİKAİL DERNEĞİ - Ana Stil Dosyası
   Renk Paleti: Koyu Lacivert + Altın + Beyaz
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #162040;
  --navy-light: #1e2f55;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5ecd0;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --red: #c0392b;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.12);
  --shadow-md: 0 4px 20px rgba(10,22,40,0.18);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.24);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--gray-100);
  color: var(--gray-800);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: var(--navy);
}

a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

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

/* ============ HEADER ============ */
:root {
  --header-top-height: 40px;
  --header-main-height: 70px;
}

.site-header-group {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
  background: #0a1628;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: var(--header-top-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header-top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.header-top-left a {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-top-left a:hover, .header-top-left a.active {
  color: var(--gold);
}
.header-top-sep {
  color: rgba(255,255,255,0.25);
  user-select: none;
}
.header-top-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-top-inline-auth {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: flex-end;
}
.header-top-inline-auth a {
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: var(--radius);
}
.header-top-inline-auth a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.14);
}
.header-top-inline-sep {
  color: rgba(255,255,255,0.32);
  user-select: none;
  font-size: 12px;
  padding: 0 1px;
}
.btn-login-top, .btn-register-top {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
}

.site-header {
  background: var(--navy);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-main-height);
}

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


/* Mobile menü — varsayılan olarak gizli */
.mobile-menu {
  display: none;
}

/* 768px ve altında aç/kapa mantığı */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--header-top-height) + var(--header-main-height));
    left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 20px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.logo-icon-img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.8);
  flex-shrink: 0;
  background: var(--white);
}

.logo-text { line-height: 1.2; }
.logo-text .main { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); }
.logo-text .sub { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.main-nav ul { list-style: none; display: flex; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search-btn{
  width: 38px; height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.10);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.header-search-btn:hover{
  background: rgba(201,168,76,0.20);
  transform: translateY(-1px);
}
.btn-login, .btn-register {
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-login { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-login:hover { background: var(--gold); color: var(--navy); }
.btn-register { background: var(--gold); color: var(--navy); }
.btn-register:hover { background: var(--gold-light); transform: translateY(-1px); }

.user-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.user-avatar-placeholder {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 2px solid var(--gold-light);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Header search panel */
.header-search-panel{
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: none;
}
.header-search-panel.open{ display:block; }
.header-search-form{
  display:flex;
  gap: 10px;
  padding: 14px 0 16px;
  align-items:center;
}
.header-search-form .form-control{
  flex: 1;
  background: rgba(255,255,255,0.95);
  border-color: transparent;
}
.header-search-form .form-control:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}

/* ============ HERO SLIDER ============ */
.hero-slider-wrap {
  background: var(--gray-100);
  padding: 28px 0 0;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(78vh, 560px);
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius-lg);
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1320px) {
  .hero-slider { margin: 0 20px; }
}
@media (min-width: 1024px) {
  .hero-slider { max-height: min(85vh, 640px); }
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }

.slide-link{
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide-content{ z-index: 2; }
.slider-controls{ z-index: 3; }
.slider-dots{ z-index: 3; }

.slide-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.slide-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 48px 36px;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
}

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
  max-width: 700px;
}

.slide-content p { color: rgba(255,255,255,0.75); font-size: 15px; max-width: 600px; margin-bottom: 20px; }

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.slide-btn:hover { background: var(--gold-light); color: var(--navy); transform: translateX(4px); }

.slider-controls {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none;
}
.slider-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white; font-size: 18px;
  cursor: pointer; pointer-events: all;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.slider-dots {
  position: absolute; bottom: 20px; right: 60px;
  display: flex; gap: 8px;
}
.dot {
  width: 34px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.12);
  cursor: pointer; transition: var(--transition);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter: blur(4px);
  padding: 0;
}
.dot:hover { background: rgba(201,168,76,0.28); border-color: rgba(201,168,76,0.6); color: var(--gold); }
.dot.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

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

.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-200);
}
.section-title {
  font-size: 26px; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.section-title::before {
  content: '';
  width: 4px; height: 28px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}
.see-all {
  font-size: 13px; font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: 4px;
}
.see-all:hover { color: var(--navy); }

.page-section { padding: 50px 0; }

/* ============ NEWS GRID ============ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.news-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-200);
  position: relative;
}
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-image .no-image {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 40px;
}

.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 12px; color: var(--gray-600); margin-bottom: 8px; }
.news-card-title { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.4; flex: 1; }
.news-card-title:hover { color: var(--gold); }
.news-card-summary { font-size: 14px; color: var(--gray-600); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============ CARDS GENERAL ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero h1 i { font-size: 0.85em; }
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { margin: 0 5px; color: rgba(255,255,255,0.3); }

/* ============ FORUM ============ */
.forum-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.forum-categories { display: flex; flex-direction: column; gap: 16px; }
.forum-category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.forum-cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.forum-cat-icon { width: 42px; height: 42px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; }
.forum-cat-name { font-size: 17px; font-weight: 700; color: var(--navy); }
.forum-cat-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.forum-cat-stats { display: flex; gap: 16px; }
.forum-stat { font-size: 12px; color: var(--gray-600); display: flex; align-items: center; gap: 4px; }

.forum-topics-list { display: flex; flex-direction: column; gap: 2px; }
.topic-row {
  display: flex; align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-200);
}
.topic-row:hover { background: var(--gray-100); }
.topic-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; flex-shrink: 0; margin-right: 14px; }
.topic-info { flex: 1; }
.topic-title { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 2px; }
.topic-meta { font-size: 12px; color: var(--gray-600); }
.topic-stats { display: flex; gap: 14px; font-size: 12px; color: var(--gray-600); }

/* ============ PHOTO ALBUMS ============ */
.albums-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.album-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.album-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.album-cover {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.album-card:hover .album-cover img { transform: scale(1.06); }
.album-count {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: white; font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.album-info { padding: 14px 16px; }
.album-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.album-date { font-size: 12px; color: var(--gray-600); }

/* ============ LIGHTBOX ============ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-main { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; padding: 20px; }
.lightbox-main img { max-height: 75vh; max-width: 90vw; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1); border: none;
  border-radius: 50%; color: white; font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-nav { display: flex; gap: 12px; }
.lightbox-prev, .lightbox-next {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border: none;
  border-radius: 50%; color: white; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--navy); }
.lightbox-thumbs {
  width: 100%; padding: 12px 20px;
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb {
  width: 48px; height: 60px; flex-shrink: 0;
  aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); opacity: 0.6;
}
.lightbox-thumb.active { border-color: var(--gold); opacity: 1; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============ VIDEOS ============ */
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (min-width: 1200px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-thumbnail {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.video-card:hover .video-thumbnail img { transform: scale(1.05); }
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: var(--transition);
}
.video-play-btn {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy);
  transform: scale(1);
  transition: var(--transition);
  padding-left: 4px;
}
.video-card:hover .video-play-btn { transform: scale(1.12); background: var(--gold); }
.video-body { padding: 16px; }
.video-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.video-meta { font-size: 12px; color: var(--gray-600); display: flex; align-items: center; gap: 10px; }

/* ============ VIDEO MODAL ============ */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.video-modal.active { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; position: relative; }
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1); border: none;
  border-radius: 50%; color: white; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.video-modal-close:hover { background: var(--red); }
.video-embed { aspect-ratio: 16/9; width: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.video-embed iframe { width: 100%; height: 100%; border: none; }

/* ============ COLUMNISTS ============ */
.columnists-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.columnist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.columnist-card:hover, .columnist-card.active { box-shadow: var(--shadow-md); border-bottom: 3px solid var(--gold); }
.columnist-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid var(--gold-pale);
}
.columnist-photo-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 30px; color: var(--gold);
  border: 3px solid var(--gold-pale);
}
.columnist-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.columnist-bio { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

.column-articles { display: flex; flex-direction: column; gap: 16px; }
.column-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 20px;
  transition: var(--transition);
}
.column-article:hover { box-shadow: var(--shadow-md); }
.column-article-image {
  width: 96px; height: 120px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
  background: var(--gray-200);
}
.column-article-image img { width: 100%; height: 100%; object-fit: cover; }
.column-article-info { flex: 1; }
.column-article-author {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gold); font-weight: 600;
  margin-bottom: 6px;
}
.column-article-author img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.column-article-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.column-article-title:hover { color: var(--gold); }
.column-article-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Columnists page layout (list left, authors right) */
.columns-layout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.columnist-profile{
  padding: 18px;
  margin-bottom: 18px;
}
.columnist-profile-inner{
  display:flex;
  gap: 18px;
  align-items:flex-start;
}
.columnist-profile-photo{
  width: 120px;
  height: 120px;
  border-radius: 18px;
  overflow:hidden;
  background: var(--gray-200);
  flex-shrink:0;
}
.columnist-profile-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.columnist-profile-name{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
.columnist-profile-bio{
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.columnist-side-item{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  margin-bottom: 10px;
  transition: var(--transition);
}
.columnist-side-item:hover{
  border-color: rgba(201,168,76,0.55);
  box-shadow: var(--shadow-sm);
}
.columnist-side-item.active{
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.columnist-side-row{ display:flex; gap:10px; align-items:center; }
.columnist-side-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
  flex-shrink:0;
}
.columnist-side-avatar.placeholder{
  background: var(--navy);
  color: var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.columnist-side-name{
  font-weight: 800;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.columnist-side-meta{
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 2px;
}

/* ============ FORMS ============ */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.form-title { font-size: 22px; margin-bottom: 24px; color: var(--navy); padding-bottom: 14px; border-bottom: 2px solid var(--gray-200); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-label span { color: var(--red); }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-400);
  border-radius: var(--radius);
  font-size: 15px; font-family: inherit;
  transition: var(--transition); background: var(--white);
  color: var(--gray-800);
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.blood-type-group { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.blood-type-btn {
  padding: 10px 6px; text-align: center;
  border: 2px solid var(--gray-400);
  border-radius: var(--radius); cursor: pointer;
  font-size: 13px; font-weight: 600;
  transition: var(--transition); background: var(--white);
  color: var(--gray-600);
}
.blood-type-btn:hover { border-color: var(--gold); color: var(--gold); }
.blood-type-btn.selected { border-color: var(--red); background: #fff0ef; color: var(--red); }
.blood-type-btn input { display: none; }
.blood-pos { color: var(--red); }
.blood-neg { color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: none; transition: var(--transition); font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-light); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-full { width: 100%; }

/* ============ CONTACT ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px; flex-shrink: 0;
}
.contact-info-text h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-info-text p { font-size: 14px; color: var(--gray-600); }

/* Contact verify slider */
.slider-verify{
  background: var(--gray-100);
  border: 1.5px solid var(--gray-400);
  border-radius: var(--radius);
  padding: 12px 14px 10px;
}
.slider-verify-label{
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 8px;
  font-weight: 700;
}
.slider-verify input[type="range"]{
  width: 100%;
  accent-color: var(--gold);
}
.modal .slider-verify-modal {
  padding: 10px 12px 8px;
  background: var(--gray-100);
}

/* ============ COMMENTS ============ */
.comments-section { margin-top: 40px; }
.comments-title { font-size: 20px; color: var(--navy); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-200); }
.comment {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.comment-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
  border: 2px solid var(--gold-pale);
}
.comment-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.comment-body { flex: 1; }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.comment-author { font-weight: 700; font-size: 14px; color: var(--navy); }
.comment-time { font-size: 12px; color: var(--gray-600); }
.comment-text { font-size: 14px; color: var(--gray-700); line-height: 1.6; }

.comment-form { background: var(--gray-100); border-radius: var(--radius-lg); padding: 20px; margin-top: 20px; }
.comment-form textarea { resize: vertical; min-height: 80px; }

/* ============ AUTH MODALS ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.7);
  display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%; max-width: 460px;
  position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--gray-200); border: none; border-radius: 50%;
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--red); color: white; }
.modal-title { font-size: 24px; color: var(--navy); margin-bottom: 24px; text-align: center; }
.modal-divider { text-align: center; margin: 16px 0; position: relative; }
.modal-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--gray-200);
}
.modal-divider span { background: white; padding: 0 12px; font-size: 13px; color: var(--gray-600); position: relative; }

.oauth-buttons { display: flex; gap: 10px; }
.btn-google, .btn-facebook {
  flex: 1; padding: 10px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}
.btn-google { background: #fff; border: 1.5px solid var(--gray-400); color: var(--gray-800); }
.btn-google:hover { border-color: #4285F4; color: #4285F4; background: #f0f5ff; }
.btn-facebook { background: #1877F2; color: white; }
.btn-facebook:hover { background: #1565c0; }

/* ============ ADMIN ============ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--navy);
  padding: 0;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.admin-sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 17px; font-weight: 700;
}
.admin-nav { padding: 10px 0; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 600; transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(201,168,76,0.15); color: var(--gold); }
.admin-nav .nav-section { padding: 16px 20px 6px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-family: 'Source Sans 3', sans-serif; }
.admin-content { padding: 32px; background: var(--gray-100); }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.admin-title { font-size: 26px; color: var(--navy); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 20px 24px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 16px;
}
.stat-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.stat-icon.blue { background: #dbeafe; color: #2563eb; }
.stat-icon.gold { background: var(--gold-pale); color: var(--gold); }
.stat-icon.green { background: #dcfce7; color: #16a34a; }
.stat-icon.red { background: #fee2e2; color: var(--red); }
.stat-value { font-size: 28px; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 13px; color: var(--gray-600); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--gray-100); padding: 11px 14px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--gray-600); text-align: left; border-bottom: 2px solid var(--gray-200);
}
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray-200); font-size: 14px; vertical-align: middle; }
.data-table tr:hover td { background: var(--gray-100); }

.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-success { background: #dcfce7; color: #16a34a; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: var(--red); }
.badge-info { background: #dbeafe; color: #1d4ed8; }
.badge-gold { background: var(--gold-pale); color: #78570a; }

/* ============ ALERT ============ */
.alert { padding: 13px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; font-weight: 600; }
.alert-success { background: #dcfce7; color: #15803d; border-left: 4px solid #16a34a; }
.alert-error { background: #fee2e2; color: #dc2626; border-left: 4px solid var(--red); }
.alert-info { background: #dbeafe; color: #1d4ed8; border-left: 4px solid #3b82f6; }


/* ============ HOME PAGE LAYOUT ============ */
.home-hero-grid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.home-hero-main .hero-slider{
  max-width: none;
  margin: 0;
}
.home-hero-sidebar{
  position: relative;
}

.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.home-videos-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.home-two-col .video-card--compact .video-body {
  padding: 10px 12px;
}
.home-two-col .video-card--compact .video-title {
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-two-col .video-card--compact .video-meta {
  font-size: 11px;
}
.home-two-col .video-card--compact .video-play-btn {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

.home-albums-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.home-albums-grid-2 .album-card--home .album-cover {
  aspect-ratio: 1 / 1;
}
.home-albums-grid-2 .album-card--home .album-info {
  padding: 10px 10px 12px;
}
.home-albums-grid-2 .album-card--home .album-title {
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-albums-grid-2 .album-card--home .album-date {
  font-size: 11px;
}
.home-albums-grid-2 .album-card--home .album-count {
  font-size: 10px;
  padding: 3px 8px;
  bottom: 6px;
  right: 6px;
}

.home-topic-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.home-topic-row:hover { background: var(--gray-100); }
.home-topic-cat {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.home-topic-info { flex: 1; min-width: 0; }
.home-topic-title {
  display: block;
  font-weight: 700; font-size: 14px; color: var(--navy);
  line-height: 1.4; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.home-topic-title:hover { color: var(--gold); }
.home-topic-meta {
  display: flex; gap: 10px; font-size: 12px; color: var(--gray-600);
  flex-wrap: wrap;
}
.home-topic-badge { white-space: nowrap; flex-shrink: 0; margin-top: 2px; }

/* ============ HERO SLIDER WRAP ============ */
.hero-slider-wrap {
  padding-bottom: 0;
}
.hero-slider-wrap .container {
  padding-bottom: 0 !important;
}

/* Responsive home */


/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text .main, .footer-brand .logo-text .sub { color: white; }
.footer-brand .logo-text .sub { color: var(--gold); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-heading { color: var(--gold); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--gold); }

/* ============ SIDEBAR WIDGETS ============ */
.sidebar-widget {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.widget-title {
  font-size: 16px; color: var(--navy); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--gold-pale);
  display: flex; align-items: center; gap: 8px;
}
.widget-title i { color: var(--gold); }

/* ============ PAGINATION ============ */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.page-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  background: var(--white); color: var(--gray-600); box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1.5px solid transparent;
}
.page-link:hover { border-color: var(--gold); color: var(--gold); }
.page-link.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ============ SINGLE ARTICLE ============ */
.article-hero { background: var(--navy); }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.article-body {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.article-title { font-size: clamp(22px, 3vw, 34px); color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.article-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-600); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-content { font-size: 16px; line-height: 1.8; color: var(--gray-800); }
.article-content p { margin-bottom: 16px; }
.article-content h2 { font-size: 22px; margin: 28px 0 14px; color: var(--navy); }
.article-content img { border-radius: var(--radius); margin: 20px 0; }
.article-content blockquote {
  border-left: 4px solid var(--gold); padding: 12px 20px;
  background: var(--gold-pale); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; margin: 20px 0; color: var(--gray-700);
}
.article-featured-image { width: 100%; border-radius: var(--radius-lg); margin-bottom: 28px; max-height: 400px; object-fit: cover; }

/* News page: portrait featured image + text wrapping */
.article-body::after { content:""; display:block; clear:both; }
.article-featured-float{
  float: left;
  width: min(280px, 42%);
  aspect-ratio: 4 / 5;
  margin: 0 26px 16px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.article-featured-portrait{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display:block;
}
.article-title-inline{ margin-top: 0; }

/* ============ TAGS ============ */
.tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.tag-gold { background: var(--gold-pale); color: #78570a; }
.tag-navy { background: rgba(10,22,40,0.08); color: var(--navy); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .news-grid, .albums-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .home-two-col { grid-template-columns: 1fr; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-videos-grid:not(.home-videos-grid--two) { grid-template-columns: 1fr; }
  .columnists-grid { grid-template-columns: repeat(3, 1fr); }
  .columns-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .forum-wrapper { grid-template-columns: 1fr; }
  .article-layout, .contact-layout { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .news-grid, .albums-grid, .videos-grid, .columnists-grid { grid-template-columns: 1fr; }
  .home-two-col { grid-template-columns: 1fr; }
  .home-videos-grid:not(.home-videos-grid--two) { grid-template-columns: 1fr; }
  .home-topic-badge { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-search-form{ flex-direction: column; align-items: stretch; }
  .header-search-btn{ width: 40px; height: 40px; }
  .slide-content { padding: 30px 24px; }
  .hero-slider { max-height: min(82vh, 520px); }
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
  .blood-type-group { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .column-article { flex-direction: column; }
  .column-article-image { width: 100%; height: auto; max-height: 320px; aspect-ratio: 4/5; }
  .modal { padding: 24px; }
  .oauth-buttons { flex-direction: column; }
  .article-featured-float{
    float:none;
    width:100%;
    max-width: 420px;
    margin: 0 0 18px 0;
  }

  .mobile-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--navy); z-index: 999;
    padding: 20px; gap: 4px; overflow-y: auto;
    transform: translateX(-100%); transition: transform 0.3s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    display: block; padding: 14px 16px;
    color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 600;
    border-radius: var(--radius); border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .mobile-menu a:hover { background: rgba(201,168,76,0.15); color: var(--gold); }
  .mobile-menu .mobile-auth { display: flex; gap: 10px; margin-top: 16px; }
  .mobile-menu .mobile-auth .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-slider { max-height: min(85vh, 460px); }
  .home-videos-grid:not(.home-videos-grid--two) { grid-template-columns: 1fr; }
  .slide-content h2 { font-size: 18px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Loading spinner */
.spinner { width: 40px; height: 40px; border: 3px solid var(--gray-200); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Infinite scroll helpers */
.infinite-status { min-height: 10px; }
.infinite-sentinel { height: 1px; }

/* Star badge */
.star-badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--navy); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* Rich text editor area */
.editor-toolbar { background: var(--gray-100); border: 1.5px solid var(--gray-400); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; padding: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.editor-toolbar button { background: none; border: 1px solid transparent; border-radius: 4px; padding: 5px 9px; cursor: pointer; font-size: 14px; color: var(--gray-700); transition: var(--transition); }
.editor-toolbar button:hover { border-color: var(--gray-400); background: white; }
.editor-content { border: 1.5px solid var(--gray-400); border-radius: 0 0 var(--radius) var(--radius); min-height: 200px; padding: 14px; font-family: inherit; font-size: 15px; line-height: 1.7; outline: none; }
.editor-content:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
