/* ============================================================
   pages.css — components added for the client build
   (loads after main.css, so it can lean on the same tokens)
     1. CONFIRM markers
     2. Breadcrumb
     3. Card grid additions
     4. Post / service detail layout
     5. Table of contents
     6. Hours card & asides
     7. Contact page
     8. CTA band
     9. Footer additions
    10. RTL + responsive
   ============================================================ */

/* ---------- 1. CONFIRM markers ---------- */
/* Facts the old site contradicted itself on. Deliberately loud — these must be
   impossible to miss in the browser, and must never ship to production. */
.confirm {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, #ffe9a8, #ffe9a8 8px, #ffdf85 8px, #ffdf85 16px);
  border: 1px dashed #b8860b;
  color: #7a5a00;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .82em;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: help;
}

.confirm-block {
  border: 1px dashed #b8860b;
  border-inline-start: 4px solid var(--gold);
  background: #fffbef;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin-block: 24px;
}
.confirm-block--lg { padding: 28px 32px; }
.confirm-block h2 { margin-top: 0; color: #7a5a00; }
.confirm-note {
  margin: 10px 0 0;
  font-size: var(--fs-small);
  color: #7a5a00;
  line-height: var(--lh-loose);
}
.creds-note { margin-block: 14px; }

/* ---------- 2. Breadcrumb ---------- */
.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-small);
  padding-block: 12px;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--teal); font-weight: 600; }

/* ---------- 3. Cards ---------- */
.cards { gap: 32px 28px; }
.card { padding: 0 0 28px; text-align: start; }
.card__media { display: block; aspect-ratio: 16 / 9; margin-bottom: 18px; }
.card h3 { font-size: 20px; margin-bottom: .4em; }
.card h3 a { color: var(--teal); }
.card h3 a:hover { color: var(--gold); }
.card p { color: var(--slate); text-align: start; }
.card__date {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: .4px;
}
.link-more { color: var(--gold); font-weight: 600; font-size: var(--fs-small); }
.link-more:hover { text-decoration: underline; }
.center { text-align: center; margin-top: 40px; }

