/* ==========================================================================
   V5 Page Types — Dark Luxury Dental Spa Aesthetic
   Category hub, location, doctor, about, gallery, testimonials,
   blog, new patients, contact/schedule
   ========================================================================== */

/* --- Category Hub --- */
.hub-services-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
}
.hub-services-grid.asymmetric {
  grid-template-columns: 1fr 1fr;
}
.hub-services-grid .featured-service {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--t4);
  border-radius: var(--radius);
  overflow: hidden;
}
.hub-services-grid .featured-service img {
  width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 3/2;
}
.hub-services-grid .featured-service .service-content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--t1);
}
@media (max-width: 767px) {
  .hub-services-grid.asymmetric { grid-template-columns: 1fr }
  .hub-services-grid .featured-service { grid-template-columns: 1fr }
}

/* --- Location Page --- */
.location-hero {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4rem);
  text-align: center;
  color: var(--t1);
}
.location-hero h1 { color: var(--t1) }
.location-hero .eyebrow { margin-bottom: 20px }

.location-map-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.location-map-split iframe {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid var(--t4);
}
.location-meta {
  background: var(--bg2);
  border: 1px solid var(--t4);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.location-meta h3 { margin-top: 0; color: var(--t1) }
.location-meta p { color: var(--t2) }
@media (max-width: 767px) {
  .location-map-split { grid-template-columns: 1fr }
}

/* --- Doctor Page Hero (split) --- */
.doctor-hero {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4rem);
}
.doctor-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.doctor-hero-portrait {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg2);
}
.doctor-hero-portrait video,
.doctor-hero-portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.doctor-hero-text { color: var(--t1) }
.doctor-hero-text h1 { color: var(--t1) }
.doctor-hero-text .eyebrow { display: block; margin-bottom: 16px }
.doctor-hero-text p { color: var(--t2) }
@media (max-width: 767px) {
  .doctor-hero-inner { grid-template-columns: 1fr }
  .doctor-hero-portrait { max-width: 400px; margin: 0 auto }
}

/* --- About Page Team Hero (full bleed) --- */
.about-team-hero {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.about-team-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(6,13,20,.85) 100%);
}
.about-team-hero h1 {
  position: relative; z-index: 2;
  color: var(--t1);
  padding: clamp(2rem, 4vw, 4rem);
  max-width: 1400px;
  margin: 0 auto; width: 100%;
}

/* --- Gallery Filter Bar --- */
.gallery-filters {
  display: flex;
  gap: 8px; flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--t4);
  background: transparent;
  font-family: 'Poppins', 'Poppins-fallback', sans-serif;
  font-weight: 500;
  font-size: .875rem;
  cursor: pointer;
  transition: all .2s var(--e);
  color: var(--t2);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
}

/* --- Gallery Masonry --- */
.gallery-masonry {
  columns: 2;
  column-gap: clamp(1rem, 2vw, 1.5rem);
}
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--t4);
}
@media (max-width: 767px) { .gallery-masonry { columns: 1 } }

