/* ============================================
   DIVE IN HURGHADA — ARTICLE PAGE STYLES v2
   Complete redesign with proper sizing & layout
   ============================================ */

/* ── CSS VARIABLES ── */
:root {
  --bg: #020c18;
  --bg-light: #061a2e;
  --surface: rgba(6, 32, 64, 0.6);
  --gold: #f0a500;
  --cyan: #00c8ff;
  --glow: #00c8ff;
  --text: #ffffff;
  --muted: #5a7a9a;
  --muted-light: #94b2d0;
  --border: rgba(0, 200, 255, 0.15);
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(.23,1,.32,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: rgba(0, 200, 255, 0.25);
  color: #fff;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  padding: 0.8rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ── OCEAN CANVAS ── */
#ocean-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(2, 12, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 200, 255, 0.08);
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(2, 12, 24, 0.96);
  padding: 0.7rem 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.nav-logo span { color: var(--cyan); }
.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), #0088cc);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 200, 255, 0.3);
  border: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.4);
}

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2, 12, 24, 0.98);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--cyan); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), #0088cc);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 200, 255, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.4);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid rgba(0, 200, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(0, 200, 255, 0.1);
  border-color: var(--cyan);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── ARTICLE LAYOUT ── */
.article-page {
  position: relative;
  z-index: 1;
}

/* ── ARTICLE HERO (REDESIGNED) ── */
.article-hero {
  position: relative;
  z-index: 1;
  min-height: 55vh;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 2rem 3rem;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.4) saturate(1.3);
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(2, 12, 24, 0.1) 0%,
    rgba(2, 12, 24, 0.3) 30%,
    rgba(2, 12, 24, 0.65) 60%,
    rgba(2, 12, 24, 0.98) 100%
  );
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.article-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.article-date, .article-read {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.article-date::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--muted);
}

.article-read::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--muted);
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.2s both;
  color: #ffffff;
}

.article-excerpt {
  font-size: 1.05rem;
  color: var(--muted-light);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.4s both;
}

/* ── ARTICLE WRAPPER (2-COLUMN LAYOUT) ── */
.article-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── TABLE OF CONTENTS (STICKY SIDEBAR) ── */
.article-toc {
  position: sticky;
  top: 100px;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(6, 32, 64, 0.5), rgba(2, 12, 24, 0.7));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.article-toc h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-toc h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--cyan);
  border-radius: 2px;
}

.article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.article-toc li a {
  display: block;
  padding: 0.5rem 0.7rem;
  color: var(--muted-light);
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s;
  border-left: 2px solid transparent;
  line-height: 1.4;
}

.article-toc li a:hover,
.article-toc li a.active {
  color: var(--cyan);
  background: rgba(0, 200, 255, 0.06);
  border-left-color: var(--cyan);
  padding-left: 1rem;
}

/* ── ARTICLE BODY ── */
.article-body {
  padding: 2rem 0 3rem;
}

.article-body section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 200, 255, 0.06);
}

.article-body section:last-of-type {
  border-bottom: none;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  color: #ffffff;
  position: relative;
  padding-left: 1.2rem;
}

.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 4px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  border-radius: 2px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 2rem 0 1rem;
  color: var(--cyan);
  font-weight: 600;
}

.article-body p {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.article-body p strong {
  color: #ffffff;
  font-weight: 600;
}

.article-body ul {
  margin: 1rem 0 1.5rem 0;
  list-style: none;
  padding: 0;
}

.article-body ul li {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 0.6rem;
  padding-left: 1.8rem;
  position: relative;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--cyan), rgba(0, 200, 255, 0.3));
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 200, 255, 0.3);
}

.article-body blockquote {
  background: linear-gradient(135deg, rgba(0, 60, 120, 0.25), rgba(0, 180, 255, 0.06));
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.8;
  position: relative;
}

.article-body blockquote::before {
  content: '"';
  position: absolute;
  top: -0.2rem;
  left: 0.8rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(0, 200, 255, 0.2);
  line-height: 1;
}

.article-body blockquote strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.article-body a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 200, 255, 0.3);
  transition: all 0.2s;
}

.article-body a:hover {
  border-bottom-color: var(--cyan);
  color: #fff;
}

/* ── ARTICLE CONCLUSION ── */
.article-conclusion {
  background: linear-gradient(135deg, rgba(6, 32, 64, 0.5), rgba(2, 12, 24, 0.7));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.article-conclusion::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
}

.article-conclusion h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
  padding-left: 0;
}

.article-conclusion h2::before {
  display: none;
}

