@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

@font-face {
  font-family: 'Hoshiko Satsuki';
  src: url('/assets/fonts/Hoshiko-Satsuki.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   DESIGN TOKENS & RESET
   ========================================= */
:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Dark theme — matches the live bluedragonmassage.com site */
  --color-bg: #0a0a0c;
  --color-surface: #121217;
  --color-surface-hover: #1c1c22;
  --color-text: #e9e9ec;
  --color-text-light: #a2a2ac;
  --color-heading: #ffffff;
  --color-primary: #c9a24b; /* Gold */
  --color-primary-dark: #e8cd86; /* Lighter gold for hover on dark */
  --color-border: #26262d;
  --color-on-primary: #15110a; /* Dark text to sit on gold */

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.4);
  --shadow-md: 0 4px 10px -2px rgb(0 0 0 / 0.55);
  --shadow-lg: 0 12px 24px -6px rgb(0 0 0 / 0.65);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --transition: all 0.3s ease;
  
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

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

a:hover {
  color: var(--color-primary-dark);
}

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

ul {
  list-style: none;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-bg {
  background-color: var(--color-surface);
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-on-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--color-surface);
  color: var(--color-text);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.25);
}

.form-alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.form-alert.success { background-color: #d1fae5; color: #065f46; }
.form-alert.error { background-color: #fee2e2; color: #991b1b; }

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   HEADER & FOOTER
   ========================================= */
.site-header {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  font-family: "Hoshiko Satsuki", var(--font-heading), serif;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: normal;
  color: var(--color-text);
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

.site-nav {
  display: none;
}
.site-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--color-border);
  gap: 1.5rem;
  z-index: 999;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
  .site-nav { display: flex; gap: 2rem; }
  .site-nav.open { position: static; flex-direction: row; padding: 0; box-shadow: none; border: none; }
}

.site-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--color-primary);
}

.header-contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-surface);
  border-radius: 50%;
  color: var(--color-text);
}
.header-contact a:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.header-contact svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  background-color: #060608;
  color: #f3f4f6;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-col h3 {
  color: #fff;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}
.footer-col p { color: #9ca3af; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #9ca3af; }
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* =========================================
   PAGE HEROES
   ========================================= */
.page-hero {
  position: relative;
  background-color: var(--color-surface);
  padding: 6rem 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-hero.has-bg {
  background-size: cover;
  background-position: center;
  color: #fff;
  border-bottom: none;
}
.page-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* Dark overlay to make text pop */
}
.page-hero.has-bg .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-hero.has-bg h1 {
  color: #fff;
}
.page-hero p {
  color: var(--color-text-light);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero.has-bg p {
  color: #e5e7eb;
}

/* Home Hero (Image Background) */
.home-hero {
  position: relative;
  height: calc(100vh - 80px); /* Fill most of the screen below the header */
  min-height: 500px;
  max-height: 900px; /* Prevent it from being too massive on huge screens */
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* Dark overlay to make text pop */
}
.home-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.home-hero h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.home-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #e5e7eb;
}

/* =========================================
   CARDS (MASSEUSES)
   ========================================= */
.masseuse-card {
  position: relative;
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  color: var(--color-text);
}
.masseuse-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.masseuse-card-img {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.masseuse-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.masseuse-card:hover .masseuse-card-img img {
  transform: scale(1.05);
}

/* Availability Ribbon */
.ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.masseuse-card-info {
  padding: 1.5rem;
  text-align: center;
}
.masseuse-card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.masseuse-card-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* =========================================
   CARDS (SERVICES)
   ========================================= */
.service-card {
  display: block;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
  color: var(--color-text);
}
.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: 50%;
  color: var(--color-primary);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* =========================================
   CARDS (BLOG)
   ========================================= */
.blog-card {
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-info {
  padding: 1.5rem;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.blog-card-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.blog-card-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* =========================================
   MASSEUSE PROFILE PAGE
   ========================================= */
.profile-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: 2rem 0;
  scrollbar-width: none; /* Firefox */
}
.profile-gallery::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.profile-gallery img {
  scroll-snap-align: center;
  height: 60vh;
  min-height: 400px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex: 0 0 auto;
}

.profile-header {
  text-align: center;
  margin-bottom: 3rem;
}
.profile-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.profile-header p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.stat-box {
  background: var(--color-surface);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--color-border);
}
.stat-box span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 1px;
}
.stat-box strong {
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

/* Accordions */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: var(--color-surface);
}
.accordion summary {
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}
.accordion[open] summary::after {
  transform: rotate(45deg);
}
.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-light);
}

