/* Gruyère Escapade V1 — responsive styles */

:root {
  --ge-blue: #3399cc;
  --ge-blue-dark: #287aa3;
  --ge-orange: #e87722;
  --ge-orange-dark: #c96218;
  --ge-text: #444;
  --ge-text-muted: #777;
  --ge-bg: #fff;
  --ge-border: #e5e7eb;
  --ge-max-width: 1100px;
  --ge-radius: 8px;
  --ge-shadow: 0 4px 20px rgb(0 0 0 / 8%);
  --ge-font: system-ui, -apple-system, "Segoe UI", Inter, Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--ge-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ge-text);
  background: var(--ge-bg);
}

.ge-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

a { color: var(--ge-blue); text-decoration: none; }
a:hover { color: var(--ge-blue-dark); }

.ge-main {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--ge-max-width);
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

/* Header */
.ge-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ge-border);
  box-shadow: var(--ge-shadow);
}

.ge-header__inner {
  max-width: var(--ge-max-width);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ge-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ge-logo__text { height: 36px; width: auto; }
.ge-logo__picto { height: 42px; width: auto; }

.ge-nav-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--ge-text);
  cursor: pointer;
}

.ge-nav-toggle__icon--close { display: none; }
.ge-header.is-nav-open .ge-nav-toggle__icon--open { display: none; }
.ge-header.is-nav-open .ge-nav-toggle__icon--close { display: block; }

.ge-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  max-height: calc(100dvh - 100%);
  overflow-y: auto;
  background: var(--ge-bg);
  border-bottom: 1px solid var(--ge-border);
  box-shadow: var(--ge-shadow);
  padding: 1rem;
}

.ge-header.is-nav-open .ge-nav { display: block; }

.ge-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ge-nav__item { border-bottom: 1px solid var(--ge-border); }
.ge-nav__item:last-child { border-bottom: none; }

.ge-nav__link {
  display: block;
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--ge-text);
  text-align: left;
  cursor: pointer;
}

.ge-nav__link:hover { color: var(--ge-blue); }

.ge-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem 1rem;
  display: none;
}

.ge-nav__item.is-open .ge-nav__submenu { display: block; }

.ge-nav__submenu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--ge-text-muted);
  font-size: 0.95rem;
}

.ge-header-cta {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* Buttons */
.ge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--ge-radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ge-btn--primary {
  background: var(--ge-orange);
  color: #fff;
  border-color: var(--ge-orange);
}

.ge-btn--primary:hover {
  background: var(--ge-orange-dark);
  border-color: var(--ge-orange-dark);
  color: #fff;
}

.ge-btn--secondary {
  background: var(--ge-blue);
  color: #fff;
  border-color: var(--ge-blue);
}

.ge-btn--secondary:hover {
  background: var(--ge-blue-dark);
  color: #fff;
}

.ge-btn--ghost {
  background: transparent;
  color: var(--ge-blue);
  border-color: var(--ge-border);
}

.ge-btn--ghost:hover {
  border-color: var(--ge-blue);
  color: var(--ge-blue-dark);
}

/* Price badge */
.ge-price-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-left: 4px solid var(--ge-orange);
  border-radius: var(--ge-radius);
}

.ge-price-badge__item {
  font-size: 0.9rem;
  color: var(--ge-text-muted);
}

.ge-price-badge__item:not(:last-child)::after {
  content: " · ";
  margin-left: 0.5rem;
}

.ge-price-badge__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ge-orange-dark);
  margin-left: auto;
}

/* CTA bar */
.ge-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.ge-main--home {
  max-width: none;
  padding: 0;
}

.ge-home {
  width: 100%;
}

/* Activity cards grid */
.ge-activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.ge-activity-grid--home {
  margin: 0;
  padding: 0 clamp(1rem, 3vw, 2.5rem) 3rem;
  gap: clamp(1rem, 2vw, 1.75rem);
}

/* Let intro + cards participate directly in the grid */
.ge-activity-grid--home > .neos-contentcollection {
  display: contents;
}

