html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

main.video-watch-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 56px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  color: #102326;
  z-index: 9999;
}

.watch-hero {
  padding: 34px 0 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: #5f6f72;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
  color: #095c64;
}

.breadcrumb span + span::before {
  content: "/";
  margin-right: 8px;
  color: #9aabaa;
}

.watch {
  display: block;
}

.video-shell {
  background: #071416;
  border: 1px solid rgba(14, 124, 134, .18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16, 35, 38, .18);
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 72vh;
  background: #071416;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin: 0 0 14px;
  border: 1px solid rgba(14, 124, 134, .18);
  border-radius: 999px;
  background: #eaf7f4;
  color: #095c64;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-watch-page h1 {
  margin: 0;
  max-width: 880px;
  color: #102326;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  margin: 18px 0 0;
  max-width: 780px;
  color: #5f6f72;
  font-size: 19px;
  line-height: 1.55;
}

.actions,
.video-nav,
.watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.watch-actions {
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid #d8ebe7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 35, 38, .08);
}

.watch-actions .actions,
.watch-actions .video-nav {
  margin-top: 0;
}

.video-nav {
  justify-content: space-between;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #0e7c86;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(14, 124, 134, .14);
}

.btn--primary {
  background: #0e7c86;
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: #095c64;
}

.body-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.info {
  padding: 20px;
  border: 1px solid #d8ebe7;
  border-radius: 8px;
  background: #edf6f4;
}

.info h2 {
  margin: 0 0 8px;
  color: #102326;
  font-size: 19px;
  letter-spacing: 0;
}

.info p {
  margin: 0;
  color: #5f6f72;
  line-height: 1.55;
}

.note {
  margin-top: 22px;
  color: #5f6f72;
  font-size: 14px;
}

.footer {
  margin-top: 20px;
  padding: 44px 0 28px;
  background: #f6fbfa;
  border-top: 1px solid #d8ebe7;
}

.footer .contact-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer .contact-container {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, .8fr) minmax(260px, 1fr);
  gap: 26px;
  align-items: center;
}

.footer .map iframe {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 240px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 35, 38, .12);
}

.footer .contact-center {
  text-align: center;
}

.footer .contact-center h2 {
  margin: 0 0 14px;
  color: #102326;
  font-size: 22px;
  letter-spacing: 0;
}

.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d8ebe7;
  transition: transform .18s ease, box-shadow .18s ease;
}

.footer .social-links a:hover,
.footer .social-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(14, 124, 134, .14);
}

.footer .social-links img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer .contact-right {
  display: grid;
  gap: 14px;
}

.footer .contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #4f6265;
  line-height: 1.45;
}

.footer .contact-item .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer .contact-item a,
.footer .map-link,
.footer .footer-links a {
  color: #095c64;
  font-weight: 800;
  text-decoration: none;
}

.footer .contact-item a:hover,
.footer .map-link:hover,
.footer .footer-links a:hover {
  text-decoration: underline;
}

.footer .footer-links {
  margin-top: 26px;
  text-align: center;
  color: #5f6f72;
}

@media (max-width: 860px) {
  main.video-watch-page {
    padding-top: 20px;
  }

  .body-section {
    grid-template-columns: 1fr;
  }

  .watch-actions,
  .watch-actions .actions,
  .watch-actions .video-nav {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .footer .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .map iframe {
    max-width: none;
  }

  .footer .contact-item {
    justify-content: center;
    text-align: left;
  }
}

/* Footer styling matched to the main site footer. */
:root {
  --f-accent: #0b66ff;
  --f-ink: #0f172a;
  --f-bg: #f3f5f7;
  --f-soft-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  --f-ring: 0 0 0 3px rgba(11, 102, 255, .18);
}

footer,
.footer {
  background: var(--f-bg);
  padding: 40px 0 28px;
  color: var(--f-ink);
  font-size: 18px;
  line-height: 1.6;
  border-top: 0;
}

footer .contact-section,
.footer .contact-section {
  max-width: 1200px;
  width: auto;
  margin: 0 auto;
  padding: 0 16px;
}

footer .contact-container,
.footer .contact-container {
  display: grid;
  grid-template-columns: 360px 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

footer .contact-left .map iframe,
.footer .contact-left .map iframe {
  width: 360px;
  height: 260px;
  max-width: none;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  background: #e9eef3;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}

footer .contact-left .map iframe:hover,
.footer .contact-left .map iframe:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

footer .contact-center,
.footer .contact-center {
  text-align: center;
}

footer .contact-center h2,
.footer .contact-center h2 {
  margin: 0 0 14px;
  color: var(--f-ink);
  font-size: 2rem;
  font-weight: 800;
}

footer .social-links,
.footer .social-links {
  display: inline-flex;
  justify-content: center;
  gap: 14px;
}

footer .social-links a,
.footer .social-links a {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 10px;
  background: transparent;
  outline: none;
  transition: transform .25s ease, filter .25s ease;
}

footer .social-links img,
.footer .social-links img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .08));
  border-radius: 8px;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

footer .social-links a:hover,
footer .social-links a:focus-visible,
.footer .social-links a:hover,
.footer .social-links a:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: none;
}