/* --- Testimonials / Reviews --- */
.review-grid {
  columns: 2;
  column-gap: clamp(1rem, 2vw, 1.5rem);
}
.review-card {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg2);
  border: 1px solid var(--t4);
  border-radius: var(--radius);
  transition: all .3s var(--e);
}
.review-card:hover {
  background: var(--bg3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.review-card blockquote {
  font-size: 1rem; margin: 0 0 12px;
  line-height: 1.6; color: var(--t2);
}
.review-card cite {
  font-style: normal; font-weight: 600;
  color: var(--t1);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem; letter-spacing: 2px;
}
@media (max-width: 767px) { .review-grid { columns: 1 } }

/* --- Blog Index --- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.blog-featured img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  object-fit: cover;
  border: 1px solid var(--t4);
}
.blog-zigzag {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.blog-zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.blog-zigzag-item:nth-child(even) { direction: rtl }
.blog-zigzag-item:nth-child(even) > * { direction: ltr }
.blog-zigzag-item img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  object-fit: cover;
  border: 1px solid var(--t4);
}
.blog-zigzag-item h3 { color: var(--t1) }
.blog-zigzag-item p { color: var(--t2) }
@media (max-width: 767px) {
  .blog-featured { grid-template-columns: 1fr }
  .blog-zigzag-item { grid-template-columns: 1fr }
  .blog-zigzag-item:nth-child(even) { direction: ltr }
}

/* --- New Patients Steps --- */
.steps-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}
.step-visual-item {
  padding: clamp(1rem, 2vw, 1.5rem);
}
.step-visual-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', 'Fraunces-fallback', serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}
.step-visual-item h4 {
  font-family: 'Poppins', 'Poppins-fallback', sans-serif;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--t1);
}
.step-visual-item p { color: var(--t2) }
@media (max-width: 767px) { .steps-visual { grid-template-columns: 1fr 1fr } }
@media (max-width: 480px) { .steps-visual { grid-template-columns: 1fr } }

/* --- Insurance Logos --- */
.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  justify-content: center;
}
.insurance-logos img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1) opacity(.4);
  transition: filter .3s var(--e);
}
.insurance-logos img:hover {
  filter: brightness(0) invert(1) opacity(.85);
}

/* --- Schedule/Contact Forms --- */
.schedule-form,
.contact-form {
  max-width: 760px;
  margin: 0 auto;
}
.form-field { margin-bottom: 24px }
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: .9375rem;
  color: var(--t2);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--t4);
  border-radius: 12px;
  font-family: 'Poppins', 'Poppins-fallback', sans-serif;
  font-size: 1rem;
  color: var(--t1);
  transition: border-color .2s var(--e), box-shadow .2s var(--e);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px var(--skyG);
  outline: none;
}
.form-field textarea { min-height: 120px; resize: vertical }

/* --- Contact Split Layout --- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}
.contact-info-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--bg2);
  border: 1px solid var(--t4);
  border-radius: var(--radius);
}
.contact-info-card h3 { color: var(--t1) }
.contact-info-card p { color: var(--t2) }
@media (max-width: 767px) { .contact-split { grid-template-columns: 1fr } }

/* --- Pullquote --- */
.pullquote blockquote { color: var(--t1) }
.pullquote cite { color: var(--t2) }
.accent-rule {
  background: var(--gold);
  height: 1px; border: 0;
}

/* --- Section Transition --- */
.section-transition {
  height: 64px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

/* ==========================================================================
   VISUAL RICHNESS — Alternating section backgrounds & polish
   ========================================================================== */

/* Alternating sections on inner pages */
.section:nth-of-type(even) {
  background: var(--bg2);
}
.section:nth-of-type(odd) {
  background: var(--bg);
}

/* Inner section wrapper constraint */
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Dark-bg sections get extra visual interest */
.dark-bg {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}
.dark-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, var(--skyG) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, var(--goldG) 0%, transparent 40%);
  pointer-events: none;
}

/* Pullquote — dramatic centered quote */
.pullquote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 48px);
  position: relative;
}
.pullquote blockquote {
  font-family: 'Fraunces', 'Fraunces-fallback', serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(1.3rem, 1rem + 1.5vw, 2rem);
  line-height: 1.4;
  color: var(--t1);
  margin: 0 0 24px;
}
.pullquote figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pullquote cite {
  font-style: normal;
  font-weight: 600;
  font-size: .85rem;
  color: var(--t1);
}
.accent-rule {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--goldL));
  border: 0;
  margin: 0;
}

