:root {
  --c5-night: #080c12;
  --c5-panel: #111824;
  --c5-panel-2: #182131;
  --c5-paper: #f6f7f4;
  --c5-white: #ffffff;
  --c5-ink: #10151d;
  --c5-muted: #7a8491;
  --c5-light-muted: #aeb6c0;
  --c5-line-dark: #2f3b4b;
  --c5-line-light: #cfd4d8;
  --c5-signal: #eeff00;
  --c5-coral: #ff5f3d;
  --c5-coral-text: #c9360a;
  --c5-focus: #63b8ff;
  --c5-shade: rgba(5, 9, 14, 0.62);
  --c5-grid-line: rgba(255, 255, 255, 0.1);
  --c5-shadow: rgba(0, 0, 0, 0.28);
  --c5-max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
}

.c5-body {
  background: var(--c5-night);
  color: var(--c5-white);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.65;
}

.c5-body a {
  color: inherit;
  text-decoration: none;
}

.c5-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--c5-signal);
  color: var(--c5-ink) !important;
  transform: translateY(-160%);
}

.c5-skip:focus {
  transform: translateY(0);
}

.c5-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 max(28px, calc((100vw - var(--c5-max)) / 2));
  border-bottom: 1px solid var(--c5-line-dark);
  background: var(--c5-night);
}

.c5-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.c5-brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid var(--c5-coral);
  border-radius: 50%;
}

.c5-brand-mark span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--c5-coral);
  border-radius: 50%;
}

.c5-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
}

.c5-nav a {
  min-width: 46px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: var(--c5-light-muted);
  font-size: 13px;
  font-weight: 700;
}

.c5-nav a:hover,
.c5-nav a:focus-visible {
  color: var(--c5-white);
}

.c5-nav .c5-compare-link {
  min-width: auto;
  padding: 0 16px;
  border: 1px solid var(--c5-line-dark);
  color: var(--c5-white);
}

.c5-menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c5-line-dark);
  border-radius: 4px;
  background: var(--c5-panel);
  color: var(--c5-white);
  cursor: pointer;
}

.c5-menu-button svg,
.c5-button svg,
.c5-inline-link svg,
.c5-card-action svg,
.c5-comment-head svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.c5-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--c5-line-dark);
}

.c5-hero-image,
.c5-hero-shade,
.c5-hero-grid {
  position: absolute;
  inset: 0;
}

.c5-hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.c5-hero-shade {
  background: var(--c5-shade);
}

.c5-hero-grid {
  pointer-events: none;
}

.c5-hero-grid::before,
.c5-hero-grid::after {
  content: "";
  position: absolute;
  background: var(--c5-grid-line);
}

.c5-hero-grid::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.c5-hero-grid::after {
  right: 0;
  left: 0;
  top: 50%;
  height: 1px;
}

.c5-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--c5-max), calc(100% - 56px));
  margin: 0 auto;
  padding: 96px 0 192px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c5-kicker {
  margin: 0 0 18px;
  color: var(--c5-coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.c5-hero-content .c5-kicker {
  color: var(--c5-signal);
}

.c5-hero-content h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 66px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

.c5-hero-content > p:not(.c5-kicker) {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--c5-light-muted);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.c5-hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.c5-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.c5-button-light {
  background: var(--c5-white);
  color: var(--c5-ink) !important;
}

.c5-button-light:hover {
  background: var(--c5-signal);
}

.c5-button-dark {
  background: var(--c5-ink);
  color: var(--c5-white) !important;
}

.c5-button-dark:hover {
  background: var(--c5-coral);
}

.c5-inline-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c5-white);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--c5-white);
}

.c5-session-player {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - var(--c5-max)) / 2));
  bottom: 0;
  left: max(28px, calc((100vw - var(--c5-max)) / 2));
  min-height: 118px;
  display: grid;
  grid-template-columns: 72px minmax(260px, 0.9fr) minmax(240px, 1.2fr) 108px 108px;
  align-items: center;
  background: var(--c5-panel);
  border: 1px solid var(--c5-line-dark);
  box-shadow: 0 -16px 50px var(--c5-shadow);
}

.c5-play-button {
  width: 72px;
  height: 100%;
  min-height: 116px;
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid var(--c5-line-dark);
  border-radius: 0;
  background: var(--c5-signal);
  color: var(--c5-ink);
  cursor: pointer;
}

.c5-play-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.c5-player-copy {
  min-width: 0;
  padding: 0 28px;
  display: grid;
  gap: 8px;
}

