/* ═══════════════════════════════════════════════════
   Vibrant Harmony Entertainment — Blog Post Stylesheet
   Neon pink/cyan/purple on deep black
   ═══════════════════════════════════════════════════ */

:root {
  --neon-pink: #FF6EC7;
  --neon-pink-muted: #E85AAF;
  --neon-cyan: #00F0FF;
  --neon-cyan-muted: #00D4E0;
  --neon-purple: #9D4EDD;
  --deep-black: #0a0a0a;
  --rich-black: #0C0C0C;
  --soft-black: #121212;
  --card-bg: rgba(18, 18, 18, 0.85);
  --card-bg-solid: #121212;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-pink: rgba(255, 110, 199, 0.3);
  --text-primary: #f0f0f0;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --glass-bg: rgba(15, 15, 15, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  background: var(--deep-black);
  color: var(--text-secondary);
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  margin-top: 0;
}


/* ═══════════════ NAV ═══════════════ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
}

.navbar {
  position: relative;
  z-index: 500;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-pink);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-image {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

.nav-logo {
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover {
  color: var(--neon-pink);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  transition: width 0.25s;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff !important;
  border: none;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: all 0.25s;
}
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(255, 110, 199, 0.35);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, var(--deep-black) 0%, #080808 100%);
  border-left: 1px solid var(--border-pink);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-menu.open { right: 0; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255,110,199,0.12);
}
.mobile-nav-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav-close:hover { color: var(--neon-pink); }
.mobile-nav-links { padding: 12px 0; }
.mobile-nav-links a {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.mobile-nav-links a:hover {
  color: var(--neon-pink);
  background: rgba(255,110,199,0.06);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}


/* ═══════════════ HERO ═══════════════ */

.blog-hero {
  position: relative;
  height: 480px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-black);
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.5) 65%,
      rgba(10, 10, 10, 0.9) 100%);
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
  z-index: 3;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 960px;
  width: 100%;
}

.blog-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.6);
  line-height: 1.15;
  letter-spacing: -0.02em;
}


/* ═══════════════ META ═══════════════ */

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-meta-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-pink);
  box-shadow: 0 2px 12px rgba(255, 110, 199, 0.25);
}

.author-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.author-link:hover {
  color: #fff;
}


/* ═══════════════ TAGS ═══════════════ */

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

.post-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(255, 110, 199, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 110, 199, 0.3);
  transition: all 0.25s ease;
}

.post-tag:hover {
  background: rgba(255, 110, 199, 0.3);
  border-color: var(--neon-pink);
  transform: translateY(-1px);
}


/* ═══════════════ BACK LINK ═══════════════ */

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s;
}
.back-to-blog:hover {
  color: var(--neon-pink);
  gap: 12px;
}
.back-to-blog svg {
  width: 16px;
  height: 16px;
}


/* ═══════════════ BLOG BODY ═══════════════ */

.blog-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.blog-content-card {
  background: var(--soft-black);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  padding: 60px 56px;
  border: 1px solid var(--border-subtle);
}

.blog-body {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.blog-body h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin: 56px 0 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  position: relative;
  padding-bottom: 16px;
}
.blog-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  border-radius: 3px;
}

.blog-body h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 40px 0 16px;
  font-weight: 600;
}

.blog-body p {
  margin-bottom: 22px;
}

.blog-body p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4em;
  float: left;
  line-height: 0.75;
  margin: 6px 14px 0 -2px;
  color: var(--neon-pink);
  font-weight: 700;
}

.blog-body ul,
.blog-body ol {
  margin: 24px 0;
  padding-left: 28px;
}

.blog-body li {
  margin-bottom: 12px;
  line-height: 1.75;
}
.blog-body li::marker {
  color: var(--neon-pink);
}

.blog-body blockquote {
  border-left: 4px solid var(--neon-pink);
  padding: 28px 32px;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(255, 110, 199, 0.06), rgba(0, 240, 255, 0.03));
  border-radius: 0 16px 16px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.7;
  position: relative;
}
.blog-body blockquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  color: var(--neon-pink);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}

.blog-body a {
  color: var(--neon-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.2s;
}
.blog-body a:hover {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}


/* ═══════════════ MEDIA EMBEDS ═══════════════ */

.media-embed {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.media-embed img {
  width: 100%;
  height: auto;
  display: block;
}


/* ═══════════════ AUTHOR CARD ═══════════════ */

.author-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(18,18,18,0.95) 0%, rgba(30,20,40,0.95) 100%);
  border: 1px solid var(--border-pink);
  border-radius: 16px;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}
.author-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

.author-card-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-pink);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 110, 199, 0.2);
}

.author-card-info h4 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 4px;
  font-weight: 700;
}

.author-card-info .author-title {
  color: var(--neon-pink);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.author-card-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.author-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s;
}
.author-profile-link:hover {
  color: var(--neon-pink);
  gap: 10px;
}


/* ═══════════════ CITY ACCENT SECTIONS ═══════════════ */

.miami-accent {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.miami-accent-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
@supports (-webkit-touch-callout: none) {
  .miami-accent-bg { background-attachment: scroll; }
}

.miami-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(30, 15, 40, 0.65) 50%, rgba(10, 10, 10, 0.8) 100%);
}