/* =========================================
   LOCATIONS SINGLE
   ========================================= */
.location-map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

/* =========================================
   RICH TEXT CONTENT
   ========================================= */
.rich-text h2, .rich-text h3 {
  margin-top: 2rem;
}
.rich-text p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}
.rich-text ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}
.rich-text ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* =========================================
   PROFILE UPGRADE (TWO-COLUMN ASYMMETRICAL)
   ========================================= */
.profile-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .profile-grid-layout {
    grid-template-columns: 5fr 4fr;
    align-items: start;
  }
}

/* Card Stack (Left Column) */
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.card-stack img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* Sticky Info Sidebar (Right Column) */
@media (min-width: 992px) {
  .profile-info-sidebar {
    position: sticky;
    top: 100px; /* Offset for header */
  }
}

.profile-title-area {
  margin-bottom: 2rem;
}
.profile-title-area h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.status-badge {
  background-color: #10b981; /* Emerald green for available */
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  vertical-align: middle;
}

/* Quick Action Buttons */
.profile-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.btn-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  min-width: 120px;
}
.btn-call {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
}
.btn-call:hover { background-color: var(--color-primary-dark); color: var(--color-on-primary); }

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background-color: #1DA851; color: #fff; }

.btn-email {
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-email:hover { background-color: var(--color-surface-hover); border-color: var(--color-text-light); }

/* Compact Stats List */
.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stats-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-border);
}
.stats-list li:last-child {
  border-bottom: none;
}
.stats-list .stat-label {
  font-weight: 600;
  color: var(--color-text);
}
.stats-list .stat-val {
  color: var(--color-text-light);
}

/* Rates Table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.rates-table th, .rates-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.rates-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  background-color: var(--color-surface);
}
.rates-table th:first-child, .rates-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.rates-table tr:last-child td {
  border-bottom: none;
}
.price-val {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

/* =========================================
   HEADER LOGO IMAGE + NAV DROPDOWNS (replica)
   ========================================= */
.site-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.has-dropdown > .nav-link::after {
  content: '▾';
  font-size: 0.7em;
  margin-left: 0.35rem;
  opacity: 0.8;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  z-index: 1001;
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
}
.nav-dropdown a:hover {
  color: var(--color-primary);
  background: var(--color-surface-hover);
}

@media (min-width: 1024px) {
  .nav-item.has-dropdown:hover .nav-dropdown { display: block; }
}

/* Mobile: dropdowns expand inline inside the open menu */
@media (max-width: 1023px) {
  .nav-item.has-dropdown { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dropdown {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0.5rem 0 0.5rem 1rem;
    min-width: 0;
  }
  .nav-dropdown a { padding: 0.4rem 0; }
}

/* 4-column footer to match the live site */
@media (min-width: 768px) {
  .footer-grid-4 { grid-template-columns: 1.4fr 1fr 1.7fr 1fr; }
}
.site-footer .footer-col a { color: #9ca3af; }
.site-footer .footer-col a:hover { color: var(--color-primary); }
.site-footer .footer-col p { color: #9ca3af; }

/* =========================================
   BLOG POST PAGE (layout + compact related posts)
   ========================================= */
.post-hero {
  padding: 4rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.post-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0.75rem auto 1rem;
}
.blog-category {
  display: inline-block;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 600;
}
.post-meta { color: var(--color-text-light); font-size: 0.9rem; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 992px) {
  .post-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}
.post-content { min-width: 0; }
.post-content img { border-radius: var(--radius-md); }
.post-content h2, .post-content h3 { margin-top: 2rem; }
.post-content p { margin-bottom: 1rem; color: var(--color-text-light); }

@media (min-width: 992px) {
  .post-sidebar { position: sticky; top: 100px; }
}
.sidebar-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-widget h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }

.related-posts { list-style: none; padding: 0; margin: 0; }
.related-posts li {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.related-posts li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.related-thumb { flex: 0 0 64px; line-height: 0; }
.related-posts img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.related-meta { min-width: 0; }
.related-posts a {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}
.related-posts a:hover { color: var(--color-primary); }
.related-posts time { font-size: 0.75rem; color: var(--color-text-light); }

/* =========================================
   BLOG AUTHOR / E-E-A-T BOX
   ========================================= */
.post-author {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.post-author-img {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--color-surface-hover);
  padding: 10px;
}
.post-author-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}
.post-author-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-heading);
  margin-bottom: 0.4rem;
}
.post-author-bio { color: var(--color-text-light); font-size: 0.92rem; margin: 0; line-height: 1.6; }
@media (max-width: 560px) { .post-author { flex-direction: column; text-align: center; } }