.article-conclusion p {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ── ARTICLE NAVIGATION ── */
.article-nav {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-nav-back {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-nav-back:hover {
  opacity: 0.8;
  transform: translateX(-4px);
}

.article-nav-share {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.article-nav-share span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-nav-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.2);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.article-nav-share a:hover {
  background: rgba(0, 200, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 200, 255, 0.2);
}

/* ── RELATED ARTICLES ── */
.related-articles {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.related-articles h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}

.related-articles h2 em {
  font-style: italic;
  color: var(--glow);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: linear-gradient(145deg, rgba(6, 32, 64, 0.7), rgba(2, 12, 24, 0.85));
  border: 1px solid rgba(0, 200, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(.23, 1, .32, 1);
}

.related-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 200, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 200, 255, 0.1);
}

.related-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.related-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 12, 24, 0.5), transparent);
}

.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  filter: brightness(0.85) saturate(1.2);
}

.related-card:hover .related-img img {
  transform: scale(1.08);
}

.related-body {
  padding: 1.2rem;
}

.related-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.3);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.related-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  line-height: 1.4;
}

.related-body p {
  font-size: 0.8rem;
  color: var(--muted-light);
  line-height: 1.6;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  z-index: 1;
  margin: 2rem auto 4rem;
  max-width: 1200px;
  background: linear-gradient(135deg, rgba(0, 60, 120, 0.4), rgba(0, 180, 255, 0.08));
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
  color: #ffffff;
  position: relative;
}

.cta-banner p {
  color: var(--muted-light);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 12, 24, 0.98), rgba(2, 12, 24, 0.9));
  border-top: 1px solid rgba(0, 200, 255, 0.08);
  padding: 4rem 2rem 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-light);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-brand p strong {
  color: var(--text);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.15);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: rgba(0, 200, 255, 0.2);
  transform: translateY(-2px);
}

footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul li a {
  color: var(--muted-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--cyan);
}

.footer-contact p {
  color: var(--muted-light);
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-contact a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 200, 255, 0.08);
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .article-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .article-toc {
    position: relative;
    top: 0;
    order: -1;
  }
  .article-toc ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.3rem;
  }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  #navbar { padding: 1rem 1.5rem; }
  #navbar.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-cta { display: none; }

  .article-hero {
    min-height: 45vh;
    max-height: 450px;
    padding: 6rem 1.5rem 2.5rem;
  }
  .article-title { font-size: 1.7rem; }
  .article-wrapper { padding: 0 1.5rem; }
  .article-body { padding: 1.5rem 0 2rem; }
  .article-body section { margin-bottom: 2rem; padding-bottom: 1.5rem; }
  .article-conclusion { padding: 1.8rem; }
  .article-nav { padding: 1rem 1.5rem 2.5rem; }
  .related-articles { padding: 2.5rem 1.5rem 1rem; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-banner { margin: 1.5rem 1.5rem 3rem; padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .article-hero {
    min-height: 40vh;
    max-height: 380px;
    padding: 5rem 1rem 2rem;
  }
  .article-meta { gap: 0.5rem; flex-direction: column; }
  .article-title { font-size: 1.5rem; }
  .article-excerpt { font-size: 0.95rem; }
  .article-wrapper { padding: 0 1rem; }
  .article-body h2 { font-size: 1.2rem; padding-left: 1rem; }
  .article-body h2::before { top: 0.25rem; bottom: 0.25rem; }
  .article-body ul li { padding-left: 1.5rem; }
  .article-body ul li::before { width: 6px; height: 6px; top: 0.6rem; }
  .article-conclusion { padding: 1.5rem; }
  .cta-banner h2 { font-size: 1.3rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ── TABLES (INFO TABLES) ── */
.info-table {
  margin: 1.5rem 0;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(6, 32, 64, 0.4), rgba(2, 12, 24, 0.5));
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table th,
.info-table td {
  padding: 0.8rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 200, 255, 0.08);
}

.info-table th {
  width: 35%;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 200, 255, 0.05);
}

.info-table td {
  color: var(--muted-light);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover {
  background: rgba(0, 200, 255, 0.03);
}

/* ── INLINE ARTICLE IMAGES ── */
.article-img-inline {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.article-img-inline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 12, 24, 0.3), transparent 50%);
  pointer-events: none;
}

.article-img-inline img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.article-img-inline:hover img {
  transform: scale(1.02);
}

/* ── MAP EMBED ── */
.map-embed {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.map-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── RESPONSIVE TABLES & IMAGES ── */
@media (max-width: 900px) {
  .info-table th {
    width: 40%;
    padding: 0.7rem 1rem;
  }
  .info-table td {
    padding: 0.7rem 1rem;
  }
  .article-img-inline img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .info-table th,
  .info-table td {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  .info-table th {
    width: 45%;
  }
  .article-img-inline img {
    max-height: 250px;
  }
}