/* ---------- 4. Post / service detail ---------- */
.post-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--teal);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.post-hero__overlay { position: absolute; inset: 0; background: rgba(17, 65, 75, .68); }
.post-hero__inner { position: relative; z-index: 2; padding-block: 56px; }
.post-hero h1 { color: var(--white); font-size: var(--fs-h2); margin: 0; }
.post-date { color: rgba(255,255,255,.85); font-size: var(--fs-small); margin: 10px 0 0; }

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}
.post-body { min-width: 0; }
.post-body > h2 {
  font-size: 27px;
  margin-top: 1.6em;
  padding-bottom: .3em;
  border-bottom: 1px solid var(--line);
}
.post-body > h3 { font-size: 21px; margin-top: 1.4em; color: var(--gold-deep); }
.post-body > h4 { font-size: 18px; margin-top: 1.2em; }
.post-body p { line-height: var(--lh-loose); color: #3d4f56; }
.post-body .lede { font-size: var(--fs-lead); color: var(--teal); }
.post-body ul { line-height: var(--lh-loose); color: #3d4f56; padding-inline-start: 1.3em; }
.post-body li { margin-bottom: .5em; }
.post-body strong { color: var(--teal); }
.post-cta { margin-top: 40px; text-align: center; }

/* ---------- 5. Table of contents ---------- */
.toc {
  background: var(--paper);
  border-inline-start: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  margin-bottom: 32px;
}
.toc h2 { font-size: 18px; margin: 0 0 .6em; border: 0; padding: 0; }
.toc ol { margin: 0; padding-inline-start: 1.2em; }
.toc li { margin-bottom: .35em; }
.toc a { color: var(--slate); font-size: var(--fs-small); }
.toc a:hover { color: var(--gold); text-decoration: underline; }

/* ---------- 6. Hours card / aside ---------- */
.post-aside { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: 24px; }
.hours-card {
  background: var(--teal);
  color: var(--white);
  padding: 26px 24px;
  border-radius: var(--radius-sm);
}
.hours-card h3 { color: var(--white); font-size: 19px; margin-bottom: .4em; }
.hours-card p { margin: 0 0 14px; font-size: var(--fs-small); }
.hours-card p:last-child { margin-bottom: 0; }
.btn--dark { border-color: rgba(255,255,255,.6); }

.aside-nav {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.aside-nav h3 { font-size: 18px; margin-bottom: .5em; }
.aside-nav ul { list-style: none; margin: 0; padding: 0; }
.aside-nav li { border-bottom: 1px solid var(--line); }
.aside-nav li:last-child { border-bottom: 0; }
.aside-nav a { display: block; padding: 9px 0; font-size: var(--fs-small); color: var(--slate); }
.aside-nav a:hover { color: var(--gold); }

.split-lite { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 48px; align-items: center; }
.hero__lede { font-size: var(--fs-lead); margin-bottom: 1.4em; opacity: .95; }

/* ---------- 7. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 64px; }
.contact-grid h2 { font-size: var(--fs-h2); margin-bottom: .7em; }
.map-slot {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--slate);
  margin-bottom: 24px;
}
.map-slot p { margin: 0; font-size: var(--fs-small); }

/* ---------- 8. CTA band ---------- */
.cta-strip--band {
  background: var(--gold);
  color: var(--white);
  gap: 40px;
  padding-block: 52px;
}
.cta-strip--band h2 { color: var(--white); font-size: 30px; margin: 0 0 .2em; }
.cta-strip--band p { color: rgba(255,255,255,.92); font-size: var(--fs-body); margin: 0; }
.cta-strip--band .btn {
  background: var(--white);
  color: var(--gold-deep);
}
.cta-strip--band .btn:hover { background: var(--teal); color: var(--white); }

/* ---------- 9. Footer ---------- */
.site-footer__inner { grid-template-columns: 1fr 1.4fr auto; }
.footer-contact p { margin: 0 0 8px; font-size: var(--fs-small); color: var(--slate); }
.footer-contact strong { color: var(--teal); }
.footer-legal a { color: var(--gold); }
.footer-legal a:hover { text-decoration: underline; }

/* ---------- 10. RTL + responsive ---------- */
[dir="rtl"] .toc { border-inline-start: 0; border-inline-end: 3px solid var(--gold); }
[dir="rtl"] .confirm-block { border-inline-start: 1px dashed #b8860b; border-inline-end: 4px solid var(--gold); }

@media (max-width: 1000px) {
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-aside { position: static; grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-lite { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .post-aside { grid-template-columns: 1fr; }
  .cta-strip--band { text-align: center; }
  .post-hero { min-height: 220px; }
}

/* ---------- address rendering ---------- */
.addr { display: block; }
.addr-orig {
  display: block;
  margin-top: 6px;
  font-size: .92em;
  color: var(--slate);
  opacity: .9;
}
.info-card .addr { line-height: var(--lh-loose); }

/* ---------- map embed ---------- */
.map-wrap { margin-bottom: 24px; }
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--paper);
}
.map-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--slate);
}
.map-note a { color: var(--gold); font-weight: 600; }
.map-note a:hover { text-decoration: underline; }

/* ---------- doctor credentials & portrait ---------- */
.creds-h { font-size: 18px; margin: 1.2em 0 .5em; color: var(--teal); }
ul.creds { list-style: none; margin: 0 0 1.4em; padding: 0; }
ul.creds li {
  position: relative;
  padding-inline-start: 22px;
  margin-bottom: .45em;
  font-size: var(--fs-small);
  line-height: var(--lh-loose);
  color: #3d4f56;
}
ul.creds li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.doctor-intro { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 32px; align-items: start; margin-bottom: 8px; }
.doctor-portrait { width: 100%; border-radius: var(--radius-sm); object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 700px) {
  .doctor-intro { grid-template-columns: 1fr; gap: 20px; }
  .doctor-portrait { max-width: 320px; }
}

/* ---------- home: doctor block ---------- */
.doctor-block {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.doctor-photo {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  object-position: 50% 12%;
  box-shadow: var(--shadow-card);
}
.doctor-block h2 { margin-top: 0; }
@media (max-width: 900px) {
  .doctor-block { grid-template-columns: 1fr; gap: 28px; }
}

/* clinic logo: horizontal lockup, emblem + wordmark */
.nav-logo img { width: auto; height: auto; max-height: 54px; max-width: 240px; }
.mobile-logo img { width: auto; height: auto; max-height: 40px; max-width: 180px; }
@media (max-width: 1240px) { .nav-logo img { max-height: 46px; max-width: 200px; } }

/* ---------- about page: full-width brand banner ---------- */
.doctor-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

/* about page has no sidebar - let the body use the full column */
.post-layout--single { grid-template-columns: minmax(0, 1fr); justify-items: center; }
.post-layout--single .post-body {
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
}

/* ============================================================
   Home 2 - alternative hero: video kept at its native 9:16
   ============================================================ */
.hero2 {
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  padding-block: clamp(40px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}
.hero2__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: center;
}
.hero2__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  color: var(--gold-deep);
  margin-bottom: .3em;
}
.hero2__title {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.08;
  margin: 0 0 .35em;
  color: var(--teal);
}
.hero2__lede {
  font-size: var(--fs-lead);
  color: var(--slate);
  margin-bottom: 1.6em;
  max-width: 34ch;
}
.hero2__media { margin: 0; }
.hero2__media video {
  display: block;
  width: auto;
  height: clamp(360px, 52vw, 560px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: var(--dark-band);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(17, 65, 75, .22);
}
.hero2__media figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--slate);
}
.btn--outline {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--white); box-shadow: none; }
.banner-section .doctor-banner { margin-bottom: 0; }

