:root {
  --cw-ink: #17343a;
  --cw-ink-deep: #0c2227;
  --cw-ink-soft: #315d64;
  --cw-paper: #fff9ee;
  --cw-cream: #fff3dc;
  --cw-cloud: #f6fbfa;
  --cw-teal: #1aa7a1;
  --cw-teal-soft: #dcf5f1;
  --cw-coral: #ff6f61;
  --cw-coral-soft: #ffe5df;
  --cw-gold: #f6c85f;
  --cw-gold-soft: #fff0bd;
  --cw-leaf: #65a86b;
  --cw-leaf-soft: #e5f5e7;
  --cw-indigo: #6257b8;
  --cw-indigo-soft: #eeebff;
  --cw-sky: #dff2ff;
  --cw-rust: #b75d3f;
  --cw-border: rgba(23, 52, 58, 0.15);
  --cw-shadow: 0 18px 44px rgba(14, 35, 39, 0.14);
  --cw-text: #21454b;
  --cw-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cw-paper);
  color: var(--cw-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

input,
select,
button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  padding: 10px 14px;
  background: var(--cw-ink);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 249, 238, 0.9);
  border-bottom: 1px solid rgba(23, 52, 58, 0.12);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.site-footer__inner,
.wrap {
  width: min(var(--cw-max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cw-ink);
  text-decoration: none;
}

.site-brand {
  flex: 0 0 auto;
}

.site-brand__mark,
.site-footer__mark {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 20px rgba(23, 52, 58, 0.16);
}

.site-brand__name,
.site-footer__name {
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.site-nav,
.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
  min-width: 0;
}

.site-nav a,
.site-footer__nav a {
  color: var(--cw-ink);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 8px;
}

.site-nav a {
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--cw-teal-soft);
  outline: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 4px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cw-ink);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  color: var(--cw-coral);
  outline: none;
}

.social-links__icon {
  display: inline-flex;
  width: 21px;
  height: 21px;
  color: currentColor;
}

.social-links__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.social-links__icon--youtube svg,
.social-links__icon--x svg {
  fill: currentColor;
}

.social-links__icon--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-links__icon--instagram circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-links__separator {
  color: rgba(23, 52, 58, 0.42);
  font-weight: 900;
  line-height: 1;
}

.site-main {
  min-height: 60vh;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  background: var(--cw-coral);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 111, 97, 0.24);
}

.button--light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--cw-ink);
  border-color: rgba(23, 52, 58, 0.18);
}

.button--dark {
  background: var(--cw-ink);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cw-coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 32px;
  max-width: none;
}

.section-heading h2,
.split-layout h2,
.gear-layout h2,
.media-layout h2,
.launch-video-copy h2,
.community-layout h2,
.finder-layout h2,
.closing-card h2 {
  margin: 0;
  color: var(--cw-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-layout p,
.gear-layout p,
.media-layout p,
.launch-video-copy p,
.community-layout p,
.finder-layout p,
.closing-card p {
  color: var(--cw-text);
  font-size: 1.05rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 730px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #cdeee9;
}

.hero--video {
  min-height: min(700px, calc(100svh - 96px));
  background: var(--cw-ink-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 249, 238, 0.98) 0%, rgba(255, 249, 238, 0.88) 40%, rgba(255, 249, 238, 0.34) 68%, rgba(23, 52, 58, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 249, 238, 0.05), rgba(23, 52, 58, 0.18));
}

.hero--video::before {
  background:
    linear-gradient(90deg, rgba(255, 249, 238, 0.98) 0%, rgba(255, 249, 238, 0.9) 42%, rgba(255, 249, 238, 0.3) 70%, rgba(12, 34, 39, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 249, 238, 0.02), rgba(12, 34, 39, 0.22));
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--cw-shadow);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-shot--one {
  right: 8%;
  top: 7%;
  width: 33%;
  aspect-ratio: 3 / 2;
  transform: rotate(-3deg);
}

.hero-shot--two {
  right: -2%;
  top: 32%;
  width: 34%;
  aspect-ratio: 4 / 3;
  transform: rotate(4deg);
}

.hero-shot--three {
  right: 21%;
  bottom: 8%;
  width: 31%;
  aspect-ratio: 3 / 2;
  transform: rotate(2deg);
}

.hero-shot--four {
  right: 46%;
  bottom: 4%;
  width: 24%;
  aspect-ratio: 3 / 2;
  transform: rotate(-5deg);
  opacity: 0.88;
}

.hero__inner {
  position: relative;
  padding: 78px 0 92px;
}

.hero--video .hero__inner {
  padding: 64px 0 76px;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.7rem;
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: 0;
  color: var(--cw-ink);
}

.hero__intro {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--cw-text);
  font-size: 1.22rem;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 690px;
  margin-top: 34px;
}