/* Card-service for inner pages (doctor specialties, etc.) */
.card-service {
  background: var(--bg2);
  border: 1px solid var(--t4);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  transition: all .35s var(--e);
  position: relative;
  overflow: hidden;
}
.card-service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  transform: scaleX(0);
  transition: transform .5s var(--e);
}
.card-service:hover {
  background: var(--bg3);
  transform: translateY(-3px);
  border-color: rgba(0,147,211,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.card-service:hover::before { transform: scaleX(1) }
.card-service h3 {
  font-family: 'Poppins', 'Poppins-fallback', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--t1);
}
.card-service p {
  font-size: .78rem;
  color: var(--t2);
}

/* Google Maps dark mode treatment */
.location-map-split iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
  border: 1px solid var(--t4);
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: .7rem;
  color: var(--t3);
  margin-bottom: 16px;
  font-weight: 400;
}
.breadcrumbs a {
  color: var(--skyL);
  transition: color .25s;
}
.breadcrumbs a:hover { color: #fff }

/* Image hover scale effect */
.image-hover-scale {
  overflow: hidden;
  border-radius: var(--radius);
}
.image-hover-scale img {
  transition: transform 1s var(--e);
}
.image-hover-scale:hover img {
  transform: scale(1.04);
}

/* Section with glow background */
.section-glow {
  position: relative;
  overflow: hidden;
}
.section-glow::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 28% 50%, var(--skyG) 0%, transparent 45%),
    radial-gradient(ellipse at 72% 50%, var(--goldG) 0%, transparent 40%);
  pointer-events: none;
}

/* ==========================================================================
   FINAL POLISH — Consistent section heading spacing
   ========================================================================== */

/* Ensure h2 followed by content has breathing room */
.section h2 {
  margin-bottom: clamp(24px, 4vw, 40px);
}
.section h2 + .eyebrow { margin-top: -36px }
.eyebrow + h2 { margin-top: 0 }

/* Section inner max-width consistency */
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Consistent card-service hover on all pages */
.card-service a {
  color: inherit;
  text-decoration: none;
}

/* Doctor page hero portrait has nice inset glow when image loads */
.doctor-hero-portrait img {
  border: 1px solid var(--t4);
}

/* Location hero eyebrow spacing */
.location-hero .eyebrow {
  margin-bottom: 20px;
}
.location-hero p {
  max-width: 55ch;
  margin: 16px auto 32px;
  color: var(--t2);
}

/* Consistent CTA button spacing within hero sections */
.service-hero-ctas,
.doctor-hero-text [style*="margin-top"],
.location-hero .btn-primary {
  margin-top: 32px;
}

/* Full-bleed visual break transition */
.visual-break + .section {
  padding-top: clamp(60px, 10vw, 120px);
}

/* ==========================================================================
   CINEMATIC LOCATION HERO — with background image
   ========================================================================== */

.location-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
.location-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6,13,20,.55) 0%,
      rgba(6,13,20,.35) 30%,
      rgba(6,13,20,.65) 70%,
      var(--bg) 100%),
    radial-gradient(ellipse at 10% 90%, var(--skyG) 0%, transparent 50%);
}
.location-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 64px);
}
.location-hero h1 {
  color: var(--t1);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.location-hero .eyebrow {
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.location-hero p {
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.location-hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Office photo gallery strip on location pages */
.office-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}
.office-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--t4);
  aspect-ratio: 4/3;
  position: relative;
}
.office-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--e);
}
.office-gallery-item:hover img {
  transform: scale(1.05);
}
.office-gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(6,13,20,.85));
  font-size: .68rem;
  color: var(--t2);
  font-weight: 500;
}
@media (max-width: 767px) {
  .office-gallery { grid-template-columns: 1fr }
}

/* ============================================================
   BEFORE / AFTER SLIDER — Global (used on gallery + service pages)
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ba-slider {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--t4);
  transition: transform .35s var(--e), box-shadow .35s;
}
.ba-slider:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}

.ba-compare {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-compare img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-compare .ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--sky);
  transform: translateX(-50%);
  z-index: 5;
  transition: left .05s linear;
  pointer-events: none;
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 2px 12px rgba(0,147,211,.4);
}

.ba-handle::after {
  content: '\2194';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  z-index: 6;
  line-height: 1;
}

.ba-badge {
  position: absolute;
  top: 10px;
  font-size: .42rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(6,13,20,.85);
  color: var(--t2);
  backdrop-filter: blur(6px);
  z-index: 4;
  pointer-events: none;
}
.ba-badge.before { left: 10px }
.ba-badge.after { right: 10px }

.ba-slider > p {
  padding: 10px 14px;
  font-size: .64rem;
  color: var(--t2);
}

/* Gallery page: featured first slider spans full width */

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr !important }
}

