.ph-gotw {
  --ph-ink: #102a27;
  --ph-muted: #58706b;
  --ph-line: rgba(16, 42, 39, .14);
  --ph-surface: #f6f5ef;
  --ph-surface-strong: #e8f2ec;
  --ph-accent: #ff5c48;
  --ph-accent-dark: #c43f31;
  --ph-green: #1f6f5f;
  color: var(--ph-ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.ph-gotw *,
.ph-gotw *::before,
.ph-gotw *::after {
  box-sizing: border-box;
}

.ph-gotw a {
  color: inherit;
}

.ph-gotw-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.ph-gotw-hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(32px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(232, 242, 236, .92), rgba(255, 255, 255, .96) 58%, rgba(255, 236, 229, .82)),
    var(--ph-surface);
  border-bottom: 1px solid var(--ph-line);
}

.ph-gotw-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.ph-gotw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ph-muted);
  font-size: 14px;
  font-weight: 700;
}

.ph-gotw-breadcrumb a {
  text-decoration: none;
}

.ph-gotw-breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: rgba(88, 112, 107, .6);
}

.ph-gotw-kicker {
  margin: 0 0 12px;
  color: var(--ph-accent-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.ph-gotw h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .95;
  letter-spacing: 0;
}

.ph-gotw-lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: #294642;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.ph-gotw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ph-gotw-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ph-line);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.ph-gotw-button--primary {
  border-color: var(--ph-accent);
  background: var(--ph-accent);
  color: #fff;
}

.ph-gotw-button--secondary {
  background: rgba(255, 255, 255, .72);
}

.ph-gotw-pick {
  border: 1px solid var(--ph-line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 20px 55px rgba(16, 42, 39, .08);
}

.ph-gotw-pick span,
.ph-gotw-pick strong {
  display: block;
}

.ph-gotw-pick span {
  margin-bottom: 12px;
  color: var(--ph-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ph-gotw-pick strong {
  margin-bottom: 10px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.ph-gotw-pick p {
  margin-bottom: 0;
  color: var(--ph-muted);
  line-height: 1.55;
}

.ph-gotw-section {
  padding: clamp(42px, 7vw, 84px) 0;
}

.ph-gotw-featured {
  background: #102a27;
  color: #fff;
}

.ph-gotw-featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .7fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.ph-gotw-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #061311;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
}

.ph-gotw-player::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.ph-gotw-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ph-gotw-notes {
  color: rgba(255, 255, 255, .82);
}

.ph-gotw-notes h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.ph-gotw-notes h2 span {
  display: inline-block;
  max-width: 100%;
}

.ph-gotw-notes ul {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.ph-gotw-notes li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}

.ph-gotw-notes li::before {
  content: "";
  position: absolute;
  top: .64em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ph-accent);
}

.ph-gotw-source {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.6;
}

.ph-gotw-watch {
  background: var(--ph-surface);
}

.ph-gotw-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.ph-gotw-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.ph-gotw-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ph-gotw-summary {
  max-width: 940px;
  border: 1px solid var(--ph-line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
}

.ph-gotw-cards article {
  min-height: 230px;
  border: 1px solid var(--ph-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.ph-gotw-cards span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--ph-surface-strong);
  color: var(--ph-green);
  font-weight: 800;
}

.ph-gotw-cards h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.ph-gotw-cards p {
  margin-bottom: 0;
  color: var(--ph-muted);
  line-height: 1.6;
}

.ph-gotw-summary p {
  margin-bottom: 18px;
  color: var(--ph-muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
}

.ph-gotw-summary p:last-child {
  margin-bottom: 0;
}

.ph-gotw-archive {
  background: #fff;
}

.ph-gotw-archive-list {
  display: grid;
  gap: 18px;
}

.ph-gotw-archive-card {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  border: 1px solid var(--ph-line);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background: var(--ph-surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ph-gotw-archive-card:hover {
  border-color: rgba(255, 92, 72, .48);
  box-shadow: 0 18px 45px rgba(16, 42, 39, .1);
  transform: translateY(-1px);
}

.ph-gotw-archive-thumb {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #102a27;
  aspect-ratio: 16 / 9;
}

.ph-gotw-archive-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ph-gotw-archive-body h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: 0;
}

.ph-gotw-archive-body p:not(.ph-gotw-kicker) {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--ph-muted);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .ph-gotw-hero__grid,
  .ph-gotw-featured__grid,
  .ph-gotw-archive-card {
    grid-template-columns: 1fr;
  }

  .ph-gotw-pick {
    max-width: 420px;
  }

  .ph-gotw-cards {
    grid-template-columns: 1fr;
  }

  .ph-gotw-cards article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .ph-gotw-wrap {
    width: min(100% - 24px, 1120px);
  }

  .ph-gotw-hero {
    padding-top: 42px;
  }

  .ph-gotw h1 {
    font-size: 44px;
  }

  .ph-gotw-actions {
    display: grid;
  }

  .ph-gotw-button {
    width: 100%;
  }

  .ph-gotw-pick {
    padding: 18px;
  }
}
