/* ==========================================================================
   THE PRIVATE OFFICE — WEBSITE
   his-highness.css — page styles for the "His Highness" route only.
   Reuses the design system (tokens · base · components · site chrome);
   nothing in this file affects the homepage or the style guide.
   ========================================================================== */

/* ==========================================================================
   1 · PAGE HERO — navy band, title + official portrait frame
   ========================================================================== */
.hh-hero {
  background: var(--grad-navy);                                 /* same navy sweep as the homepage hero */
  color: var(--ivory-100);
  padding: calc(var(--header-h) + var(--space-7)) clamp(24px, 5vw, 64px) var(--space-7);
}
.hh-hero__inner {
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(32px, 4.5vw, var(--space-6));
  align-items: center;
}
.hh-hero .eyebrow { color: var(--gold-400); }                   /* muted gold, legible on navy */
.hh-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.4vw, 3.75rem);
  font-weight: var(--fw-medium);
  line-height: 1.12;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 18px 0 22px;
  text-wrap: balance;
}
.hh-hero__sub {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-ceremony);
  text-transform: uppercase;
  color: var(--gold-400);
}
.hh-hero__sub-rule {
  width: 52px;
  height: 1px;
  background: rgba(216, 187, 130, 0.65);                        /* gold-400 at rest */
}
.hh-hero__lead {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: rgba(247, 242, 232, 0.74);
  max-width: 52ch;
  margin-top: var(--space-3);
}

/* Official portrait — reused approved asset, natural ratio never cropped */
.hh-hero__frame {
  margin: 0;
  padding: 12px;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.55);                   /* royal gold hairline */
  border-radius: var(--r-md);
  box-shadow: 0 44px 88px -36px rgba(4, 12, 26, 0.65);
}
.hh-hero__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1206 / 846;                                     /* identical to the master asset */
  object-fit: cover;
  border-radius: var(--r-sm);
}

/* ==========================================================================
   Shared page rhythm — section shells, container, section heads
   ========================================================================== */
.hh-bio        { background: #FAF8F3; }                         /* warm ivory ground, as established */
.hh-leadership { background: var(--c-white); }
.hh-gallery    { background: #FAF8F3; }
.hh-related    { background: var(--c-white); }

.hh-bio, .hh-leadership, .hh-gallery, .hh-related {
  padding: var(--space-7) clamp(20px, 4vw, 64px);
}
.hh-inner { max-width: 1440px; margin-inline: auto; }

.hh-head { max-width: 720px; margin-bottom: var(--space-5); }
.hh-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.9vw, 2.625rem);
  font-weight: var(--fw-semi);
  line-height: 1.15;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin: 16px 0 12px;
  text-wrap: balance;
}
.hh-desc { font-size: var(--fs-body); line-height: 1.75; color: var(--ink-soft); }

/* Content-pending tag — Cinzel micro label with a short gold hairline */
.hh-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 16px;
}
.hh-tag::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--grad-gold-line);
}

/* ==========================================================================
   2 · BIOGRAPHY — two-column editorial grid (existing .card surface)
   ========================================================================== */
.hh-bio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);                        /* clean two-column layout */
  gap: var(--space-4);
}
.hh-ph { padding: 32px 36px; }
.hh-ph__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin-bottom: 10px;
}
.hh-ph__text { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.7; color: var(--ink-soft); }

/* ==========================================================================
   3 · PUBLIC LEADERSHIP — gold-railed timeline of reserved entries
   ========================================================================== */
.hh-tl {
  list-style: none;
  position: relative;
  max-width: 880px;
  margin: var(--space-6) 0 0;
  padding: 0 0 0 48px;
}
.hh-tl::before {                                                /* the rail */
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.55), rgba(198, 161, 91, 0.12));
}
.hh-tl__item { position: relative; }
.hh-tl__item + .hh-tl__item { margin-top: var(--space-4); }
.hh-tl__dot {
  position: absolute;
  left: -43px;                                                  /* seats the dot on the rail (10px) */
  top: 28px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.18);
}
.hh-tl__card { padding: 26px 32px; }
.hh-tl__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin-bottom: 8px;
}
.hh-tl__text { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.7; color: var(--ink-soft); }