.hero__ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 52, 58, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--cw-ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
}

.daily {
  background: var(--cw-ink);
  color: #fff;
}

.daily .eyebrow,
.daily h2,
.daily p {
  color: #fff;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 12px;
}

.schedule-card {
  display: block;
  min-height: 152px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.schedule-card:hover,
.schedule-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.schedule-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  background: var(--cw-gold);
  color: var(--cw-ink);
  font-weight: 950;
}

.schedule-card h3 {
  min-height: 54px;
  margin: 16px 0 8px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.schedule-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.care-zone {
  background: var(--cw-cloud);
}

.health-zone {
  background: var(--cw-coral-soft);
}

.gear-zone {
  background: #ecf7f5;
}

.culture-zone {
  background: var(--cw-indigo-soft);
}

.books-zone {
  background: #f7f0df;
}

.comics-zone {
  background: var(--cw-ink-deep);
  color: #fff;
}

.comics-zone .section-heading h2,
.comics-zone .section-heading p,
.comics-zone .eyebrow {
  color: #fff;
}

.media-zone {
  background: var(--cw-paper);
}

.launch-video-zone {
  background: #ecf7f5;
}

.videos-zone {
  background: #fff7f4;
}

.community-zone {
  background: var(--cw-sky);
}

.finder-zone {
  background: var(--cw-leaf-soft);
}

.closing-zone {
  background: var(--cw-gold-soft);
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.compact-card,
.comic-card,
.finder-card,
.closing-card {
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.feature-card {
  min-height: 235px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(23, 52, 58, 0.08);
}

.feature-card.feature-card--image {
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

.feature-card--light {
  background: rgba(255, 255, 255, 0.72);
}

.feature-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cw-cloud);
  text-decoration: none;
}

.feature-card__image img,
.compact-card__thumb img,
.gear-panel__image img,
.community-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__body {
  padding: 24px;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--cw-teal-soft);
  color: var(--cw-ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h3,
.compact-card h3,
.community-panel h3 {
  margin: 0 0 10px;
  color: var(--cw-ink);
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-card h3 a,
.compact-card h3 a,
.community-panel h3 a {
  color: inherit;
  text-decoration: none;
}

.feature-card p,
.compact-card p {
  margin: 0;
  color: var(--cw-text);
}

.split-layout,
.gear-layout,
.media-layout,
.launch-video-layout,
.community-layout,
.finder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.stacked-cards {
  display: grid;
  gap: 14px;
}

.compact-card {
  min-height: 130px;
  padding: 22px;
}

.compact-card__thumb {
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  margin: -22px -22px 18px;
  border-radius: 8px 8px 0 0;
  background: var(--cw-cloud);
  text-decoration: none;
}

.gear-layout {
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
}

.gear-layout .button,
.media-layout .button,
.community-layout .button {
  justify-self: start;
  margin-top: 10px;
}

.gear-panel {
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 52, 58, 0.1);
}

.gear-panel__image {
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--cw-cloud);
}

.gear-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.gear-board a,
.media-tags span {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(23, 52, 58, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--cw-ink);
  font-weight: 850;
}

.gear-board a {
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gear-board a:hover,
.gear-board a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(23, 52, 58, 0.34);
  background: #f7fbfa;
  outline: none;
}

.latest-comics {
  margin-bottom: 24px;
}

.latest-comic {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  color: var(--cw-ink);
  box-shadow: var(--cw-shadow);
}

.latest-comic__image {
  min-height: 320px;
  background: var(--cw-cloud);
  text-decoration: none;
}

.latest-comic__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.latest-comic__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
  padding: 28px;
  border-left: 8px solid var(--cw-indigo);
}

.latest-comic__body span {
  margin-bottom: 8px;
  color: var(--cw-ink-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.latest-comic__body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.latest-comic__body h3 a {
  text-decoration: none;
}

.latest-comic__body p {
  margin: 0 0 18px;
  color: var(--cw-text);
  font-weight: 800;
}

.comic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.book-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 52, 58, 0.1);
}

.book-card__cover {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(26, 167, 161, 0.14), rgba(246, 200, 95, 0.22)),
    #fff9ee;
  text-decoration: none;
}