.ge-activity-grid--home .gruyereescapade-site-content-html,
.ge-activity-grid--home .ge-page-intro {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.ge-activity-grid--home .ge-page-intro .ge-prose--formatted {
  text-align: left;
}

.ge-activity-grid--home .gruyereescapade-site-content-html h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.3;
  color: #222;
  margin: 0 0 0.75rem;
}

.ge-activity-grid--home .gruyereescapade-site-content-html h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--ge-blue);
  margin: 0 0 1rem;
}

.ge-activity-grid--home .gruyereescapade-site-content-html p {
  margin: 0 0 0.75rem;
  color: var(--ge-text-muted);
}

.ge-activity-card {
  position: relative;
  border-radius: var(--ge-radius);
  overflow: hidden;
  box-shadow: var(--ge-shadow);
  background: var(--ge-bg);
  border: 1px solid var(--ge-border);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.ge-activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgb(0 0 0 / 12%);
}

.ge-activity-card__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

body.neos-backend .ge-activity-card__stretched-link {
  display: none;
}

body.neos-backend .ge-activity-card__header-text,
body.neos-backend .ge-activity-card__body,
body.neos-backend .ge-activity-card--variant .ge-price-badge,
body.neos-backend .ge-activity-card--variant .ge-accordion {
  position: relative;
  z-index: 2;
}

.ge-activity-card--variant .ge-cta-bar,
.ge-activity-card--variant .ge-accordion {
  position: relative;
  z-index: 2;
}

.ge-activity-card--variant .ge-cta-bar a,
.ge-activity-card--variant .ge-accordion a,
.ge-activity-card--variant .ge-accordion summary {
  position: relative;
  z-index: 1;
}

.ge-activity-card__link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ge-activity-card__header {
  position: relative;
  overflow: hidden;
  aspect-ratio: 830 / 240;
  background: #e8f4fa;
}

.ge-activity-card__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ge-activity-card:hover .ge-activity-card__header img {
  transform: scale(1.04);
}

.ge-activity-card__header-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgb(0 0 0 / 65%));
}

.ge-activity-card__header-text h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgb(0 0 0 / 40%);
}

.ge-activity-card__header-text .neos-inline-editable,
.ge-activity-card__body .neos-inline-editable,
.ge-accordion__title .neos-inline-editable {
  display: inline;
}

.ge-activity-card__body {
  padding: 0.85rem 1rem 1.1rem;
  text-align: center;
  flex: 1;
}

.ge-activity-card__body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ge-text-muted);
  line-height: 1.4;
}

/* Legacy aliases (other pages) */
.ge-activity-card__image img {
  width: 100%;
  aspect-ratio: 830 / 240;
  object-fit: cover;
}

.ge-activity-card__content {
  padding: 0.75rem 0;
  text-align: center;
}

.ge-activity-card__content h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--ge-blue);
}

.ge-activity-card__content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ge-text-muted);
}

/* Team member cards */
.ge-team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ge-surface, #fff);
  border: 1px solid var(--ge-border);
  border-radius: var(--ge-radius);
  overflow: hidden;
  box-shadow: var(--ge-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ge-team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ge-shadow-lg);
}

.ge-team-card__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f4fb 0%, #d4e8f5 100%);
}

.ge-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ge-team-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  padding: 1rem 1.15rem 1.25rem;
  text-align: center;
}

.ge-team-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ge-blue);
}

.ge-team-card__role {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ge-text-muted);
}

.ge-team-banner {
  margin: 0 0 1.5rem;
  border-radius: var(--ge-radius);
  overflow: hidden;
  box-shadow: var(--ge-shadow);
}

.ge-team-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 830 / 240;
  object-fit: cover;
}

.ge-page-intro--team .ge-contact__hero {
  margin-bottom: 0;
}

/* Team page grid */
.ge-listing-page--team {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16.5rem), 1fr));
}