@media (max-width: 900px) {
  .hero2__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero2__lede { max-width: none; }
  .hero2 .hero__actions { justify-content: center; }
  .hero2__media video { height: clamp(320px, 78vw, 460px); }
}

/* banner sits in the hero's left column, under the buttons */
.hero2__banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.hero2__banner-wrap { position: relative; display: block; }
@media (max-width: 900px) {
  .hero2__banner-wrap { max-width: 560px; margin-inline: auto; }
}


/* ============================================================
   Home - reception + Google rating
   Real photo of the clinic's own reception, the clinic's real
   Google score, and three real patient reviews.
   ============================================================ */
.reception__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.reception__media {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.reception__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 26px 60px rgba(17, 65, 75, .22);
}
/* thin gold frame offset behind the photo */
.reception__media::before {
  content: "";
  position: absolute;
  inset-block-start: 20px;
  inset-block-end: -20px;
  inset-inline-start: 20px;
  inset-inline-end: -20px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  z-index: -1;
}

/* score badge sitting on the photo */
.reception__badge {
  position: absolute;
  inset-inline-start: 20px;
  inset-block-start: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  background: rgba(20, 18, 14, .74);
  border: 1px solid rgba(205, 193, 104, .45);
  backdrop-filter: blur(6px);
  color: #fff;
}
.reception__badge .rv-score, .rating-row__score, .reception__score {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--gold-soft);
}
.reception__badge p {
  margin: 3px 0 0;
  font-size: 12px;
  letter-spacing: .03em;
  opacity: .85;
}

/* star rows */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; fill: var(--gold-light); }

.reception__eyebrow {
  display: block;
  font-size: var(--fs-small);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.reception .section-head p { line-height: var(--lh-loose); }
.reception__cta { margin: 36px 0 0; }

.reviews {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  box-shadow: var(--shadow-card);
}
.review .stars { margin-bottom: 7px; }
.review .stars svg { width: 13px; height: 13px; fill: var(--gold); }
.review p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink); }
.review footer { margin-top: 8px; font-size: 13px; color: var(--slate); }
.review__note { font-style: italic; opacity: .75; }

@media (max-width: 980px) {
  .reception__inner { grid-template-columns: 1fr; gap: 46px; }
  .reception__media::before { inset-block-end: -18px; inset-inline-end: -18px; }
}
@media (max-width: 560px) {
  .reception__media::before { display: none; }   /* offset frame is fussy at this width */
  .reception__badge { inset-inline-start: 12px; inset-block-start: 12px; padding: 9px 14px; }
  .reception__badge .rv-score, .rating-row__score, .reception__score { font-size: 25px; }
}

/* ---------- reviews carousel ---------- */
.rv { position: relative; }
.rv__track { position: relative; }
/* no JS: every slide just stacks, so the reviews are all still readable */
.rv--ready .rv__slide {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease;
}
.rv--ready .rv__slide.is-active { opacity: 1; visibility: visible; }
.rv--ready .rv__slide:not(.is-active) { pointer-events: none; }
.rv__slide + .rv__slide { margin-top: 12px; }
.rv--ready .rv__slide + .rv__slide { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .rv--ready .rv__slide { transition: none; }
}

/* ============================================================
   Home 3 - reception photo and clip stacked, matched to one width
   ============================================================ */
.hero3 {
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  padding-block: clamp(40px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}
.hero3__stack {
  position: relative;
  margin: 0 auto;
  width: min(900px, 100%);
}
.hero3__stack + .hero3__stack { margin-top: 30px; }
.hero3__shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(17, 65, 75, .22);
}
.hero3__video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  background: var(--dark-band);
  box-shadow: 0 18px 44px rgba(17, 65, 75, .22);
}
.hero3__video figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--slate);
}

