:root {
  --paper: #f7f2ea;
  --panel: #fffaf3;
  --panel-strong: #efe6d9;
  --ink: #2f2a24;
  --ink-soft: #685f54;
  --forest: #1d2b23;
  --taupe: #b8a99a;
  --border: #d7ccbf;
  --shadow: 0 24px 62px rgba(47, 42, 36, 0.12);
  --title-font: "Cormorant Garamond", serif;
  --body-font: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #ece2d4 0%, #f7f2ea 34%, #efe5d8 100%);
}

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

.page-shell {
  padding: 32px;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.flyer {
  width: min(100%, 1100px);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 242, 234, 0.98));
  border: 1px solid rgba(47, 42, 36, 0.08);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel {
  display: block;
  padding: 38px 56px 34px;
  background:
    radial-gradient(circle at right top, rgba(183, 166, 148, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(239, 230, 217, 0.92));
  border-bottom: 1px solid var(--border);
}

.hero-copy {
  display: grid;
  gap: 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--title-font);
}

h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 0.9;
  margin-bottom: 18px;
  max-width: none;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.hero-lead,
.content-card p,
.footer-copy,
.profile-text p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

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

.hero-tags span,
.contact-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 4px;
  background: rgba(29, 43, 35, 0.05);
  border: 1px solid rgba(29, 43, 35, 0.14);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.profile-card {
  background:
    linear-gradient(180deg, #fffdf9 0%, #f0e3d3 100%);
  border: 1px solid rgba(128, 103, 84, 0.18);
  border-radius: 10px;
  padding: 20px 24px 16px;
  box-shadow:
    0 18px 38px rgba(128, 103, 84, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  max-width: 100%;
  margin-top: 24px;
  position: relative;
}

.profile-main {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) 220px;
  gap: 22px;
  align-items: start;
  grid-template-areas:
    "header image"
    "body image";
}

.profile-card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 108px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--taupe));
}

.profile-text {
  min-width: 0;
  display: grid;
  align-content: start;
  order: 1;
  grid-area: header;
  row-gap: 0;
}

.profile-kicker {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.profile-name {
  color: var(--forest);
  font-weight: 700;
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.08;
  margin-bottom: 4px;
}

.profile-role {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9.6px;
  margin-bottom: 2px;
  color: #6f5847;
  font-weight: 800;
  line-height: 1.4;
  display: inline-block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.profile-copy {
  max-width: 56ch;
  order: 1;
  grid-column: 1;
  grid-area: body;
  margin-top: 16px;
}

.profile-copy p {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.48;
  color: var(--ink-soft);
}

.profile-copy p:last-child {
  margin-bottom: 0;
}

.profile-highlight {
  font-weight: 600;
  color: #806754;
}

.profile-image-shell {
  display: grid;
  place-items: start end;
  order: 2;
  justify-self: end;
  grid-column: 2;
  grid-area: image;
}

.profile-body {
  display: contents;
}

.profile-image {
  width: 220px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 28%, #fff7ed 0%, #f4e5d4 52%, #e7d1bd 100%);
  padding: 12px;
  box-shadow:
    0 22px 42px rgba(29, 43, 35, 0.14),
    0 0 0 1px rgba(29, 43, 35, 0.06);
}

.profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.content-grid {
  padding: 0 56px 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.spotlight {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    var(--panel);
}

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

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(260px, 0.72fr);
  gap: 36px;
  align-items: start;
}

.audience-copy p {
  max-width: 62ch;
}

.audience-targets {
  max-width: 300px;
  justify-self: end;
  margin-top: 14px;
}

.audience-targets {
  display: grid;
  gap: 10px;
}

.audience-targets--offset {
  margin-top: 44px;
}

.audience-target-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: end;
  padding: 0 0 12px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(47, 42, 36, 0.1);
  box-shadow: none;
}

.audience-target-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.audience-target-card h3 {
  margin-bottom: 4px;
  color: #171412;
  font-size: 1.05rem;
  line-height: 1.04;
}

.audience-target-card p {
  margin: 0;
  color: #2f2a24;
  font-size: 11.5px;
  line-height: 1.38;
}

.audience-target-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  filter: none;
  align-self: end;
  transform: translateY(0);
}

.audience-target-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.audience-target-icon--tight {
  color: #1d2b23;
  width: 28px;
  height: 28px;
}

.audience-target-icon--tight svg {
  width: 28px;
  height: 28px;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--taupe));
}

.check-list {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 13px;
}

.check-list li {
  margin-bottom: 10px;
  white-space: normal;
}

.offer-stack {
  display: grid;
  gap: 14px;
}

.audience-stack {
  margin-top: 18px;
}

.offer-item {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(47, 42, 36, 0.1);
}

.offer-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.offer-item p,
.timeline-item p {
  margin-bottom: 0;
}