.ge-listing-page--team .ge-team-card {
  max-width: 22rem;
  margin-inline: auto;
  width: 100%;
}

@media (min-width: 640px) {
  .ge-listing-page--team {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }
}

/* Fallback grid when team cards sit in a generic page wrapper */
.ge-page > .neos-contentcollection:has(> .ge-team-card),
.ge-main > .neos-contentcollection:has(> .ge-team-card) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16.5rem), 1fr));
  gap: 1.5rem;
}

.ge-page > .neos-contentcollection:has(> .ge-team-card) > .gruyereescapade-site-content-html,
.ge-main > .neos-contentcollection:has(> .ge-team-card) > .gruyereescapade-site-content-html {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .ge-page > .neos-contentcollection:has(> .ge-team-card),
  .ge-main > .neos-contentcollection:has(> .ge-team-card) {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }
}

/* Auto-grid on pages mixing intro + activity cards */
.ge-main > .neos-contentcollection:has(> .ge-activity-card) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ge-main > .neos-contentcollection:has(> .ge-activity-card) > .gruyereescapade-site-content-html,
.ge-main > .neos-contentcollection:has(> .ge-activity-card) > .ge-accordion,
.ge-main > .neos-contentcollection:has(> .ge-activity-card) > .ge-gallery,
.ge-main > .neos-contentcollection:has(> .ge-activity-card) > .ge-video-grid {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .ge-main > .neos-contentcollection:has(> .ge-activity-card) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ge-main > .neos-contentcollection:has(> .ge-activity-card) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Listing pages (activities, locations, audience) */
.ge-listing-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ge-listing-page > .neos-contentcollection {
  display: contents;
}

.ge-listing-page .gruyereescapade-site-content-html,
.ge-listing-page .ge-page-intro,
.ge-listing-page .ge-gallery,
.ge-listing-page .ge-video-grid,
.ge-listing-page .ge-accordion,
.ge-listing-page .ge-listing-section-title {
  grid-column: 1 / -1;
}

.ge-listing-page .gruyereescapade-site-content-html,
.ge-listing-page .ge-page-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ge-listing-page .ge-page-intro .ge-prose--formatted {
  text-align: left;
}

.ge-listing-section-title {
  grid-column: 1 / -1;
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin: 0.5rem 0 0;
  text-align: center;
}

.ge-activity-card--variant {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ge-activity-card--variant .ge-activity-card__body--variant {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  padding: 1rem;
}

.ge-activity-card__title-inline {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ge-blue);
}

.ge-activity-card__subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ge-text-muted);
}

.ge-activity-card--variant .ge-price-badge {
  margin: 0;
}

.ge-activity-card--variant .ge-cta-bar {
  margin: 0;
  flex-wrap: wrap;
}

.ge-pricing-card__summary {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ge-text-muted);
  text-align: left;
}

.ge-pricing-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.ge-pricing-card__actions .ge-btn {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 8rem;
}

.ge-accordion--in-card {
  margin: 0.5rem 0 0;
  border: 1px solid var(--ge-border);
  border-radius: var(--ge-radius);
}

.ge-accordion--in-card .ge-accordion__title {
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
}

.ge-accordion--in-card .ge-accordion__body {
  padding: 0 0.85rem 0.85rem;
}

.ge-listing-page .ge-accordion {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 640px) {
  .ge-listing-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ge-listing-page--activities {
    grid-template-columns: repeat(2, 1fr);
  }

  .ge-listing-page--locations,
  .ge-listing-page--audience {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Single activity box spans the full grid width */
.ge-listing-page:has(.ge-activity-card):not(:has(.ge-activity-card ~ .ge-activity-card)) .ge-activity-card,
.ge-main > .neos-contentcollection:has(> .ge-activity-card):not(:has(> .ge-activity-card ~ .ge-activity-card)) > .ge-activity-card,
.ge-activity-grid--home:has(.ge-activity-card):not(:has(.ge-activity-card ~ .ge-activity-card)) .ge-activity-card {
  grid-column: 1 / -1;
}

/* Variants */
.ge-variant {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--ge-border);
}

.ge-variant__title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: #222;
}