/* ---------- patient video reviews ----------
   The two clips are different shapes (one portrait, one landscape). Rather than
   crop either or box both in black, they share a HEIGHT and take whatever width
   their own aspect needs - so the row lines up and nothing is lost.            */
.vrev__h {
  text-align: center;
  font-size: var(--fs-h3, 22px);
  color: var(--teal);
  margin: 52px 0 22px;
}
.vrev {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}
.vrev figure { margin: 0; }
.vrev video {
  display: block;
  height: clamp(300px, 33vw, 440px);
  width: auto;
  max-width: 100%;
  border-radius: 14px;
  background: var(--dark-band);
  box-shadow: 0 18px 44px rgba(17, 65, 75, .22);
}
.vrev figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--slate);
}
@media (max-width: 760px) {
  .vrev video { height: auto; width: 100%; }
  .vrev figure { flex: 1 1 100%; }
}

/* ============================================================
   Videos page - 9:16 cards, click to play in a lightbox
   ============================================================ */
.vgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 1100px) { .vgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px)  { .vgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }

.vcard { margin: 0; }
.vcard__media {
  all: unset;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #17150f;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.vcard__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.vcard__media:hover img, .vcard__media:focus-visible img { transform: scale(1.05); }
.vcard__play {
  position: absolute;
  inset-block-start: 50%; inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; opacity: .92;
  transition: transform .25s var(--ease), opacity .25s;
}
.vcard__play circle { fill: rgba(20,18,14,.55); stroke: rgba(205,193,104,.8); stroke-width: 2; }
.vcard__play path   { fill: #f0e2b4; }
.vcard__media:hover .vcard__play { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
.vcard__media:hover .vcard__play circle { fill: var(--gold-deep); stroke: var(--gold-light); }
.vcard__time {
  position: absolute;
  inset-block-end: 10px; inset-inline-end: 10px;
  background: rgba(20,18,14,.72); color: #fff;
  font-size: 11.5px; letter-spacing: .03em;
  padding: 2px 8px; border-radius: 4px;
}
.vcard figcaption { margin-top: 14px; }
.vcard h3 {
  font-family: var(--font-display);
  font-size: 16px; line-height: 1.35;
  color: var(--ink); margin: 0 0 5px;
}

/* lightbox */
.vlb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,11,9,.9);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.vlb[hidden] { display: none; }
.vlb__inner { max-width: min(420px, 92vw); width: 100%; text-align: center; }
.vlb video {
  width: 100%; aspect-ratio: 9 / 16;
  border-radius: 14px; background: #000;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.vlb__title { color: #f2ece0; font-family: var(--font-display); font-size: 17px; margin: 16px 0 0; }
.vlb__close {
  position: absolute; top: 18px; inset-inline-end: 24px;
  background: none; border: 0; color: #fff;
  font-size: 38px; line-height: 1; cursor: pointer; opacity: .75;
}
.vlb__close:hover { opacity: 1; }

/* topic filter for the videos page */
.vfilters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 34px; }
.vchip {
  font: inherit; font-size: 14px;
  padding: 8px 16px; border-radius: 40px; cursor: pointer;
  background: var(--white); border: 1px solid var(--line); color: var(--slate);
  transition: background .2s, color .2s, border-color .2s;
}
.vchip i { font-style: normal; opacity: .55; font-size: 12px; margin-inline-start: 4px; }
.vchip:hover { border-color: var(--gold); }
.vchip.is-on { background: var(--gold); border-color: var(--gold); color: var(--white); }
.vchip.is-on i { opacity: .85; }
.vcard[hidden] { display: none; }

/* ---------- mobile: bring the language switch back ----------
   main.css hides the whole .header-side cluster below 1100px, which took the
   language switch with it. On a site that is half Arabic that is a primary
   control, not a decoration - so it comes back as a compact chip in the bar,
   one tap, no menu to open first.                                            */
@media (max-width: 1100px) {
  .header-side { display: flex; flex: 0 0 auto; }
  .lang-switch {
    padding: 5px 12px;
    font-size: 13px;
    background: var(--white);
  }
  .lang-switch svg { width: 14px; height: 14px; }
}
@media (max-width: 400px) {
  .site-header__inner { padding-inline: 14px; }
  .lang-switch { padding: 5px 10px; font-size: 12px; }
  .mobile-logo img { width: 74px; }
}

/* Home 3: the eyebrow sits between the photo and the clip, labelling the clip */
.hero3__label { text-align: center; margin: 34px 0 16px; }