.ba-slider.revealed,

/* Blog post listing */
.blog .site-main article.post,
.blog .site-main article.type-post {
  background: var(--bg2);
  border: 1px solid var(--t4);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
  transition: all .3s var(--e);
}
.blog .site-main article.post:hover {
  background: var(--bg3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.blog .site-main .entry-title {
  font-family: 'Fraunces', 'Fraunces-fallback', serif;
  font-weight: 300;
  font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem);
  line-height: 1.2;
  margin-bottom: 8px;
}
.blog .site-main .entry-title a {
  color: var(--t1);
  text-decoration: none;
  transition: color .25s;
}
.blog .site-main .entry-title a:hover {
  color: var(--skyL);
}
.blog .site-main .entry-content,
.blog .site-main .entry-summary {
  color: var(--t2);
  font-size: .86rem;
  line-height: 1.85;
}
.blog .site-main .entry-meta,
.blog .site-main .post-categories,
.blog .site-main .cat-links,
.blog .site-main .tags-links,
.blog .site-main .posted-on {
  font-size: .7rem;
  color: var(--t3);
  letter-spacing: .05em;
}
.blog .site-main .entry-meta a {
  color: var(--sky);
}
.blog .site-main .read-more,
.blog .site-main .more-link {
  color: var(--sky);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: color .25s;
}
.blog .site-main .read-more:hover,
.blog .site-main .more-link:hover {
  color: var(--skyL);
}

/* Blog pagination */
.blog .site-main .pagination,
.blog .site-main .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.blog .site-main .nav-links a,
.blog .site-main .nav-links span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--t4);
  color: var(--t2);
  font-size: .75rem;
  text-decoration: none;
  transition: all .25s;
}
.blog .site-main .nav-links a:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
}
.blog .site-main .nav-links .current {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
}

/* Blog content area max-width */
.blog .site-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
}

/* Hide "Categories: Uncategorized" spam */
.blog .site-main .cat-links:only-child {
  display: none;
}

/* Blog: override GP aggressive resets */
body.blog .site-main {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 clamp(16px, 4vw, 64px) !important;
}
body.blog .inside-article {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
body.blog .separate-containers .inside-article {
  padding: 0 !important;
}

/* Blog: style GP article wrappers */
body.blog .site-main > article {
  background: var(--bg2) !important;
  border: 1px solid var(--t4) !important;
  border-radius: var(--radius) !important;
  padding: clamp(24px, 3vw, 36px) !important;
  margin-bottom: 20px !important;
  transition: all .3s var(--e);
}
body.blog .site-main > article:hover {
  background: var(--bg3) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15) !important;
}

/* Blog: hide entry-header (title hidden by GP) — show entry-title from entry-meta */
body.blog .entry-header .entry-meta {
  margin-bottom: 8px;
}

/* Blog: hide byline "by admin" */
body.blog .byline {
  display: none;
}

/* Blog: style the entry-title (GP uses h2 in listings) */
body.blog .entry-header h2,
body.blog .entry-header h2 a {
  font-family: 'Fraunces', 'Fraunces-fallback', serif;
  font-weight: 300;
  font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem);
  line-height: 1.2;
  color: var(--t1);
  text-decoration: none;
  transition: color .25s;
}
body.blog .entry-header h2 a:hover {
  color: var(--skyL);
}

/* Blog hero padding */
body.blog .service-hero {
  padding-top: clamp(2rem, 4vw, 3rem);
}