.book-card__cover img {
  width: min(100%, 220px);
  aspect-ratio: 943 / 1500;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(12, 34, 39, 0.22);
}

.book-card__body {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
}

.book-card__body span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--cw-gold-soft);
  color: var(--cw-ink);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.book-card__body h3 {
  margin: 0;
  color: var(--cw-ink);
  font-size: 1.18rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.book-card__body h3 a,
.book-card__link {
  color: inherit;
  text-decoration: none;
}

.book-card__subtitle {
  margin: 10px 0 12px;
  color: var(--cw-ink-soft);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.book-card__body p:not(.book-card__subtitle) {
  margin: 0;
  color: var(--cw-text);
  font-size: 0.95rem;
}

.book-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cw-ink);
  color: #fff;
  font-weight: 900;
}

.comic-card {
  display: block;
  overflow: hidden;
  background: #fff;
  color: var(--cw-ink);
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.comic-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cw-cloud);
}

.comic-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.comic-card:hover .comic-card__image img {
  transform: scale(1.025);
}

.comic-card__body {
  min-height: 160px;
  padding: 18px;
  border-top: 6px solid var(--cw-teal);
}

.comic-card--coral .comic-card__body {
  border-color: var(--cw-coral);
}

.comic-card--rust .comic-card__body {
  border-color: var(--cw-rust);
}

.comic-card--indigo .comic-card__body {
  border-color: var(--cw-indigo);
}

.comic-card--cyan .comic-card__body {
  border-color: #2fbfd0;
}

.comic-card--gold .comic-card__body {
  border-color: var(--cw-gold);
}

.comic-card--leaf .comic-card__body {
  border-color: var(--cw-leaf);
}

.comic-card__body span,
.community-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--cw-ink-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.comic-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.comic-card__body p {
  margin: 0;
  color: var(--cw-text);
  font-size: 0.95rem;
}

.media-layout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.media-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--cw-shadow);
}

.media-preview img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
}

.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.media-tags span {
  min-height: 42px;
  padding: 10px 12px;
}

.launch-video-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
}

.launch-video-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.launch-video-copy h2,
.launch-video-copy p {
  margin: 0;
}

.launch-video-copy .button {
  justify-self: start;
  margin-top: 2px;
}

.launch-video-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: var(--cw-ink-deep);
  box-shadow: var(--cw-shadow);
}

.launch-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--cw-ink-deep);
}

.videos-follow {
  display: grid;
  gap: 14px;
}

.videos-follow p {
  margin: 0;
  color: var(--cw-text);
  font-size: 1.02rem;
  font-weight: 700;
}

.social-links--videos {
  justify-content: center;
}

.social-links--videos a {
  color: var(--cw-ink-deep);
}