.c5-player-copy span,
.c5-player-format span {
  color: var(--c5-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
}

.c5-player-copy strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c5-wave {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 28px;
  border-left: 1px solid var(--c5-line-dark);
  border-right: 1px solid var(--c5-line-dark);
}

.c5-wave span {
  width: 5px;
  height: 16px;
  display: block;
  background: var(--c5-coral);
  transform-origin: center;
}

.c5-wave span:nth-child(2n) {
  height: 30px;
}

.c5-wave span:nth-child(3n) {
  height: 46px;
}

.c5-session-player.is-playing .c5-wave span {
  animation: c5-pulse 820ms ease-in-out infinite alternate;
}

.c5-session-player.is-playing .c5-wave span:nth-child(2n) {
  animation-delay: 120ms;
}

.c5-session-player.is-playing .c5-wave span:nth-child(3n) {
  animation-delay: 240ms;
}

@keyframes c5-pulse {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}

.c5-player-format {
  min-height: 116px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border-right: 1px solid var(--c5-line-dark);
}

.c5-player-format:last-child {
  border-right: 0;
}

.c5-player-format strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.c5-listen,
.c5-library,
.c5-community,
.c5-subscribe {
  padding: 116px max(28px, calc((100vw - var(--c5-max)) / 2));
}

.c5-listen {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(480px, 1.1fr);
  gap: 88px;
  align-items: center;
  background: var(--c5-paper);
  color: var(--c5-ink);
}

.c5-listen-copy h2,
.c5-section-heading h2,
.c5-community h2,
.c5-subscribe h2 {
  margin: 0;
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  word-break: keep-all;
}

.c5-listen .c5-kicker,
.c5-community .c5-kicker,
.c5-chapter-panel > span {
  color: var(--c5-coral-text);
}

.c5-intro {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--c5-muted);
  line-height: 1.8;
  word-break: keep-all;
}

.c5-chapter-tabs {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c5-ink);
}

.c5-chapter-tabs button {
  min-height: 56px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid var(--c5-ink);
  border-radius: 0;
  background: var(--c5-paper);
  color: var(--c5-ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.c5-chapter-tabs button:last-child {
  border-right: 0;
}

.c5-chapter-tabs button span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.c5-chapter-tabs button.is-active {
  background: var(--c5-ink);
  color: var(--c5-white);
}

.c5-chapter-panel {
  min-height: 360px;
  padding: 34px;
  border-right: 1px solid var(--c5-ink);
  border-bottom: 1px solid var(--c5-ink);
  border-left: 1px solid var(--c5-ink);
}

.c5-chapter-panel > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
}

.c5-chapter-panel h3 {
  margin: 22px 0 0;
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 29px;
  line-height: 1.45;
  word-break: keep-all;
}

.c5-chapter-panel > p {
  margin: 16px 0 0;
  color: var(--c5-muted);
  line-height: 1.8;
}

.c5-chapter-panel dl {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--c5-line-light);
}

.c5-chapter-panel dl div {
  padding: 18px 18px 0 0;
  display: grid;
  gap: 6px;
}

.c5-chapter-panel dt {
  color: var(--c5-muted);
  font-size: 12px;
}

.c5-chapter-panel dd {
  margin: 0;
  font-weight: 800;
}

.c5-console-visual {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--c5-panel);
}

.c5-console-visual img {
  height: 690px;
  object-fit: cover;
  object-position: center;
}

.c5-console-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px;
  display: grid;
  gap: 6px;
  background: var(--c5-night);
  color: var(--c5-white);
  border: 1px solid var(--c5-line-dark);
}

.c5-console-visual figcaption span {
  color: var(--c5-signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
}

.c5-console-visual figcaption strong {
  font-size: 16px;
  line-height: 1.55;
  word-break: keep-all;
}

.c5-library {
  background: var(--c5-night);
}

.c5-section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.c5-section-heading > p:not(.c5-kicker) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--c5-light-muted);
}

.c5-library-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: 24px;
}

.c5-library-feature {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--c5-line-dark);
  border-radius: 6px;
}

.c5-library-feature > img {
  height: 690px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.c5-library-feature:hover > img {
  transform: scale(1.025);
}

.c5-library-feature > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  background: var(--c5-panel);
  border-top: 1px solid var(--c5-line-dark);
}