/* ==========================================================================
   4 · GALLERY PREVIEW — dashed gold slots for future official photographs
   ========================================================================== */
.hh-gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.hh-slot {
  aspect-ratio: 4 / 3;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: var(--c-white);
  border: 1.5px dashed rgba(198, 161, 91, 0.5);
  border-radius: var(--r-md);
}
.hh-slot__icon { width: 28px; height: 28px; color: var(--gold-600); }
.hh-slot__label {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-700);
}
.hh-slot__sub { font-family: var(--font-body); font-size: var(--fs-xs); color: var(--ink-faint); }

/* ==========================================================================
   5 · RELATED LINKS — ceremonial cards (quick-access pattern, stretched link)
   ========================================================================== */
.hh-related__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.hh-related__grid > li { display: flex; }
.rel-card {
  position: relative;
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);                   /* muted gold hairline */
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform var(--dur-3) var(--ease-lux),
    box-shadow var(--dur-3) var(--ease-lux),
    border-color var(--dur-2) var(--ease-standard);
}
.rel-card:hover,
.rel-card:focus-within {                                        /* lift 4px — identical qa-card feel */
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: 0 28px 52px -22px rgba(198, 161, 91, 0.28), 0 14px 30px -16px rgba(8, 20, 38, 0.14);
}
.rel-card__icon { width: 30px; height: 30px; color: var(--gold-600); margin-bottom: 20px; }
.rel-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-semi);
  line-height: 1.18;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin-bottom: 10px;
}
.rel-card__body { font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: var(--space-3); }
.rel-card__link { margin-top: auto; }

/* Stretched link — the entire card is the hit area */
.rel-card__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.rel-card__link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }

/* ==========================================================================
   Responsive — tablet & mobile
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .hh-hero__inner { grid-template-columns: 1fr; }
  .hh-hero__frame { max-width: 620px; }
  .hh-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hh-hero {
    padding: calc(var(--header-h) + var(--space-5)) clamp(20px, 5vw, 40px) var(--space-6);
  }
  .hh-hero__inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .hh-hero__title { font-size: clamp(2.125rem, 7.6vw, 2.5rem); }
  .hh-bio, .hh-leadership, .hh-gallery, .hh-related { padding-block: var(--space-6); }
  .hh-bio__grid { grid-template-columns: 1fr; }
  .hh-gallery__grid { grid-template-columns: 1fr; }
  .hh-related__grid { grid-template-columns: 1fr; }
  .hh-tl { padding-left: 32px; }
  .hh-tl__dot { left: -32.5px; }
  .hh-tl::before { left: 5px; }
  .hh-tl__card { padding: 22px 24px; }
}

/* ==========================================================================
   2–7 · BIOGRAPHY SECTIONS — Profile · Public Service · Leadership Roles ·
   Sports & Youth Development · Community · Humanitarian (factual, sourced)
   ========================================================================== */
.hh-sec { padding: var(--space-7) clamp(20px, 4vw, 64px); }
.hh-sec--ivory { background: #FAF8F3; }
.hh-sec--white { background: var(--c-white); }
.hh-sec .hh-head { margin-bottom: var(--space-4); }

.hh-prose {
  max-width: 78ch;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hh-prose p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}
.hh-prose > p:first-child { font-size: var(--fs-body-lg); color: var(--ink); }

/* Leadership Roles — two elevated institutional cards */
.hh-roles__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.hh-roles__grid > li { display: flex; }
.hh-role {
  flex: 1;
  padding: 34px 38px;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);                 /* muted gold hairline */
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.hh-role__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
}
.hh-role__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.hh-role__text:last-child { margin-bottom: 0; }

/* Sporting-coverage chips — quiet ledger of documented domains */
.hh-scope {
  margin: var(--space-4) 0 14px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-700);
}
.hh-scope__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hh-chip {
  padding: 8px 18px;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.45);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--navy-800);
}

@media (max-width: 767px) {
  .hh-sec { padding-block: var(--space-6); }
  .hh-roles__grid { grid-template-columns: 1fr; }
  .hh-role { padding: 26px 28px; }
}