.video-feed {
  min-height: 220px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 52, 58, 0.1);
}

.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--cw-ink);
}

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

.video-card__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.video-card__fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.video-card__fallback span {
  position: relative;
  z-index: 1;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(12, 34, 39, 0.86);
}

.video-card__body {
  min-height: 150px;
  padding: 18px;
}

.video-card__body span {
  display: block;
  margin-bottom: 8px;
  color: var(--cw-coral);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-card__body h3 {
  margin: 0 0 14px;
  color: var(--cw-ink);
  font-size: 1.2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.video-card__body a {
  color: var(--cw-ink);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.video-empty {
  min-height: 260px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: #fff;
}

.video-empty h3 {
  margin: 0;
  color: var(--cw-ink);
  font-size: 1.35rem;
}

.community-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
}

.community-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.community-panel article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(23, 52, 58, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.community-panel__feature {
  overflow: hidden;
  padding-top: 0;
}

.community-panel__feature a:first-child {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: -18px -18px 16px;
  background: var(--cw-cloud);
}

.community-panel p {
  margin: 0;
  color: var(--cw-text);
  font-size: 0.94rem;
}

.finder-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
}

.finder-card,
.vet-embed-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(23, 52, 58, 0.1);
}

.finder-card label {
  display: grid;
  gap: 7px;
  color: var(--cw-ink);
  font-weight: 850;
}

.finder-card input,
.finder-card select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(23, 52, 58, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--cw-ink);
  padding: 10px 12px;
}

.vet-embed-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.vet-embed-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--cw-border);
  background: linear-gradient(90deg, rgba(220, 245, 241, 0.9), rgba(255, 240, 189, 0.7));
}

.vet-embed-card__bar span {
  display: block;
  color: var(--cw-ink-soft);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vet-embed-card__bar strong {
  display: block;
  color: var(--cw-ink);
  font-size: 1.12rem;
}

.vet-embed-card__bar a {
  flex: 0 0 auto;
  color: var(--cw-ink);
  font-weight: 900;
  text-decoration: none;
}

.vet-frame {
  width: 100%;
  height: 620px;
  display: block;
  border: 0;
  background: #fff;
}

.vet-fallback {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.vet-fallback h3 {
  margin: 0 0 10px;
  color: var(--cw-ink);
  font-size: 1.35rem;
}

.vet-fallback p {
  margin: 0;
}

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(23, 52, 58, 0.08);
}

.simple-page {
  padding: 90px 0;
  background: var(--cw-cloud);
}

.simple-page__article {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--cw-border);
  overflow-wrap: break-word;
}

.simple-page__article--comic {
  max-width: 960px;
}

.simple-page__article .wp-block-image {
  max-width: 100%;
  margin: 0 0 24px;
}

.simple-page__article .wp-block-image a {
  display: block;
  max-width: 100%;
}

.simple-page__article .wp-block-image img {
  width: 100%;
}

.simple-page__article h1,
.simple-page__article figcaption,
.simple-page__article .entry-content {
  max-width: 100%;
  overflow-wrap: break-word;
}

.simple-page__article .catworldly-comic-meta {
  padding: 14px 16px;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: var(--cw-cloud);
  overflow-wrap: anywhere;
}

.archive-hero {
  padding: 92px 0 48px;
  background: linear-gradient(180deg, var(--cw-cloud), #fff);
}

.archive-hero__inner {
  display: grid;
  gap: 14px;
}

.archive-hero h1 {
  margin: 0;
  color: var(--cw-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.archive-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--cw-text);
  font-size: 1.08rem;
}

.archive-quick-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.archive-quick-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(23, 52, 58, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--cw-ink);
  font-weight: 900;
  text-decoration: none;
}

.archive-listing {
  padding: 54px 0 92px;
  background: #fff;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.archive-card {
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(23, 52, 58, 0.08);
}

.archive-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cw-cloud);
}

.archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.archive-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.archive-card__body span {
  color: var(--cw-coral);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.archive-card__body h2 {
  margin: 0;
  color: var(--cw-ink);
  font-size: 1.35rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.archive-card__body h2 a {
  color: inherit;
  text-decoration: none;
}

.archive-card__body p {
  margin: 0;
  color: var(--cw-text);
}

.archive-card__link,
.most-liked-card__link {
  justify-self: start;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--cw-ink);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.archive-empty {
  max-width: 720px;
  padding: 34px;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: var(--cw-cloud);
}

.comic-actions {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cw-border);
}

.comic-like {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.comic-like__button,
.comic-share__button,
.comic-actions__archive-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(23, 52, 58, 0.18);
  background: #fff;
  color: var(--cw-ink);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.comic-like__button {
  cursor: pointer;
  background: var(--cw-coral);
  border-color: var(--cw-coral);
  color: #fff;
}

.comic-like__button:hover,
.comic-like__button:focus-visible,
.comic-share__button:hover,
.comic-share__button:focus-visible,
.comic-actions__archive-links a:hover,
.comic-actions__archive-links a:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.comic-like__button:disabled {
  cursor: default;
  opacity: 0.78;
  transform: none;
}

.comic-like__button.is-liked {
  background: var(--cw-leaf);
  border-color: var(--cw-leaf);
}

.comic-like__count {
  color: var(--cw-text);
  font-weight: 900;
}

.comic-share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.comic-share__button {
  min-height: 38px;
  padding: 9px 12px;
  background: var(--cw-cloud);
  font-size: 0.9rem;
}

.comic-actions__archive-links {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.comic-actions__archive-links a {
  background: var(--cw-teal-soft);
}

.most-liked-comics {
  display: grid;
  gap: 18px;
}

.most-liked-comics__intro {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: var(--cw-cloud);
}

.most-liked-comics__intro h2 {
  margin: 0;
  color: var(--cw-ink);
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.most-liked-comics__intro p {
  margin: 0;
  color: var(--cw-text);
}

.most-liked-comics__note {
  font-weight: 850;
}

.most-liked-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--cw-border);
  border-radius: 8px;
  background: #fff;
}

.most-liked-card__image {
  display: block;
  min-height: 190px;
  background: var(--cw-cloud);
}

.most-liked-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.most-liked-card__body {
  padding: 22px;
}

.most-liked-card__body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--cw-coral);
  font-weight: 950;
}

.most-liked-card__body h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.most-liked-card__body h2 a {
  color: var(--cw-ink);
  text-decoration: none;
}

.most-liked-card__body p,
.most-liked-comics__empty {
  margin: 0;
  color: var(--cw-text);
}

.site-footer {
  background: #17343a;
  color: #f9f4e8;
  padding: 52px 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(200px, 0.5fr) minmax(250px, 0.9fr) minmax(250px, 0.75fr) minmax(210px, 0.55fr);
  gap: 28px;
  align-items: center;
}

.site-footer__brand {
  color: #f9f4e8;
}