.ge-section-title {
  font-size: 1.35rem;
  margin: 2rem 0 1rem;
  color: #222;
}

/* Hero */
.ge-hero {
  margin-bottom: 2rem;
  border-radius: var(--ge-radius);
  overflow: hidden;
  position: relative;
}

.ge-hero img {
  width: 100%;
  aspect-ratio: 830 / 240;
  object-fit: cover;
}

.ge-hero__title {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgb(0 0 0 / 50%);
  letter-spacing: 0.05em;
}

/* Prose */
.ge-prose h1, .ge-prose h2 { color: #222; }
.ge-prose p { margin: 0 0 1rem; }

/* Gallery */
.ge-gallery {
  margin: 2.5rem 0 0;
}

.ge-gallery .ge-section-title {
  text-align: center;
  margin-top: 0;
}

.ge-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.ge-gallery__static {
  display: contents;
}

.ge-gallery__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--ge-radius);
  background: #f3f4f6;
  box-shadow: var(--ge-shadow);
  aspect-ratio: 4 / 3;
}

.ge-gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}

.ge-gallery__trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 35%), transparent 45%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.ge-gallery__trigger:hover::after,
.ge-gallery__trigger:focus-visible::after {
  opacity: 1;
}

.ge-gallery__trigger:focus-visible {
  outline: 2px solid var(--ge-blue);
  outline-offset: 2px;
}

.ge-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ge-gallery__trigger:hover img,
.ge-gallery__trigger:focus-visible img {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .ge-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

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

/* Lightbox */
.ge-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgb(0 0 0 / 88%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ge-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.ge-lightbox__image {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--ge-radius);
  box-shadow: 0 8px 40px rgb(0 0 0 / 45%);
}

.ge-lightbox__close,
.ge-lightbox__prev,
.ge-lightbox__next {
  position: absolute;
  border: 0;
  background: rgb(255 255 255 / 12%);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ge-lightbox__close:hover,
.ge-lightbox__prev:hover,
.ge-lightbox__next:hover,
.ge-lightbox__close:focus-visible,
.ge-lightbox__prev:focus-visible,
.ge-lightbox__next:focus-visible {
  background: rgb(255 255 255 / 25%);
  outline: none;
}

.ge-lightbox__close {
  top: 1rem;
  right: 1rem;
}

.ge-lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.ge-lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.ge-lightbox__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(255 255 255 / 85%);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

@media (max-width: 639px) {
  .ge-lightbox__prev,
  .ge-lightbox__next {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
  }
}

/* Video cards */
.ge-video-grid {
  grid-column: 1 / -1;
  margin: 2.5rem 0 0;
}

.ge-video-grid .ge-section-title {
  text-align: center;
  margin-top: 0;
}

.ge-video-grid__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ge-video-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.ge-video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--ge-radius);
  overflow: hidden;
  box-shadow: var(--ge-shadow);
  background: var(--ge-bg);
  border: 1px solid var(--ge-border);
}

.ge-video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.ge-video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ge-video-card__body {
  padding: 0.85rem 1rem 1.1rem;
  text-align: center;
  flex: 1;
}

.ge-video-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ge-text);
  line-height: 1.4;
}

/* Accordion */
.ge-accordion {
  border: 1px solid var(--ge-border);
  border-radius: var(--ge-radius);
  margin: 0.75rem 0;
  padding: 0 1rem;
}

.ge-accordion__title {
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 0;
}

.ge-accordion__body { padding-bottom: 1rem; }

/* Forms — reservation, gift voucher & inline prose */
.ge-reservation-form,
.ge-gift-form {
  margin: 2rem auto;
  max-width: 640px;
}

.ge-accordion__body .ge-gift-form {
  margin: 1.5rem 0;
  max-width: none;
}