/* ==========================================================================
   6 · VERIFIED GALLERY PREVIEW — live approved official imagery (append-only)
   Same visual language as the original dashed-slot preview: 4:3 rhythm,
   fine gold keylines, white cards on the ivory ground. Hover zoom is capped
   at 1.02 and disabled entirely under prefers-reduced-motion.
   ========================================================================== */
.hh-sr {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.hh-gallery__provenance {
  display: flex; align-items: center; gap: 10px;
  margin: calc(var(--space-4) * -0.5) 0 var(--space-4);
  font-family: var(--font-sub); font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--gold-700);
}
.hh-gallery__provenance .icon { width: 15px; height: 15px; flex: none; color: var(--gold-600); }

.hh-gallery__loading {
  margin: 0; padding: var(--space-5) 0;
  font-family: var(--font-body); font-size: var(--fs-sm); color: var(--ink-mute);
  text-align: center;
}
.hh-gallery__empty {
  margin: 0; padding: var(--space-5) var(--space-4);
  border: 1.5px dashed rgba(198, 161, 91, 0.5); border-radius: var(--r-md);
  background: var(--c-white);
  font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.75;
  color: var(--ink-soft); text-align: center;
}

/* ------------------------------------------------------------- gallery card */
.hh-gcard {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--dur-3) var(--ease-lux), border-color var(--dur-2) var(--ease-standard);
}
.hh-gcard:hover { border-color: rgba(198, 161, 91, 0.65); box-shadow: 0 22px 44px -26px rgba(24, 34, 52, 0.35); }

.hh-gcard__media {
  position: relative; display: block; width: 100%;
  aspect-ratio: 4 / 3; padding: 0; border: 0;
  background: var(--navy-900);
  cursor: zoom-in; overflow: hidden;
}
.hh-gcard__img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform 0.6s var(--ease-lux);
}
.hh-gcard__media:hover .hh-gcard__img,
.hh-gcard__media:focus-visible .hh-gcard__img { transform: scale(1.02); }   /* ceiling: never above 1.02 */

.hh-gcard__zoomcue {
  position: absolute; right: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(10, 16, 28, 0.72); color: var(--gold-300);
  font-family: var(--font-sub); font-size: 0.5625rem; font-weight: var(--fw-semi);
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0; transition: opacity var(--dur-2) var(--ease-standard);
  pointer-events: none;
}
.hh-gcard__zoomcue .icon { width: 13px; height: 13px; }
.hh-gcard__media:hover .hh-gcard__zoomcue,
.hh-gcard__media:focus-visible .hh-gcard__zoomcue { opacity: 1; }

.hh-gcard__fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  padding: var(--space-4); text-align: center;
  font-family: var(--font-body); font-size: var(--fs-xs); line-height: 1.7; color: var(--gold-300);
}

.hh-gcard__body {
  display: flex; flex-direction: column; gap: 12px;
  padding: 22px 24px 24px; flex: 1;
}
.hh-gcard__cat {
  align-self: flex-start;
  font-family: var(--font-sub); font-size: 0.5625rem; font-weight: var(--fw-semi);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-700);
  padding: 5px 12px; border: 1px solid rgba(198, 161, 91, 0.45); border-radius: 999px;
}
.hh-gcard__title {
  font-family: var(--font-display); font-size: 1.1875rem; font-weight: var(--fw-semi);
  line-height: 1.35; color: var(--navy-800); margin: 0;
}
.hh-gcard__date {
  font-family: var(--font-sub); font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--ink-mute);
}
.hh-gcard__src {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sub); font-size: 0.5625rem; font-weight: var(--fw-semi);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-700);
}
.hh-gcard__src .icon { width: 13px; height: 13px; flex: none; color: var(--gold-600); }
.hh-gcard__src .hh-gcard__badge {
  padding: 3px 9px; border: 1px solid rgba(198, 161, 91, 0.45); border-radius: 999px;
  white-space: nowrap;
}
.hh-gcard__cta { margin-top: auto; padding-top: 6px; }
.hh-gcard__cta .btn { width: 100%; }

.hh-gcard__media:focus-visible,
.hh-lb__close:focus-visible,
.hh-lb__prev:focus-visible,
.hh-lb__next:focus-visible {
  outline: 2px solid var(--gold-500); outline-offset: 3px;
}