footer .social-links a:hover img,
footer .social-links a:focus-visible img,
.footer .social-links a:hover img,
.footer .social-links a:focus-visible img {
  filter: drop-shadow(0 8px 18px rgba(11, 102, 255, .25));
}

footer .contact-right,
.footer .contact-right {
  display: block;
}

footer .contact-item,
.footer .contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  padding: 8px 10px;
  color: var(--f-ink);
  transition: background-color .25s ease, box-shadow .25s ease;
}

footer .contact-item:hover,
.footer .contact-item:hover {
  background: rgba(11, 102, 255, .06);
  box-shadow: var(--f-soft-shadow);
}

footer .icon,
.footer .icon,
footer .contact-item .icon,
.footer .contact-item .icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
  transition: transform .25s ease;
}

footer .contact-item:hover .icon,
.footer .contact-item:hover .icon {
  transform: scale(1.06) rotate(-2deg);
}

footer .contact-item.phone .icon,
.footer .contact-item.phone .icon {
  width: 54px;
  height: 54px;
}

footer .contact-item.phone span,
.footer .contact-item.phone span {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: .5px;
  transition: color .25s ease;
}

@keyframes f-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

footer .contact-item.phone:hover span,
.footer .contact-item.phone:hover span {
  color: var(--f-accent);
  animation: f-pulse .8s ease-in-out;
}

footer .contact-item a,
.footer .contact-item a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

footer .map-link,
.footer .map-link {
  color: var(--f-accent);
  text-decoration: underline;
  position: relative;
  transition: color .25s ease;
}

footer .map-link::after,
.footer .map-link::after {
  content: "↗";
  margin-left: .35em;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

footer .map-link:hover::after,
footer .map-link:focus-visible::after,
.footer .map-link:hover::after,
.footer .map-link:focus-visible::after {
  opacity: .9;
  transform: translateY(-1px);
}

footer .footer-links,
.footer .footer-links {
  margin-top: 22px;
  text-align: center;
  color: var(--f-ink);
  font-size: 1.05rem;
}

footer .footer-links a,
.footer .footer-links a {
  color: var(--f-accent);
  font-weight: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .25s ease, color .25s ease;
}

footer .footer-links a:hover,
footer .footer-links a:focus-visible,
.footer .footer-links a:hover,
.footer .footer-links a:focus-visible {
  background-size: 100% 2px;
}

footer a:focus-visible,
.footer a:focus-visible {
  box-shadow: var(--f-ring);
  border-radius: 10px;
}

@media (max-width: 1024px) {
  footer .contact-container,
  .footer .contact-container {
    grid-template-columns: 320px 1fr;
    grid-auto-rows: auto;
  }

  footer .contact-center,
  .footer .contact-center {
    order: 2;
  }

  footer .contact-right,
  .footer .contact-right {
    order: 3;
  }

  footer .contact-left .map iframe,
  .footer .contact-left .map iframe {
    width: 320px;
    height: 230px;
  }
}

@media (max-width: 768px) {
  footer,
  .footer {
    font-size: 16px;
  }

  footer .contact-container,
  .footer .contact-container {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: initial;
  }

  footer .contact-left .map iframe,
  .footer .contact-left .map iframe {
    width: 100%;
    height: 220px;
  }

  footer .social-links img,
  .footer .social-links img {
    width: 56px;
    height: 56px;
  }

  footer .contact-item,
  .footer .contact-item {
    justify-content: flex-start;
    text-align: left;
  }

  footer .contact-item.phone span,
  .footer .contact-item.phone span {
    font-size: 1.9rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --f-bg: #0b1220;
    --f-ink: #e5e7eb;
  }

  footer,
  .footer {
    background: var(--f-bg);
    color: var(--f-ink);
  }

  footer .footer-links a,
  .footer .footer-links a,
  footer .map-link,
  .footer .map-link {
    color: var(--f-accent);
  }

  footer .social-links img,
  .footer .social-links img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
  }

  footer .contact-item:hover,
  .footer .contact-item:hover {
    background: rgba(11, 102, 255, .14);
  }
}

@media (prefers-reduced-motion: reduce) {
  footer *,
  .footer * {
    animation: none !important;
    transition: none !important;
  }
}

.dm-cookie-banner {
  position: fixed !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 16px !important;
  z-index: 2147483000 !important;
  max-width: 980px !important;
}

.dm-cookie-manage {
  position: fixed !important;
  left: 14px !important;
  bottom: 14px !important;
  z-index: 2147482999 !important;
}