.ge-form-card {
  background: #fff;
  border: 1px solid var(--ge-border);
  border-radius: var(--ge-radius);
  box-shadow: var(--ge-shadow);
  padding: 1.75rem 1.25rem 2rem;
}

@media (min-width: 640px) {
  .ge-form-card {
    padding: 2rem 2rem 2.5rem;
  }
}

.ge-form-hint {
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ge-border);
  font-size: 0.95rem;
  color: var(--ge-text-muted);
  line-height: 1.5;
  text-align: center;
}

.ge-reservation-form form,
.ge-form-card form.ge-form {
  margin: 0;
  max-width: none;
}

.ge-form-section {
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
  min-width: 0;
}

.ge-form-section--last {
  margin-bottom: 0;
}

.ge-form-legend {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ge-blue-dark);
  letter-spacing: 0.02em;
}

.ge-form-field {
  margin-bottom: 1.1rem;
}

.ge-form-field:last-child {
  margin-bottom: 0;
}

.ge-form-row {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 540px) {
  .ge-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .ge-form-row > .ge-form-field {
    margin-bottom: 1.1rem;
  }
}

.ge-form-field label,
.ge-reservation-form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0.35rem;
}

.ge-form-field input,
.ge-form-field select,
.ge-form-field textarea,
.ge-reservation-form input,
.ge-reservation-form select,
.ge-reservation-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 2px solid var(--ge-border);
  border-radius: var(--ge-radius);
  font: inherit;
  color: var(--ge-text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ge-form-field input::placeholder,
.ge-form-field textarea::placeholder {
  color: #aaa;
}

.ge-form-field input:focus,
.ge-form-field select:focus,
.ge-form-field textarea:focus,
.ge-reservation-form input:focus,
.ge-reservation-form select:focus,
.ge-reservation-form textarea:focus {
  outline: none;
  border-color: var(--ge-blue);
  box-shadow: 0 0 0 3px rgb(51 153 204 / 18%);
}

.ge-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23777' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.ge-form-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.ge-form-field.error input,
.ge-form-field.error select,
.ge-form-field.error textarea,
.ge-form-field--error input,
.ge-form-field--error select,
.ge-form-field--error textarea {
  border-color: #dc2626;
}

.ge-form-field .errors,
.ge-reservation-form .errors {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  font-size: 0.825rem;
  color: #b91c1c;
  font-weight: 500;
}

.ge-form-field .errors li,
.ge-reservation-form .errors li {
  margin: 0.1rem 0;
}

.ge-form-actions {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ge-border);
  text-align: center;
}

.ge-form-submit,
.ge-reservation-form button[type="submit"],
.ge-gift-form button[type="submit"] {
  width: 100%;
  max-width: 340px;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.ge-form-legal {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: var(--ge-text-muted);
  text-align: center;
  line-height: 1.5;
}

.ge-form-legal a {
  margin-left: 0.25rem;
}

.ge-form-radios {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ge-form-radios label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1.45;
}

.ge-form-field--radios input[type="radio"],
.ge-form-radios input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--ge-blue);
  cursor: pointer;
}

.ge-gift-intro h1 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.ge-gift-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ge-border);
  font-size: 0.9rem;
  color: var(--ge-text-muted);
}

.ge-reservation-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--ge-radius);
  box-shadow: var(--ge-shadow);
}

.ge-reservation-success h2 {
  color: var(--ge-orange);
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.ge-reservation-success p {
  margin: 0;
  color: var(--ge-text);
  font-size: 1.05rem;
}

.ge-reservation-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--ge-text-muted);
}