.miami-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
  z-index: 3;
}

.miami-accent-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 30px;
}

.miami-accent-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-pink);
  margin-bottom: 14px;
}

.miami-accent-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
}

.miami-accent-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
  letter-spacing: 0.05em;
}
.miami-accent-location svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
  opacity: 0.6;
}

.miami-accent-slim {
  height: 200px;
}
.miami-accent-slim .miami-accent-quote {
  font-size: 1.3rem;
}


/* ═══════════════ SEO FOOTER ═══════════════ */

.seo-footer {
  max-width: 820px;
  margin: 0 auto 50px;
  padding: 0 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}


/* ═══════════════ FOOTER ═══════════════ */

.footer {
  background: linear-gradient(180deg, var(--deep-black) 0%, #050505 100%);
  color: white;
  padding: 80px 0 0;
  position: relative;
  margin-top: 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h3 {
  margin-bottom: 22px;
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 12px; }
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.95rem;
}
.footer-section ul li a:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-logo-section { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo-image { width: 50px; height: 50px; border-radius: 12px; object-fit: contain; }
.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  margin: 0 0 16px;
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--neon-cyan); }

.footer-location {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  margin: 0;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.footer-links { display: flex; gap: 30px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--neon-pink);
}


/* ═══════════════ READING PROGRESS ═══════════════ */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple));
  z-index: 600;
  pointer-events: none;
  transition: width 0.1s linear;
}


/* ═══════════════ POST NAVIGATION ═══════════════ */

.post-nav {
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.post-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  background: var(--soft-black);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.post-nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 110, 199, 0.12);
  border-color: var(--border-pink);
}

.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }

.post-nav-empty {
  opacity: 0;
  pointer-events: none;
}

.post-nav-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-pink);
  margin-bottom: 6px;
}

.post-nav-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  transition: color 0.2s;
}

.post-nav-link:hover .post-nav-title {
  color: var(--neon-pink);
}

.post-nav-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  background: var(--soft-black);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.post-nav-index:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 110, 199, 0.12);
  border-color: var(--border-pink);
  color: var(--neon-pink);
}


/* ═══════════════ BLOG CARD GRID ═══════════════ */

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--soft-black);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-subtle);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(255, 110, 199, 0.12); border-color: var(--border-pink); }
.blog-card-image { width: 100%; object-fit: contain; }
.blog-card-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.blog-card-title { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; line-height: 1.3; font-family: 'Cormorant Garamond', Georgia, serif; }
.blog-card-excerpt { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--neon-pink); font-weight: 700; font-size: 0.9rem; margin-top: 16px; text-transform: uppercase; letter-spacing: 0.04em; transition: gap 0.2s; }
.blog-card:hover .blog-card-cta { gap: 10px; }
.blog-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.blog-tag { display: inline-block; padding: 4px 12px; background: rgba(255, 110, 199, 0.08); color: var(--neon-pink); font-size: 0.78rem; font-weight: 600; border-radius: 20px; border: 1px solid rgba(255, 110, 199, 0.2); text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; transition: all 0.2s ease; }
.blog-tag:hover { background: rgba(255, 110, 199, 0.2); border-color: var(--neon-pink); }


/* ═══════════════ UTILITIES ═══════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════ RESPONSIVE ═══════════════ */

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

@media (max-width: 768px) {
  .blog-hero { height: 380px; }
  .blog-hero-content { padding: 40px 16px; }
  .blog-hero-content h1 { font-size: 1.8rem; }

  .blog-container { padding: 32px 16px 60px; }
  .blog-content-card { padding: 36px 24px; border-radius: 16px; }

  .blog-body { font-size: 1.05rem; line-height: 1.8; }
  .blog-body h2 { font-size: 1.7rem; margin-top: 40px; }
  .blog-body blockquote { padding: 20px; font-size: 1.15rem; }
  .media-embed { margin: 30px 0; border-radius: 12px; }

  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 28px 20px;
  }
  .author-card-avatar { margin: 0 auto; }

  .miami-accent { height: 260px; }
  .miami-accent-bg { background-attachment: scroll; }
  .miami-accent-quote { font-size: 1.3rem; }
  .miami-accent-slim { height: 180px; }
  .miami-accent-slim .miami-accent-quote { font-size: 1.1rem; }

  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .blog-meta { gap: 14px; }
  .blog-meta-divider { display: none; }

  .post-nav { flex-direction: column; gap: 12px; margin-bottom: 40px; }
  .post-nav-prev, .post-nav-next { text-align: left; }
  .post-nav-index { width: 100%; min-width: auto; padding: 14px; }
  .post-nav-empty { display: none; }
  .post-nav-title { font-size: 1rem; }

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

@media (max-width: 480px) {
  .blog-hero { height: 320px; }
  .blog-hero-content h1 { font-size: 1.5rem; }
  .blog-content-card { padding: 28px 18px; }
  .blog-body { font-size: 1rem; }
  .blog-body p:first-of-type::first-letter { font-size: 3em; }
  .post-tags { gap: 6px; }
  .post-tag { padding: 4px 12px; font-size: 0.72rem; }
  .miami-accent { height: 220px; }
  .miami-accent-quote { font-size: 1.15rem; }
}