.c5-library-feature > div > span:first-child,
.c5-library-rail a > span {
  color: var(--c5-signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
}

.c5-library-feature h3 {
  max-width: 720px;
  margin: 16px 0 0;
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 31px;
  line-height: 1.4;
  word-break: keep-all;
}

.c5-library-feature p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--c5-light-muted);
}

.c5-card-action {
  min-height: 44px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.c5-library-rail {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-top: 1px solid var(--c5-line-dark);
}

.c5-library-rail a {
  position: relative;
  min-height: 210px;
  padding: 30px 76px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--c5-line-dark);
  border-bottom: 1px solid var(--c5-line-dark);
  border-left: 1px solid var(--c5-line-dark);
  transition: background 180ms ease, color 180ms ease;
}

.c5-library-rail a:hover {
  background: var(--c5-signal);
  color: var(--c5-ink);
}

.c5-library-rail a:hover > span {
  color: var(--c5-ink);
}

.c5-library-rail strong {
  font-size: 22px;
  line-height: 1.5;
  word-break: keep-all;
}

.c5-library-rail svg {
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 26px;
  height: 26px;
}

.c5-community {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(480px, 1.2fr);
  gap: 90px;
  align-items: center;
  background: var(--c5-paper);
  color: var(--c5-ink);
}

.c5-community-copy > p:not(.c5-kicker) {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--c5-muted);
  line-height: 1.8;
  word-break: keep-all;
}

.c5-comment-form {
  padding: 30px;
  border: 1px solid var(--c5-ink);
  border-radius: 6px;
  background: var(--c5-white);
}

.c5-comment-head {
  min-height: 50px;
  margin: -30px -30px 26px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--c5-ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
}

.c5-comment-head span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c5-comment-form label,
.c5-subscribe label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
}

.c5-comment-form textarea {
  width: 100%;
  min-height: 150px;
  padding: 16px;
  resize: vertical;
  border: 1px solid var(--c5-line-light);
  border-radius: 4px;
  background: var(--c5-paper);
  color: var(--c5-ink);
  line-height: 1.7;
}

.c5-comment-actions {
  min-height: 58px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.c5-comment-actions p {
  margin: 0;
  color: var(--c5-muted);
  font-size: 12px;
}

.c5-subscribe {
  display: grid;
  grid-template-columns: 190px minmax(360px, 0.8fr) minmax(420px, 1.2fr);
  gap: 54px;
  align-items: end;
  background: var(--c5-panel);
  border-top: 1px solid var(--c5-line-dark);
}

.c5-subscribe-index {
  color: var(--c5-line-dark);
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
}

.c5-subscribe-copy .c5-kicker {
  color: var(--c5-signal);
}

.c5-subscribe-copy > p:not(.c5-kicker) {
  margin: 20px 0 0;
  color: var(--c5-light-muted);
}

.c5-email-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.c5-email-row input {
  min-width: 0;
  padding: 0 18px;
  border: 1px solid var(--c5-line-dark);
  border-radius: 4px;
  background: var(--c5-night);
  color: var(--c5-white);
  font-size: 17px;
}

.c5-email-row input::placeholder {
  color: var(--c5-muted);
}

.c5-email-row button {
  min-height: 64px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--c5-signal);
  color: var(--c5-ink);
  font-weight: 900;
  cursor: pointer;
}

.c5-email-row button svg {
  width: 20px;
  height: 20px;
}

.c5-form-note,
.c5-form-status {
  margin: 14px 0 0;
  color: var(--c5-light-muted);
  font-size: 12px;
}

.c5-form-status {
  min-height: 20px;
  color: var(--c5-signal);
}

.c5-footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(28px, calc((100vw - var(--c5-max)) / 2));
  border-top: 1px solid var(--c5-line-dark);
  background: var(--c5-night);
  color: var(--c5-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.c5-library-feature:focus-visible,
.c5-library-rail a:focus-visible,
.c5-body button:focus-visible,
.c5-body input:focus-visible,
.c5-body textarea:focus-visible,
.c5-body a:focus-visible {
  outline: 3px solid var(--c5-focus);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .c5-header {
    padding: 0 24px;
  }

  .c5-nav {
    gap: 18px;
  }

  .c5-hero-content {
    width: calc(100% - 64px);
  }

  .c5-session-player {
    right: 32px;
    left: 32px;
    grid-template-columns: 72px minmax(220px, 1fr) minmax(180px, 0.8fr) 92px 92px;
  }

  .c5-listen,
  .c5-library,
  .c5-community,
  .c5-subscribe {
    padding: 96px 32px;
  }

  .c5-listen {
    grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 1.1fr);
    gap: 52px;
  }

  .c5-subscribe {
    grid-template-columns: minmax(320px, 0.8fr) minmax(400px, 1.2fr);
  }

  .c5-subscribe-index {
    display: none;
  }
}