/* Inline inputs in migrated HTML (e.g. bon cadeau) */
.ge-prose input[type="text"],
.ge-prose input[type="tel"],
.ge-prose input[type="email"],
.ge-prose input[type="number"],
.ge-prose textarea {
  display: inline-block;
  width: auto;
  min-width: 3rem;
  padding: 0.45rem 0.65rem;
  margin: 0 0.2rem;
  border: 2px solid var(--ge-border);
  border-radius: var(--ge-radius);
  font: inherit;
  vertical-align: baseline;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ge-prose input:focus,
.ge-prose textarea:focus {
  outline: none;
  border-color: var(--ge-blue);
  box-shadow: 0 0 0 2px rgb(51 153 204 / 15%);
}

/* Footer */
.ge-footer {
  flex-shrink: 0;
  background: #f8fafc;
  border-top: 1px solid var(--ge-border);
  padding: 1.5rem clamp(1rem, 3vw, 1.5rem);
  margin-top: auto;
}

.ge-footer__inner {
  max-width: var(--ge-max-width);
  margin: 0 auto;
}

.ge-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ge-border);
}

.ge-footer__nav a {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  line-height: 1.35;
}

.ge-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
}

.ge-footer__main {
  text-align: center;
}

.ge-footer__contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.ge-footer__contact-item {
  color: var(--ge-text);
  word-break: break-word;
}

.ge-footer__contact-item:hover {
  color: var(--ge-blue);
}

.ge-footer__copy {
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: var(--ge-text-muted);
  margin: 0;
  line-height: 1.45;
}

.ge-footer__partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.ge-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 16rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--ge-radius);
  background: #fff;
  border: 1px solid var(--ge-border);
  color: var(--ge-text-muted);
  font-size: 0.78rem;
  line-height: 1.35;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ge-footer__social:hover {
  color: var(--ge-blue);
  border-color: #c5dff0;
  box-shadow: 0 2px 10px rgb(51 153 204 / 10%);
}

.ge-footer__social img {
  flex-shrink: 0;
  width: 28px;
  height: auto;
}

.ge-footer__partner {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: var(--ge-radius);
  background: #fff;
  border: 1px solid var(--ge-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ge-footer__partner:hover {
  border-color: #c5dff0;
  box-shadow: 0 2px 10px rgb(51 153 204 / 10%);
}

.ge-footer__partner img {
  display: block;
  width: auto;
  height: 2.25rem;
  max-width: 100%;
}

.ge-footer__credit {
  font-size: 0.78rem;
  color: var(--ge-text-muted);
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--ge-border);
  text-align: center;
}

.ge-footer__credit a {
  color: var(--ge-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ge-footer__credit a:hover {
  color: var(--ge-blue);
}

@media (min-width: 480px) {
  .ge-footer__contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .ge-footer__main {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .ge-footer__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .ge-footer__partners {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .ge-footer__nav {
    justify-content: space-between;
  }
}

/* Contact page */
.ge-main--contact,
.ge-main--gift,
.ge-main--prose {
  max-width: 960px;
  padding-top: 2rem;
}

.ge-contact__hero {
  text-align: center;
  margin-bottom: 2rem;
}

.ge-contact__hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #222;
}

.ge-contact__lead {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ge-text);
}

.ge-contact__lead strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--ge-blue);
}

.ge-contact__note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ge-text-muted);
}

.ge-contact__quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

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

.ge-contact-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.1rem 0.75rem;
  border-radius: var(--ge-radius);
  border: 1px solid var(--ge-border);
  background: var(--ge-bg);
  box-shadow: var(--ge-shadow);
  color: inherit;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ge-contact-quick:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
  border-color: var(--ge-blue);
  color: inherit;
}

.ge-contact-quick--primary {
  background: linear-gradient(135deg, var(--ge-blue) 0%, var(--ge-blue-dark) 100%);
  border-color: transparent;
  color: #fff;
}

.ge-contact-quick--primary:hover {
  color: #fff;
  border-color: transparent;
}

.ge-contact-quick--primary .ge-contact-quick__icon {
  color: #fff;
}

.ge-contact-quick--primary .ge-contact-quick__hint {
  color: rgb(255 255 255 / 85%);
}

.ge-contact-quick:not(a) {
  cursor: default;
}

.ge-contact-quick:not(a):hover {
  transform: none;
  box-shadow: var(--ge-shadow);
  border-color: var(--ge-border);
}

.ge-contact-quick__icon {
  display: flex;
  color: var(--ge-blue);
}

