/* ═══════════════════════════════════════════════════
   GigHorse Blog Post Stylesheet
   Clean layout — no bleeding, no overlapping, no cropping
   ═══════════════════════════════════════════════════ */

:root {
  --lux-gold: #c8a24b;
  --lux-gold-light: #d4b56a;
  --lux-deep: #0d0d1a;
  --lux-dark: #1a1a2e;
  --lux-navy: #16213e;
  --lux-purple: #6e59e6;
  --lux-text: #374151;
  --lux-text-dark: #111827;
  --lux-white: #ffffff;
}

* { box-sizing: border-box; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: var(--lux-text);
}

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


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

/* ── Mobile nav luxury overrides ── */
.mobile-nav-menu {
  background: linear-gradient(180deg, var(--lux-deep) 0%, #080812 100%) !important;
  border-left: 1px solid rgba(200, 162, 75, 0.15) !important;
}
.mobile-nav-header {
  border-bottom: 1px solid rgba(200, 162, 75, 0.12) !important;
}
.mobile-nav-close {
  color: rgba(255, 255, 255, 0.6) !important;
}
.mobile-nav-close:hover {
  color: var(--lux-gold) !important;
}
.mobile-nav-links a {
  color: rgba(255, 255, 255, 0.75) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.mobile-nav-links a:hover {
  color: var(--lux-gold) !important;
  background: rgba(200, 162, 75, 0.06) !important;
}
.mobile-nav-links .nav-pro-login {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light)) !important;
  color: var(--lux-deep) !important;
  border: none !important;
}

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

.navbar {
  position: relative;
  z-index: 500;
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(200, 162, 75, 0.15);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-logo {
  background: linear-gradient(90deg, #fff, var(--lux-gold-light)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: none !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--lux-gold) !important;
}
.nav-links a::after {
  background: linear-gradient(90deg, var(--lux-gold), transparent) !important;
}

.nav-pro-login {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light)) !important;
  color: var(--lux-deep) !important;
  border: none !important;
  font-weight: 700 !important;
}
.nav-pro-login:hover {
  color: var(--lux-deep) !important;
  box-shadow: 0 4px 20px rgba(200, 162, 75, 0.3) !important;
}


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

.blog-hero {
  position: relative;
  min-height: 520px;
  margin-top: 60px; /* push below fixed nav — clean, no overlap */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--lux-deep);
}

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

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

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), 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(--lux-gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.author-link {
  color: var(--lux-gold-light);
  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(200, 162, 75, 0.15);
  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(200, 162, 75, 0.3);
  transition: all 0.25s ease;
}

.post-tag:hover {
  background: rgba(200, 162, 75, 0.35);
  border-color: var(--lux-gold);
  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(--lux-gold);
  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(--lux-white);
  border-radius: 20px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 60px 56px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.blog-body h2 {
  font-size: 2.2rem;
  color: var(--lux-text-dark);
  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(--lux-gold), transparent);
  border-radius: 3px;
}

.blog-body h3 {
  font-size: 1.6rem;
  color: #1f2937;
  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(--lux-gold);
  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(--lux-gold);
}

.blog-body blockquote {
  border-left: 4px solid var(--lux-gold);
  padding: 28px 32px;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(200, 162, 75, 0.06), rgba(110, 89, 230, 0.03));
  border-radius: 0 16px 16px 0;
  font-style: italic;
  color: #4b5563;
  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(--lux-gold);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}

.blog-body a {
  color: var(--lux-purple);
  text-decoration: none;
  border-bottom: 1px solid rgba(110, 89, 230, 0.3);
  transition: all 0.2s;
}
.blog-body a:hover {
  color: var(--lux-gold);
  border-bottom-color: var(--lux-gold);
}


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

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

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


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

.author-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: linear-gradient(135deg, var(--lux-deep) 0%, var(--lux-navy) 100%);
  border: 1px solid rgba(200, 162, 75, 0.2);
  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(--lux-gold), transparent);
}

.author-card-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lux-gold);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.author-card-info .author-title {
  color: var(--lux-gold);
  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.75);
  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(--lux-gold);
  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(--lux-gold-light);
  gap: 10px;
}


/* ═══════════════ MIAMI 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(13, 13, 26, 0.75) 0%, rgba(22, 33, 62, 0.6) 50%, rgba(13, 13, 26, 0.75) 100%);
}

.miami-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), 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: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lux-gold);
  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: 'DM Sans', 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(0, 0, 0, 0.12);
  font-size: 0.75rem;
}


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

.footer {
  background: linear-gradient(180deg, var(--lux-deep) 0%, #080812 100%) !important;
  color: white;
  padding: 80px 0 0;
  position: relative;
  margin-top: 0;
}
.footer.footer--slideshow {
  background: transparent !important;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

/* Footer slideshow overlay – dark luxury instead of purple */
.footer.footer--slideshow .footer-slideshow::before {
  background: linear-gradient(180deg,
    rgba(13, 13, 26, 0.85) 0%,
    rgba(13, 13, 26, 0.7) 40%,
    rgba(13, 13, 26, 0.75) 70%,
    rgba(13, 13, 26, 0.9) 100%) !important;
}

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

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

.footer-section h3 {
  margin-bottom: 22px;
  color: var(--lux-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'DM Sans', 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.6);
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.95rem;
}
.footer-section ul li a:hover {
  color: white;
  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: cover; }
.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

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

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.footer-social a:hover {
  background: rgba(200, 162, 75, 0.15);
  border-color: var(--lux-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200, 162, 75, 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  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.4);
  font-size: 0.9rem;
}

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


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

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--lux-gold), var(--lux-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(--lux-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.post-nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 162, 75, 0.3);
}

.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: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lux-gold);
  margin-bottom: 6px;
}

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

.post-nav-link:hover .post-nav-title {
  color: var(--lux-gold);
}

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

.post-nav-index:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 162, 75, 0.3);
  color: var(--lux-gold);
}


/* ═══════════════ 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 { min-height: 400px; }
  .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; }
}

@media (max-width: 480px) {
  .blog-hero { min-height: 340px; }
  .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; }
}


/* ═══════════════ BLOG CARD GRID ═══════════════
   Shared card styles used on blog index, city index,
   and related-posts sections.
   ═══════════════════════════════════════════════ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--lux-white, #fff);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--lux-deep, #0d0d1a), var(--lux-navy, #16213e));
}
.blog-card-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 3rem;
}

.blog-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lux-text-dark, #111827);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-excerpt {
  color: var(--lux-text, #374151);
  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(--lux-gold, #c8a24b);
  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(200,162,75,0.1);
  color: var(--lux-gold, #c8a24b);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(200,162,75,0.25);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}
.blog-tag:hover {
  background: rgba(200,162,75,0.25);
  border-color: var(--lux-gold, #c8a24b);
}

/* Blog listing variant (smaller) */
.blog-card.blog-listing .blog-card-image { height: 140px; }
.blog-card.blog-listing .blog-card-title { font-size: 1.5rem; margin-bottom: 8px; }
.blog-card.blog-listing .blog-card-excerpt { -webkit-line-clamp: 2; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