.site-footer__mark {
  width: 70px;
  height: 70px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.site-footer__name {
  font-size: 1.55rem;
}

.site-footer p {
  margin: 0;
  color: rgba(249, 244, 232, 0.78);
}

.site-footer a {
  color: #f9f4e8;
}

.site-footer__nav {
  justify-content: flex-end;
}

.site-footer__nav a {
  color: #f9f4e8;
  padding: 8px 0;
}

.social-links--footer {
  grid-column: 1 / -1;
  justify-content: center;
  padding-top: 4px;
}

.social-links--footer a {
  color: #f9f4e8;
}

.social-links--footer a:hover,
.social-links--footer a:focus-visible {
  color: var(--cw-gold);
}

.social-links--footer .social-links__separator {
  color: rgba(249, 244, 232, 0.44);
}

@media (max-width: 1100px) {
  .schedule-grid,
  .comic-grid,
  .book-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shot--one {
    width: 38%;
  }

  .hero-shot--two {
    width: 39%;
  }

  .hero-shot--three {
    width: 36%;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
    gap: 8px;
  }

  .site-brand__mark {
    width: 54px;
    height: 54px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: 690px;
  }

  .hero--video {
    min-height: min(650px, calc(100svh - 118px));
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 249, 238, 0.98) 0%, rgba(255, 249, 238, 0.84) 56%, rgba(23, 52, 58, 0.06) 100%);
  }

  .hero--video::before {
    background:
      linear-gradient(180deg, rgba(255, 249, 238, 0.98) 0%, rgba(255, 249, 238, 0.86) 58%, rgba(12, 34, 39, 0.24) 100%);
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-shot--one {
    right: -6%;
    top: 46%;
    width: 46%;
  }

  .hero-shot--two {
    right: 18%;
    top: 57%;
    width: 42%;
  }

  .hero-shot--three {
    right: 58%;
    bottom: 2%;
    width: 38%;
  }

  .hero-shot--four {
    display: none;
  }

  .section-heading--row,
  .split-layout,
  .gear-layout,
  .media-layout,
  .launch-video-layout,
  .community-layout,
  .finder-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .feature-grid--three,
  .community-panel,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .gear-board {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .social-links--footer {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 144px;
  }

  .wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(var(--cw-max), calc(100% - 24px));
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    column-gap: 10px;
    row-gap: 8px;
    overflow-x: hidden;
    flex-wrap: initial;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .site-brand__name {
    font-size: 1.25rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .split-layout h2,
  .gear-layout h2,
  .media-layout h2,
  .launch-video-copy h2,
  .community-layout h2,
  .finder-layout h2,
  .closing-card h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 665px;
  }

  .hero--video {
    min-height: min(600px, calc(100svh - 156px));
  }

  .hero__inner {
    padding: 48px 0 210px;
  }

  .hero--video .hero__inner {
    padding: 42px 0 56px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero__intro {
    font-size: 1.04rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .hero-shot {
    border-width: 3px;
  }

  .hero-shot--one {
    top: auto;
    right: -10%;
    bottom: 26px;
    width: 58%;
  }

  .hero-shot--two {
    top: auto;
    right: 32%;
    bottom: 16px;
    width: 54%;
  }

  .hero-shot--three {
    display: none;
  }

  .schedule-grid,
  .comic-grid,
  .book-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    min-height: auto;
  }

  .feature-card,
  .compact-card,
  .finder-card,
  .simple-page__article,
  .vet-fallback,
  .closing-card {
    padding: 22px;
  }

  .simple-page {
    padding: 56px 0;
  }

  .simple-page > .wrap {
    width: 100%;
    max-width: none;
    padding-right: 12px;
    padding-left: 12px;
  }

  .simple-page__article,
  .simple-page__article--comic {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .simple-page__article h1 {
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .simple-page__article p,
  .simple-page__article figcaption,
  .simple-page__article .entry-content,
  .simple-page__article .wp-block-image,
  .simple-page__article .wp-block-image a,
  .simple-page__article .wp-block-image img {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .simple-page__article .catworldly-comic-meta {
    font-size: 0.95rem;
  }

  .vet-embed-card__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vet-frame {
    height: 560px;
  }

  .gear-board {
    grid-template-columns: 1fr;
  }

  .latest-comic {
    grid-template-columns: 1fr;
  }

  .comic-actions,
  .most-liked-card {
    grid-template-columns: 1fr;
  }

  .comic-share {
    justify-content: flex-start;
  }

  .latest-comic__image,
  .latest-comic__body {
    min-height: auto;
  }

  .latest-comic__body {
    border-left: 0;
    border-top: 8px solid var(--cw-indigo);
  }

  .comic-card__body {
    min-height: auto;
  }

  .media-preview img {
    max-height: 440px;
  }

  .closing-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