.ge-contact-quick__label {
  font-weight: 700;
  font-size: 0.95rem;
}

.ge-contact-quick__hint {
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--ge-text-muted);
  word-break: break-word;
}

.ge-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.ge-contact-card {
  background: var(--ge-bg);
  border: 1px solid var(--ge-border);
  border-radius: var(--ge-radius);
  box-shadow: var(--ge-shadow);
  padding: 1.25rem 1.35rem;
  height: 100%;
}

.ge-contact-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ge-blue);
}

.ge-contact-card__title svg {
  flex-shrink: 0;
}

.ge-contact-card__body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ge-text);
}

.ge-contact-card__body p {
  margin: 0 0 0.75rem;
}

.ge-contact-card__body p:last-child {
  margin-bottom: 0;
}

.ge-contact-card__footer {
  margin-top: 0.85rem !important;
  margin-bottom: 0 !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.ge-contact-address {
  font-style: normal;
  line-height: 1.65;
}

.ge-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ge-contact-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--ge-border);
}

.ge-contact-list li:last-child {
  border-bottom: none;
}

.ge-contact-list a {
  display: block;
  font-weight: 500;
}

.ge-contact-dl {
  margin: 0.75rem 0 0;
}

.ge-contact-dl div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--ge-border);
}

.ge-contact-dl div:last-child {
  border-bottom: none;
}

.ge-contact-dl dt {
  font-weight: 600;
  color: var(--ge-text-muted);
  min-width: 3.5rem;
}

.ge-contact-dl dd {
  margin: 0;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.88rem;
}

.ge-contact__note--center {
  text-align: center;
  margin-bottom: 1.75rem;
}

.ge-contact-card--wide {
  grid-column: 1 / -1;
}

.ge-contact-card__body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

.ge-contact-card__body ul li {
  margin-bottom: 0.25rem;
}

.ge-contact-card__footer .ge-btn {
  display: inline-flex;
}

/* Gift voucher page */
.ge-gift__benefits {
  margin-bottom: 2rem;
}

.ge-gift__section-title {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
}

.ge-contact-list--checks li {
  position: relative;
  padding-left: 1.35rem;
  border-bottom: none;
}

.ge-contact-list--checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ge-blue);
  font-weight: 700;
}

.ge-listing-page--gifts .ge-accordion {
  scroll-margin-top: 5rem;
}

/* Formatted legacy HTML (shared intro / prose layout) */
.ge-page-intro {
  margin-bottom: 2rem;
}

.ge-page-intro .ge-contact__hero {
  margin-bottom: 0;
}

.ge-page-intro .ge-price-badge {
  justify-content: center;
  margin: 0.75rem auto 0;
}

.ge-page-intro .ge-prose--formatted {
  margin-top: 1.25rem;
  text-align: left;
}

.ge-page-intro--article {
  margin-bottom: 2.5rem;
}

.ge-page-content {
  margin-top: 1.25rem;
}

.ge-page-content__card {
  height: auto;
}

.ge-page-content__card .ge-prose--formatted {
  margin-top: 0;
}

.ge-page-alert {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--ge-radius);
  background: #fff4e5;
  border: 1px solid #f0c987;
  color: #8a4b00;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ge-page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 1rem;
  border-radius: var(--ge-radius);
  background: #f0f7fb;
  border: 1px solid #d4e8f5;
  font-size: 0.88rem;
}

.ge-page-nav a {
  font-weight: 600;
}

.ge-prose--formatted {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ge-text);
}

.ge-prose--formatted h1,
.ge-prose--formatted h2,
.ge-prose--formatted h3 {
  color: #222;
  margin: 1.25rem 0 0.65rem;
  font-size: 1.05rem;
}

.ge-prose--formatted h1:first-child,
.ge-prose--formatted h2:first-child,
.ge-prose--formatted h3:first-child {
  margin-top: 0;
}

.ge-prose--formatted p {
  margin: 0 0 0.85rem;
}