.dark-card {
  background:
    radial-gradient(circle at top right, rgba(183, 166, 148, 0.18), transparent 34%),
    linear-gradient(180deg, #24352b 0%, var(--forest) 100%);
  color: #f6f0e6;
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-card p,
.dark-card h2 {
  color: inherit;
}

.dark-card h2 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.content-card h2 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.result-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.result-list p {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.result-list p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  line-height: 1;
  transform: translateY(1px);
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.16));
}

.result-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.result-item-copy {
  display: block;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #24352b;
  padding-top: 2px;
}

.footer-band {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) 248px;
  gap: 22px;
  padding: 24px 30px 28px;
  background:
    linear-gradient(135deg, rgba(244, 236, 225, 0.96), rgba(234, 223, 209, 0.96));
  border-top: 1px solid var(--border);
  align-items: stretch;
}

.footer-info {
  display: grid;
  align-content: start;
}

.footer-title {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.02;
  color: var(--forest);
}

.footer-copy {
  font-size: 13px;
  line-height: 1.45;
  max-width: 74ch;
  color: var(--ink);
}

.editorial-offers {
  padding: 18px 24px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.editorial-head {
  margin-bottom: 16px;
}

.editorial-lead {
  max-width: 760px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 14px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.editorial-card {
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(36, 53, 43, 0.24);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  min-height: 100%;
  box-shadow: 0 10px 24px rgba(47, 42, 36, 0.05);
  position: relative;
}

.editorial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(36, 53, 43, 0.95), rgba(36, 53, 43, 0.45));
}

.editorial-image-wrap {
  padding: 10px 10px 6px;
  background:
    radial-gradient(circle at 50% 20%, rgba(239, 230, 217, 0.9) 0 34%, transparent 35%);
}

.editorial-image-wrap img {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #ede7de;
  box-shadow: 0 0 0 2px rgba(36, 53, 43, 0.12);
}

.editorial-body {
  padding: 0 10px 12px;
}

.editorial-body h3 {
  font-size: clamp(0.95rem, 1.05vw, 1.14rem);
  line-height: 1.02;
  margin-bottom: 5px;
  color: var(--forest);
}

.editorial-subline {
  margin-bottom: 6px;
  font-size: 8.5px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-divider {
  width: 26px;
  height: 1px;
  margin: 0 auto 7px;
  background: rgba(36, 53, 43, 0.3);
}

.editorial-body p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.28;
  font-size: 10px;
}