@media (max-width: 860px) {
  .c5-nav {
    position: absolute;
    top: 75px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--c5-line-dark);
    background: var(--c5-night);
  }

  .c5-nav.is-open {
    display: flex;
  }

  .c5-nav a {
    padding: 0 8px;
  }

  .c5-menu-button {
    display: inline-flex;
  }

  .c5-hero-content h1 {
    font-size: 56px;
  }

  .c5-session-player {
    grid-template-columns: 68px minmax(0, 1fr) 180px;
  }

  .c5-play-button {
    width: 68px;
  }

  .c5-player-format {
    display: none;
  }

  .c5-wave {
    border-right: 0;
  }

  .c5-listen,
  .c5-community,
  .c5-subscribe {
    grid-template-columns: 1fr;
  }

  .c5-console-visual {
    min-height: 560px;
  }

  .c5-console-visual img {
    height: 560px;
  }

  .c5-library-grid {
    grid-template-columns: 1fr;
  }

  .c5-library-rail {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    border-top: 0;
  }

  .c5-library-rail a {
    min-height: 240px;
  }
}

@media (max-width: 580px) {
  .c5-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .c5-nav {
    top: 67px;
  }

  .c5-brand {
    font-size: 13px;
  }

  .c5-hero {
    min-height: 820px;
  }

  .c5-hero-image {
    object-position: 64% center;
  }

  .c5-hero-content {
    width: calc(100% - 40px);
    padding: 70px 0 214px;
    justify-content: flex-start;
  }

  .c5-hero-content h1 {
    font-size: 42px;
    line-height: 1.22;
  }

  .c5-hero-content > p:not(.c5-kicker) {
    margin-top: 24px;
    font-size: 16px;
  }

  .c5-hero-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .c5-inline-link {
    width: fit-content;
  }

  .c5-session-player {
    right: 16px;
    bottom: 16px;
    left: 16px;
    min-height: 160px;
    grid-template-columns: 64px 1fr;
    grid-template-rows: 80px 80px;
  }

  .c5-play-button {
    width: 64px;
    min-height: 80px;
    grid-row: 1;
  }

  .c5-player-copy {
    padding: 0 16px;
  }

  .c5-wave {
    grid-column: 1 / -1;
    height: 80px;
    justify-content: center;
    border-top: 1px solid var(--c5-line-dark);
    border-left: 0;
  }

  .c5-listen,
  .c5-library,
  .c5-community,
  .c5-subscribe {
    padding: 78px 20px;
  }

  .c5-listen-copy h2,
  .c5-section-heading h2,
  .c5-community h2,
  .c5-subscribe h2 {
    font-size: 36px;
  }

  .c5-chapter-tabs {
    grid-template-columns: 1fr;
  }

  .c5-chapter-tabs button {
    min-height: 52px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--c5-ink);
  }

  .c5-chapter-tabs button:last-child {
    border-bottom: 0;
  }

  .c5-chapter-panel {
    min-height: 420px;
    padding: 24px;
  }

  .c5-chapter-panel h3 {
    font-size: 25px;
  }

  .c5-chapter-panel dl {
    grid-template-columns: 1fr;
  }

  .c5-console-visual,
  .c5-console-visual img {
    min-height: 430px;
    height: 430px;
  }

  .c5-console-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
  }

  .c5-library-feature,
  .c5-library-feature > img {
    min-height: 620px;
    height: 620px;
  }

  .c5-library-feature > div {
    padding: 24px;
  }

  .c5-library-feature h3 {
    font-size: 25px;
  }

  .c5-library-rail {
    grid-template-columns: 1fr;
  }

  .c5-library-rail a {
    min-height: 210px;
  }

  .c5-comment-form {
    padding: 22px;
  }

  .c5-comment-head {
    min-height: 66px;
    margin: -22px -22px 22px;
    padding: 10px 14px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .c5-comment-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .c5-email-row {
    grid-template-columns: 1fr;
  }

  .c5-email-row input,
  .c5-email-row button {
    min-height: 58px;
  }

  .c5-footer {
    padding: 24px 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .c5-session-player.is-playing .c5-wave span,
  .c5-library-feature > img {
    animation: none;
    transition: none;
  }
}