.ge-prose--formatted ul,
.ge-prose--formatted ol {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}

.ge-prose--formatted li {
  margin-bottom: 0.35rem;
}

.ge-listing-page .ge-page-intro,
.ge-page .ge-page-intro {
  grid-column: 1 / -1;
}

.ge-listing-page .ge-page-intro .ge-contact__hero,
.ge-listing-page .ge-page-intro .ge-price-badge {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ge-page--reservation .ge-reservation-form {
  margin-top: 0.5rem;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .ge-nav-toggle { display: none; }

  .ge-header__inner {
    overflow: visible;
  }

  .ge-nav {
    display: flex !important;
    position: static;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    overflow: visible;
    max-height: none;
  }

  .ge-nav__list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .ge-nav__link {
    width: auto;
    padding: 0.5rem 0.65rem;
    white-space: nowrap;
  }

  .ge-nav__item {
    position: relative;
    border: none;
  }

  .ge-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--ge-bg);
    border: 1px solid var(--ge-border);
    border-radius: var(--ge-radius);
    box-shadow: var(--ge-shadow);
    padding: 0.5rem 0;
    z-index: 110;
  }

  .ge-nav__submenu::before {
    content: "";
    position: absolute;
    top: -0.35rem;
    left: 0;
    right: 0;
    height: 0.35rem;
  }

  .ge-nav__item:hover .ge-nav__submenu,
  .ge-nav__item:focus-within .ge-nav__submenu,
  .ge-nav__item.is-open .ge-nav__submenu {
    display: block;
  }

  .ge-nav__submenu a { padding: 0.5rem 1rem; }

  .ge-header-cta {
    margin-top: 0;
    width: auto;
    flex-shrink: 0;
  }
}

@media (min-width: 640px) {
  .ge-activity-grid--home {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .ge-activity-grid--home {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .ge-activity-grid--home {
    grid-template-columns: repeat(3, 1fr);
  }

  .ge-price-badge__price { font-size: 1.75rem; }
}

@media (max-width: 640px) {
  .ge-cta-bar { flex-direction: column; }
  .ge-cta-bar .ge-btn { width: 100%; justify-content: center; }
  .ge-price-badge__price { margin-left: 0; width: 100%; }
}

/* Security page (/securite) */
.ge-contact--security .ge-cert-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.ge-cert-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  padding: 0.75rem;
  border-radius: var(--ge-radius);
  border: 1px solid var(--ge-border);
  background: #fff;
  box-shadow: var(--ge-shadow);
}

.ge-cert-logos__item img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 8.5rem;
  object-fit: contain;
}

.ge-cert-logos__item--wide {
  grid-column: 1 / -1;
}

.ge-security__stats {
  margin-top: 2.5rem;
  scroll-margin-top: 5rem;
}

.ge-stats-table {
  margin-bottom: 1.5rem;
  border: 1px solid var(--ge-border);
  border-radius: var(--ge-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--ge-shadow);
}

.ge-stats-table__title {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  color: #2d5016;
  background: #e8edc8;
  border-bottom: 1px solid #d5ddb0;
}

.ge-stats-table__title span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a5c2a;
}

.ge-stats-table__scroll {
  overflow-x: auto;
}

.ge-stats-table table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.ge-stats-table th,
.ge-stats-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--ge-border);
  vertical-align: top;
  text-align: left;
}

.ge-stats-table th {
  width: 52%;
  font-weight: 600;
  color: var(--ge-text);
  background: #fafafa;
}

.ge-stats-table td {
  color: var(--ge-text-muted);
}

.ge-stats-table tr:last-child th,
.ge-stats-table tr:last-child td {
  border-bottom: 0;
}

.ge-stats-table__section th,
.ge-stats-table__section td {
  font-weight: 700;
  color: #333;
  background: #f3f3f3;
}

.ge-security__stats-note {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .ge-contact--security .ge-cert-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ge-cert-logos__item--wide {
    grid-column: auto;
  }
}