.contact-block {
  justify-self: end;
  width: 100%;
  max-width: 188px;
  text-align: center;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(47, 42, 36, 0.09);
  padding: 10px 12px 12px;
  display: grid;
  align-items: start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-content {
  display: grid;
  align-content: start;
  gap: 4px;
  justify-items: center;
}

.contact-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #24352b;
  opacity: 0.8;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-label {
  gap: 8px;
  width: 100%;
  justify-content: center;
  color: #24352b;
}

.contact-name {
  margin: 4px 0 0;
  font-family: var(--title-font);
  font-size: 1.12rem;
  line-height: 0.95;
  color: var(--forest);
}

.contact-value {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 10.5px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .content-grid,
  .footer-band {
    grid-template-columns: 1fr;
  }

  .audience-layout {
    grid-template-columns: 1fr;
  }

  .profile-main {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .profile-body {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .profile-image {
    width: 210px;
  }

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

  .contact-block {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 12px;
  }

  .hero-panel,
  .content-grid,
  .footer-band,
  .editorial-offers {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-panel {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .profile-card {
    padding: 20px 18px;
  }

  .profile-main {
    grid-template-columns: 1fr;
  }

  .profile-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-card::before {
    left: 18px;
  }

  .profile-image-shell {
    place-items: start center;
    order: -1;
  }

  .profile-image {
    width: 190px;
  }

  .content-grid {
    padding-bottom: 22px;
  }

  .footer-band {
    padding-top: 24px;
    padding-bottom: 28px;
  }

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

  .editorial-image-wrap img {
    width: 110px;
    height: 110px;
  }

  .flyer,
  .content-card,
  .profile-card {
    border-radius: 8px;
  }
}

@media (max-width: 760px) {
  .hero-panel {
    padding: 26px 20px 24px;
  }

  .hero-copy {
    gap: 4px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-tags span {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    letter-spacing: 0.14em;
  }

  .content-grid {
    gap: 16px;
    padding: 0 20px 22px;
  }

  .content-card,
  .program-card {
    padding: 22px 18px 20px;
  }

  .content-card::before {
    width: 56px;
  }

  .content-card h2,
  .dark-card h2 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
    line-height: 1.1;
  }

  .audience-layout {
    gap: 22px;
  }

  .audience-copy p {
    max-width: none;
  }

  .audience-targets {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }

  .audience-targets--offset {
    margin-top: 0;
  }

  .audience-target-card {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 10px;
  }

  .audience-target-card h3 {
    font-size: 1rem;
  }

  .audience-target-card p {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .audience-target-icon,
  .audience-target-icon svg,
  .audience-target-icon--tight,
  .audience-target-icon--tight svg {
    width: 24px;
    height: 24px;
  }

  .check-list {
    padding-left: 18px;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
  }

  .check-list li {
    margin-bottom: 8px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline-item,
  .program-card .timeline-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 8px;
  }

  .timeline-item span {
    font-size: 16px;
    padding-top: 0;
  }

  .timeline-item h3,
  .program-card .timeline-item h3 {
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .timeline-item p,
  .program-card .timeline-item p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .result-list {
    gap: 12px;
    margin-top: 16px;
  }

  .result-list p {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    font-size: 13.5px;
    line-height: 1.5;
    padding-bottom: 12px;
  }

  .result-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 0;
  }

  .flyer {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .hero-panel {
    padding: 24px 16px 22px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 2.8rem);
    line-height: 0.96;
    margin-bottom: 14px;
  }

  .content-grid {
    padding: 0 16px 18px;
    gap: 14px;
  }

  .content-card,
  .program-card {
    padding: 20px 16px 18px;
  }

  .timeline-item,
  .program-card .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline-item span {
    justify-content: flex-start;
  }

  .result-list p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .result-icon {
    transform: none;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

@page {
  size: A4 landscape;
  margin: 8mm;
}

@media print {
  html,
  body {
    background: #fff;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .page-shell {
    padding: 0;
  }

  .flyer {
    width: 100%;
    max-width: none;
    border: 1px solid rgba(47, 42, 36, 0.08);
    border-radius: 10px;
    box-shadow: none;
  }

  .hero-panel,
  .content-grid,
  .footer-band,
  .editorial-offers {
    break-inside: avoid;
  }
}

.program-card,
.result-card {
  align-self: start;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.program-card > .eyebrow,
.result-card > .eyebrow,
.program-card > h2,
.result-card > h2 {
  margin-top: 0;
}

.audience-target-card {
  align-items: start;
}

.audience-target-icon {
  align-self: start;
  transform: translateY(2px);
}


.program-card .timeline {
  gap: 12px;
}

.program-card .timeline-item {
  gap: 12px;
  padding: 0 0 8px;
}

.program-card .timeline-item h3 {
  margin: 0 0 4px;
}

.program-card .timeline-item p {
  line-height: 1.4;
}


.program-card,
.result-card {
  align-self: stretch;
  height: 100%;
}

.program-card {
  justify-content: flex-start;
}


.result-card {
  align-self: start;
  height: auto;
}

.program-card {
  align-self: start;
  height: auto;
  padding: 24px 24px 22px;
}

.program-card h2 {
  margin-bottom: 12px;
}

.program-card .timeline {
  gap: 10px;
}

.program-card .timeline-item {
  gap: 10px;
  padding: 0 0 4px;
}

.program-card .timeline-item p {
  line-height: 1.34;
}

@media (min-width: 721px) {
  .content-grid {
    align-items: stretch;
  }

  .program-card,
  .result-card {
    align-self: stretch;
    height: 100%;
  }
}

.peak-performance-page .content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.peak-performance-page .wide-card {
  grid-column: 1 / -1;
}

.peak-performance-page .content-card {
  min-width: 0;
}

.peak-performance-page .audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(260px, 0.72fr);
  gap: 36px;
  align-items: start;
}

.peak-performance-page .audience-target-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
}

.peak-performance-page .result-list p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
}

.peak-performance-page .program-card .timeline-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  min-height: 0;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.peak-performance-page .program-card .timeline-item::before {
  display: none;
}

.peak-performance-page .program-card .timeline-item h3 {
  margin: 0 0 4px;
}

@media (max-width: 920px) {
  .peak-performance-page .content-grid {
    grid-template-columns: 1fr;
  }

  .peak-performance-page .audience-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .peak-performance-page .audience-targets {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }

  .peak-performance-page .audience-targets--offset {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .peak-performance-page .wide-card,
  .peak-performance-page .program-card,
  .peak-performance-page .result-card {
    width: 100%;
    overflow: hidden;
  }

  .peak-performance-page .content-card {
    padding: 22px 18px 20px;
  }

  .peak-performance-page .audience-target-card {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .peak-performance-page .program-card .timeline-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 8px;
  }

  .peak-performance-page .result-list p {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .peak-performance-page .content-card {
    padding: 20px 16px 18px;
  }

  .peak-performance-page .audience-target-card,
  .peak-performance-page .program-card .timeline-item,
  .peak-performance-page .result-list p {
    grid-template-columns: 1fr;
  }

  .peak-performance-page .timeline-item span,
  .peak-performance-page .result-icon {
    justify-content: flex-start;
  }

  .peak-performance-page .result-icon {
    transform: none;
  }
}

