@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/oswald-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/roboto-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/roboto-700-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #fff;
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }
body { margin: 0; line-height: 1.5; }
a { color: inherit; }
a:focus-visible, summary:focus-visible { outline: 3px solid #245b86; outline-offset: 5px; }

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: #fff;
  color: #111;
}
.skip-link:focus { transform: none; }

.wrap {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 20px 0 54px;
}

.sponsored {
  margin: 0 0 16px;
  text-align: center;
  font-size: .75rem;
  color: #646464;
  letter-spacing: .09em;
}

h1 {
  margin: 0 0 24px;
  text-align: center;
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.24;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.video {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 3px;
  isolation: isolate;
  background: #ebe8e2;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.video img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.play-button {
  --play-size: clamp(96px, 17vw, 132px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--play-size);
  height: var(--play-size);
  transform: translate(-50%, -50%);
  border: 4px solid #fff;
  border-radius: 50%;
  background: linear-gradient(150deg, #e8323b, #bb1622);
  box-shadow: 0 4px 18px rgb(0 0 0 / 28%), 0 0 0 6px rgb(255 255 255 / 24%);
  pointer-events: none;
  animation: play-pulse 1.65s ease-in-out infinite;
  will-change: transform;
}

.play-button::before,
.play-button::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 3px solid rgb(255 255 255 / 90%);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgb(199 26 38 / 30%);
  opacity: 0;
  animation: play-ripple 1.65s ease-out infinite;
}

.play-button::after { animation-delay: -.825s; }
.play-button svg { width: 70%; height: 70%; fill: #fff; }
.video:hover .play-button { background: linear-gradient(150deg, #ee3742, #b71220); }

@keyframes play-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes play-ripple {
  0% { transform: scale(.96); opacity: .9; }
  85%, 100% { transform: scale(1.3); opacity: 0; }
}

@keyframes play-glow {
  0%, 100% { box-shadow: 0 4px 18px rgb(0 0 0 / 28%), 0 0 18px 8px rgb(255 255 255 / 15%); }
  50% { box-shadow: 0 4px 18px rgb(0 0 0 / 28%), 0 0 18px 8px rgb(255 255 255 / 65%); }
}

@keyframes play-ring-glow {
  0%, 100% { opacity: .2; }
  50% { opacity: .85; }
}

.note {
  margin: 12px 0 22px;
  text-align: center;
  font-size: .875rem;
  line-height: 1.5;
  color: #4e4e4e;
}
.mobile-break { display: none; }

.cta {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 15px 20px;
  border: 1px solid #ddb119;
  border-radius: 3px;
  background: #f5c518;
  box-shadow: 0 3px 0 #cda50f;
  color: #151515;
  text-align: center;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  touch-action: manipulation;
  transition: background-color .18s ease;
}
.cta:hover { background: #ffcf27; }
.cta:active { background: #eabd16; }

.content { margin: 30px 0 26px; }
.content p { margin: 0 0 17px; font-size: 1.1875rem; line-height: 1.55; }
.content p:last-child { margin-bottom: 0; }
.bottom-cta { margin-top: 26px; }

@media (max-width: 600px) {
  .wrap { width: calc(100% - 32px); padding: 15px 0 40px; }
  .sponsored { margin-bottom: 13px; }
  h1 { margin-bottom: 19px; font-size: clamp(1.7rem, 6.3vw, 2rem); line-height: 1.25; }
  .note { margin: 11px 0 18px; }
  .mobile-break { display: inline; }
  .cta { padding: 15px 14px; font-size: 1.25rem; }
  .content { margin-top: 27px; }
  .content p { font-size: 1.125rem; line-height: 1.55; }
}


@media (prefers-reduced-motion: reduce) {
  .play-button {
    transform: translate(-50%, -50%);
    animation: play-glow 3s ease-in-out infinite;
    will-change: auto;
  }
  .play-button::before {
    transform: none;
    animation: play-ring-glow 3s ease-in-out infinite;
  }
  .play-button::after { animation: none; opacity: 0; }
  .cta { transition: none; }
}

/* Complete publisher disclosures, styled for the white presentation. */
.sponsor-footer {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #dedbd3;
  background: #faf9f6;
  color: #51514d;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: .9375rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.sponsor-footer p { margin: 0 0 .8rem; }
.sponsor-footer p:last-child { margin-bottom: 0; }
.sponsor-footer a { color: #4d4631; text-underline-offset: 3px; }
.sponsor-footer a:hover { color: #151515; }
.sponsor-footer a:focus-visible { outline: 2px solid #8b711a; outline-offset: 4px; }
.disclosures,
.sponsor-site-links,
.sponsor-copyright { width: min(100%, 1000px); margin-inline: auto; }
.disclosures { padding: 32px clamp(20px, 4vw, 36px); }
.disclosures > h2 {
  margin: 0 0 22px;
  color: #242422;
  font-family: Oswald, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
}
.medical-notice {
  padding: 18px 20px;
  border: 1px solid #e1d9bd;
  border-left: 4px solid #d9ae13;
  border-radius: 5px;
  background: #fffdf5;
  color: #35352f;
}
.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.disclosure-grid section {
  min-width: 0;
  padding: 20px;
  border: 1px solid #e6e2d9;
  border-radius: 6px;
  background: #fff;
}
.disclosure-grid h3 { margin: 0 0 9px; color: #242422; font-size: 1rem; line-height: 1.4; }
.disclosure-grid a { display: inline-block; margin-top: 10px; }
.sponsor-site-links {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr) minmax(0, .85fr) minmax(0, 1.05fr);
  gap: 26px;
  padding: 30px clamp(20px, 4vw, 36px);
  border-top: 1px solid #dedbd3;
}
.sponsor-site-links > * { min-width: 0; }
.sponsor-site-links h2 { margin: 0 0 13px; color: #242422; font-size: 1rem; line-height: 1.4; }
.sponsor-owner address { margin-top: 16px; font-style: normal; }
.sponsor-owner address a { display: inline-block; padding-block: 4px; }
.sponsor-site-links ul { margin: 0; padding: 0; list-style: none; }
.sponsor-site-links li { margin: 0; }
.sponsor-site-links nav a { display: inline-block; padding-block: 7px; color: #51514d; text-decoration: none; }
.sponsor-site-links nav a:hover { color: #151515; text-decoration: underline; }
.back-home {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 16px;
  padding: 7px 12px;
  border: 1px solid #aaa38f;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}
.sponsor-copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 20px clamp(20px, 4vw, 36px);
  border-top: 1px solid #dedbd3;
  font-size: .8125rem;
}
@media (max-width: 800px) {
  .sponsor-site-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .disclosures { padding: 26px 16px; }
  .medical-notice { padding: 16px; }
  .disclosure-grid { grid-template-columns: 1fr; gap: 12px; }
  .disclosure-grid section { padding: 17px; }
  .sponsor-site-links { grid-template-columns: 1fr; padding: 26px 16px; gap: 28px; }
  .sponsor-site-links nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; }
  .sponsor-site-links nav a { min-height: 44px; padding-block: 10px; }
  .sponsor-copyright { padding: 20px 16px; }
}
@media (max-width: 368px) {
  .sponsor-site-links nav ul { grid-template-columns: 1fr; }
}