/* -------------------------------------------------------------------- entry */
@keyframes hh-g-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hh-gcard--enter { animation: hh-g-in 0.55s var(--ease-lux) both; }

/* ----------------------------------------------------------------- lightbox */
.hh-lb { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 18px; }
.hh-lb[hidden] { display: none; }
.hh-lb__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 16, 28, 0.9);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hh-lb__panel {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  width: min(1180px, 100%); max-height: min(86vh, 780px);
  background: var(--c-white); border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 48px 96px -32px rgba(4, 8, 16, 0.75);
}
@keyframes hh-lb-in { from { opacity: 0; transform: translateY(18px) scale(0.99); } to { opacity: 1; transform: none; } }
.hh-lb__panel { animation: hh-lb-in 0.4s var(--ease-lux) both; }

.hh-lb__media {
  position: relative; background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.hh-lb__img {
  width: 100%; height: 100%; max-height: min(86vh, 780px);
  object-fit: cover; display: block;
}

.hh-lb__info {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(24px, 3.4vw, 44px);
  overflow-y: auto;
}
.hh-lb__cat {
  align-self: flex-start;
  font-family: var(--font-sub); font-size: 0.5625rem; font-weight: var(--fw-semi);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-700);
  padding: 5px 12px; border: 1px solid rgba(198, 161, 91, 0.45); border-radius: 999px;
}
.hh-lb__title {
  font-family: var(--font-display); font-size: clamp(1.25rem, 1.9vw, 1.625rem);
  font-weight: var(--fw-semi); line-height: 1.3; color: var(--navy-800); margin: 0;
}
.hh-lb__date {
  font-family: var(--font-sub); font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--ink-mute);
}
.hh-lb__caption {
  font-family: var(--font-body); font-size: var(--fs-sm); line-height: 1.8; color: var(--ink-soft);
  margin: 0;
}
.hh-lb__credit {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sub); font-size: 0.5625rem; font-weight: var(--fw-semi);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-700);
  margin: 0;
}
.hh-lb__actions {
  margin-top: auto; padding-top: var(--space-4);
  display: flex; flex-direction: column; gap: 14px;
}
.hh-lb__nav { display: flex; align-items: center; gap: 12px; }
.hh-lb__prev, .hh-lb__next {
  width: 48px; height: 48px; flex: none;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(198, 161, 91, 0.5); border-radius: 999px;
  background: var(--c-white); color: var(--navy-800); cursor: pointer;
  transition: border-color var(--dur-2) var(--ease-standard), background-color var(--dur-2) var(--ease-standard);
}
.hh-lb__prev:hover, .hh-lb__next:hover { border-color: var(--gold-500); background: var(--gold-50); }
.hh-lb__prev .icon { transform: scaleX(-1); }
.hh-lb__prev .icon, .hh-lb__next .icon { width: 18px; height: 18px; }
.hh-lb__count {
  font-family: var(--font-sub); font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--ink-mute);
}
.hh-lb__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 48px; height: 48px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(198, 161, 91, 0.5); border-radius: 999px;
  background: rgba(10, 16, 28, 0.66); color: var(--gold-300); cursor: pointer;
  transition: background-color var(--dur-2) var(--ease-standard), border-color var(--dur-2) var(--ease-standard);
}
.hh-lb__close:hover { background: rgba(10, 16, 28, 0.85); border-color: var(--gold-400); }
.hh-lb__close .icon { width: 18px; height: 18px; }

/* ------------------------------------------------------------ responsive lb */
@media (max-width: 1023px) {
  .hh-lb__panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .hh-lb__media { min-height: 220px; }
  .hh-lb__img { max-height: 52vh; }
}
@media (max-width: 767px) {
  .hh-lb { padding: 10px; }
  .hh-lb__info { padding: 22px 22px 26px; }
}

/* ------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hh-gcard__img { transition: none; }
  .hh-gcard__media:hover .hh-gcard__img,
  .hh-gcard__media:focus-visible .hh-gcard__img { transform: none; }
  .hh-gcard__zoomcue { transition: none; opacity: 1; }
  .hh-gcard--enter, .hh-lb__panel { animation: none; }
  .hh-gcard { transition: none; }
}
