:root {
  --bg: #eaf0e8;
  --bg-soft: #f5faf4;
  --ink: #17261f;
  --muted: #5b7165;
  --line: #cad8ca;
  --panel: #ffffff;
  --accent: #2f7150;
  --accent-ink: #113624;
  --hero-bg: #0f1713;
  --hero-ink: #f4f9f5;
  --shadow: rgba(18, 37, 27, 0.14);

  --page-pad: clamp(0.75rem, 2.4vw, 2.25rem);
  --section-gap: clamp(0.95rem, 2vw, 1.7rem);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --max-content: 1240px;
  --max-feed: 1660px;
  --max-clip: 1080px;
  --max-hero: 1880px;
  --max-header: 1620px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 13% -6%, #dce9d9 0%, transparent 35%),
    radial-gradient(circle at 94% 0%, #e8f1e5 0%, transparent 38%),
    var(--bg);
}

a {
  color: inherit;
}

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

.public-body {
  width: 100%;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, #f9fcf8 84%, transparent);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  width: min(var(--max-header), 100%);
  margin-inline: auto;
  padding: 0.82rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-header-inner > :first-child {
  min-width: 0;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(1.06rem, 1vw + 0.78rem, 1.56rem);
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.site-header p {
  margin: 0.14rem 0 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.46vw + 0.62rem, 0.95rem);
  overflow-wrap: anywhere;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid #afc5b3;
  border-radius: 999px;
  background: #fff;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #244633;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.32rem 0.5rem;
  min-width: 2.1rem;
  cursor: pointer;
}

.lang-btn:hover {
  background: #edf6ee;
}

.lang-btn-active {
  background: #2f7150;
  color: #fff;
}

.site-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #afc5b3;
  border-radius: 999px;
  background: #fff;
  color: #244633;
  text-decoration: none;
  padding: 0.36rem 0.76rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-main {
  width: 100%;
  margin: 0;
  padding: clamp(0.52rem, 1.3vw, 1.05rem) 0 2.3rem;
  display: grid;
  gap: var(--section-gap);
}

.page-section {
  width: 100%;
  min-width: 0;
  padding-inline: var(--page-pad);
}

.page-section-hero,
.page-section-media {
  padding-inline: 0;
}

.section-shell {
  --shell-max: var(--max-content);
  width: min(100%, var(--shell-max));
  margin-inline: auto;
  min-width: 0;
}

.section-shell--content {
  --shell-max: var(--max-content);
}

.section-shell--feed {
  --shell-max: var(--max-feed);
}

.section-shell--clip {
  --shell-max: var(--max-clip);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 14px 32px var(--shadow);
  padding: clamp(0.86rem, 1.7vw, 1.3rem);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
  min-width: 0;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: clamp(1.02rem, 0.7vw + 0.84rem, 1.42rem);
  overflow-wrap: anywhere;
}

.section-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.hero-section {
  width: min(var(--max-hero), 100%);
  margin-inline: auto;
  border-radius: 0;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--hero-ink);
  min-width: 0;
}

.hero-section-grid {
  display: grid;
  min-width: 0;
}

.hero-media {
  display: block;
  width: 100%;
  min-height: clamp(13.25rem, 50vh, 31rem);
  max-height: 84vh;
  background: #09110d;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  min-height: clamp(13.25rem, 50vh, 31rem);
  object-fit: cover;
}

.hero-content {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: clamp(0.95rem, 2.2vw, 2rem) var(--page-pad) clamp(1.05rem, 2.3vw, 2.1rem);
  background: linear-gradient(0deg, #111915 0%, rgba(17, 25, 21, 0.95) 100%);
}

.hero-content h2 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.3rem, 2.1vw + 0.5rem, 2.45rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.hero-content h2 a {
  text-decoration: none;
}

.hero-content p {
  margin: 0;
  max-width: 60ch;
  color: #dae9e0;
  font-size: clamp(0.9rem, 0.35vw + 0.83rem, 1.03rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.hero-kicker {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #acd1bc;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
  color: #c7ddcf;
  font-size: 0.82rem;
  min-width: 0;
}

.hero-actions {
  margin-top: 0.12rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-glance-inline {
  margin-top: 0.34rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
  min-width: 0;
}

.hero-glance-item {
  border: 1px solid rgba(198, 222, 207, 0.25);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.54rem;
  min-width: 0;
}

.hero-glance-item span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  color: #b9d6c7;
  overflow-wrap: anywhere;
}

.hero-glance-item strong {
  font-size: 0.97rem;
  overflow-wrap: anywhere;
}

.glance-section h2 {
  margin: 0 0 0.64rem;
}

.glance-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 0.58rem;
  min-width: 0;
}

.glance-card {
  border: 1px solid #c8d9c9;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fafdfa, #f2f8f0);
  padding: 0.62rem;
  min-width: 0;
}

.glance-card span {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--muted);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.glance-card strong {
  display: block;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.activity-chart-list {
  margin-top: 0.64rem;
  display: grid;
  gap: 0.62rem;
  min-width: 0;
}

.activity-card {
  border: 1px solid #cad9cc;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fdfffd, #f4faf3);
  padding: 0.64rem;
  min-width: 0;
}

.activity-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.56rem;
  margin-bottom: 0.42rem;
  min-width: 0;
}

.activity-card-head h3 {
  margin: 0;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.activity-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  overflow-wrap: anywhere;
}

.hourly-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding-bottom: 0.22rem;
}

.hourly-bars {
  width: 100%;
  height: 66px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  gap: 2px;
  align-items: end;
  min-width: 0;
}

.hourly-bar {
  min-height: 4px;
  height: 6%;
  border-radius: 5px 5px 0 0;
  background: #d8e3d7;
}

.hourly-bar-active {
  background: linear-gradient(180deg, #56cc85, #258a50);
}

.highlight-feed {
  margin-top: 0.76rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(100%, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.2rem);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.24rem;
  min-width: 0;
}

.highlight-item {
  border: 1px solid #c9d9cb;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 35px rgba(18, 35, 26, 0.12);
  overflow: hidden;
  min-width: 0;
  scroll-snap-align: start;
}

.highlight-media {
  position: relative;
  display: grid;
  align-items: stretch;
  width: 100%;
  min-height: clamp(13rem, 42vh, 30rem);
  background: #0d1511;
  overflow: hidden;
}

.highlight-media img,
.highlight-media video {
  width: 100%;
  height: 100%;
  min-height: clamp(13rem, 42vh, 30rem);
  object-fit: cover;
}

.highlight-media-frame {
  position: relative;
  width: 100%;
  min-height: inherit;
  overflow: hidden;
  cursor: pointer;
}

.highlight-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.highlight-preview-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  color: #d4e7d9;
  font-size: 0.85rem;
  padding: 1rem;
  background: linear-gradient(180deg, #1a2821, #101a15);
  text-align: center;
}

.highlight-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background: #08100c;
}

.highlight-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.48rem;
  padding: clamp(0.82rem, 1.45vw, 1.28rem);
}

.highlight-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.56rem;
  min-width: 0;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  font-size: 0.73rem;
  font-weight: 700;
  max-width: 100%;
}

.tag-activity {
  background: #e7f5ea;
  color: #1f6a3f;
  border-color: #bfe2c8;
}

.tag-arrival {
  background: #e9f3ff;
  color: #17538b;
  border-color: #bfd7f5;
}

.tag-departure {
  background: #fff2e8;
  color: #8a4f1d;
  border-color: #f1ceb2;
}

.tag-time {
  background: #f4f0ff;
  color: #5f4298;
  border-color: #d5c8f1;
}

.tag-vision {
  background: #f3f3f3;
  color: #4f5e57;
  border-color: #d9dddb;
}

.tag-snapshot {
  background: #fff8e2;
  color: #8a6c1c;
  border-color: #ebd8a6;
}

.tag-timelapse {
  background: #e7f0f7;
  color: #1f5d73;
  border-color: #c4d9e6;
}

.highlight-time {
  color: var(--muted);
  font-size: 0.82rem;
}

.highlight-title {
  margin: 0;
  font-size: clamp(1.02rem, 0.62vw + 0.86rem, 1.32rem);
  min-width: 0;
}

.highlight-title a {
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.highlight-desc {
  margin: 0;
  color: #33473d;
  font-size: 0.93rem;
  line-height: 1.47;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.highlight-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
  overflow-wrap: anywhere;
}

.highlight-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.highlight-metrics span {
  border: 1px solid #d9e5d9;
  border-radius: 999px;
  background: #f8fcf7;
  padding: 0.13rem 0.44rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.highlight-discuss-teaser {
  margin: 0;
  color: #385044;
  font-size: 0.82rem;
  font-weight: 600;
}

.highlight-actions .btn {
  min-width: 4.9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  min-width: 0;
}

.button-row > * {
  max-width: 100%;
}

.section-actions {
  margin-top: 0.72rem;
}

.swipe-row {
  width: 100%;
  min-width: 0;
  margin-top: 0.6rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(15.5rem, 74vw, 23rem);
  gap: 0.7rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0.2rem;
}

.swipe-card {
  min-width: 0;
  border: 1px solid #c8d9cb;
  border-radius: var(--radius-md);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(20, 37, 28, 0.1);
  overflow: hidden;
  scroll-snap-align: start;
}

.swipe-card-media {
  height: clamp(9.4rem, 24vw, 13rem);
  background: #0d1511;
}

.swipe-card-media img,
.swipe-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swipe-card-body {
  min-width: 0;
  padding: 0.6rem;
  display: grid;
  gap: 0.28rem;
}

.swipe-card-title {
  min-width: 0;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.34;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.swipe-card-meta {
  font-size: 0.77rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.camera-status-list,
.updates-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.58rem;
  min-width: 0;
}

.camera-status-item,
.update-item {
  min-width: 0;
  border: 1px solid #cadacb;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fcfffb, #f3f9f2);
  padding: 0.64rem;
}

.camera-status-head,
.update-head {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.camera-status-head h3,
.update-head h3 {
  margin: 0;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.camera-status-metrics {
  margin-top: 0.38rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #bdd4c2;
  background: #e8f5ea;
  color: #245734;
  font-size: 0.72rem;
  padding: 0.14rem 0.48rem;
  font-weight: 700;
}

.status-quiet {
  background: #edf1ed;
  color: #536258;
  border-color: #d4ddd6;
}

.update-body {
  margin: 0.36rem 0 0;
  color: #33473d;
  font-size: 0.88rem;
  line-height: 1.47;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.update-meta {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.support-copy {
  min-width: 0;
  display: grid;
  gap: 0.44rem;
}

.support-copy h2,
.support-copy h3 {
  margin: 0;
  font-size: clamp(1.07rem, 0.7vw + 0.86rem, 1.38rem);
  overflow-wrap: anywhere;
}

.support-copy p {
  margin: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.support-hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.support-note {
  color: var(--accent-ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.support-qr-link {
  display: inline-flex;
  border: 1px solid #bfd2c1;
  border-radius: 12px;
  background: #fff;
  padding: 0.5rem;
  flex-shrink: 0;
}

.support-qr-image {
  width: clamp(110px, 15vw, 172px);
  aspect-ratio: 1;
  object-fit: contain;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0.4rem 0 1.7rem;
}

.site-footer-inner {
  width: min(var(--max-content), 100%);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  color: var(--muted);
  font-size: 0.84rem;
}

.btn {
  appearance: none;
  border: 1px solid #afc4b3;
  border-radius: 11px;
  background: #fff;
  color: #234533;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.46rem 0.78rem;
  cursor: pointer;
}

.btn-primary {
  border-color: #1f6143;
  background: var(--accent);
  color: #fff;
}

.btn:hover {
  filter: brightness(0.97);
}

.input {
  width: 100%;
  max-width: 100%;
  border: 1px solid #bbcfbc;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.page-section-media {
  padding-inline: 0;
}

.clip-media-section {
  width: min(var(--max-hero), 100%);
  margin-inline: auto;
  border-radius: 0;
  overflow: hidden;
  background: #09110d;
}

.clip-media-wrap {
  min-height: clamp(17rem, 70vh, 54rem);
  background: #070d0a;
}

.clip-media-wrap img,
.clip-media-wrap video {
  width: 100%;
  height: 100%;
  min-height: clamp(17rem, 70vh, 54rem);
  max-height: 85vh;
  object-fit: contain;
  background: #070d0a;
}

.moment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.44rem;
  min-width: 0;
}

.moment-time {
  color: var(--muted);
  font-size: 0.83rem;
}

.moment-section h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1vw + 0.92rem, 1.95rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.moment-description {
  margin: 0.52rem 0 0;
  color: #30433a;
  font-size: 0.96rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.moment-meta {
  margin: 0.34rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.moment-summary {
  margin-top: 0.7rem;
  border: 1px solid #d3dfd1;
  border-radius: var(--radius-md);
  background: #f7fbf6;
  color: #30443a;
  padding: 0.62rem;
  font-size: 0.89rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.metrics-inline {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  min-width: 0;
}

.metrics-inline > div {
  border: 1px solid #d2dfd0;
  border-radius: var(--radius-sm);
  background: #fbfdfb;
  padding: 0.52rem;
  min-width: 0;
}

.metrics-inline span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.metrics-inline strong {
  display: block;
  margin-top: 0.16rem;
  overflow-wrap: anywhere;
}

.clip-actions-section {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
}

.action-block {
  min-width: 0;
}

.action-block h3 {
  margin: 0;
  overflow-wrap: anywhere;
}

.rating-row {
  margin-top: 0.44rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.star-btn {
  border: 1px solid #c5d7c9;
  border-radius: 9px;
  width: 2.2rem;
  height: 2.2rem;
  background: #fff;
  color: #ab8210;
  font-size: 1.08rem;
  cursor: pointer;
}

.discussion-section h3 {
  margin: 0;
}

.comment-form {
  margin-top: 0.56rem;
  display: grid;
  gap: 0.54rem;
}

.comment-grid {
  display: grid;
  gap: 0.54rem;
  min-width: 0;
}

.comment-grid label {
  min-width: 0;
  display: grid;
  gap: 0.26rem;
}

.comment-grid span {
  font-size: 0.78rem;
  color: var(--muted);
}

.comments-list {
  margin-top: 0.68rem;
  display: grid;
  gap: 0.56rem;
}

.comment-item {
  border: 1px solid #d2dfd1;
  border-radius: var(--radius-sm);
  background: #fbfdfb;
  padding: 0.55rem;
  min-width: 0;
}

.comment-head {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-bottom: 0.26rem;
}

.comment-author {
  font-size: 0.83rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.comment-time {
  font-size: 0.77rem;
  color: var(--muted);
}

.comment-body {
  margin: 0;
  color: #32463b;
  font-size: 0.89rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.support-mini {
  margin-bottom: 0.82rem;
}

#discussion {
  scroll-margin-top: 5.4rem;
}

@media (max-width: 430px) {
  .site-header-inner {
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-pill {
    padding-inline: 0.58rem;
    font-size: 0.74rem;
  }

  .hero-glance-inline {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img,
  .hero-media video {
    min-height: clamp(11.6rem, 40vh, 14.2rem);
  }

  .highlight-media,
  .highlight-media img,
  .highlight-media video {
    min-height: clamp(12.5rem, 36vh, 16.2rem);
  }

  .swipe-row {
    grid-auto-columns: min(84vw, 18rem);
  }

  .highlight-feed {
    grid-auto-columns: 100%;
  }
}

@media (max-width: 600px) {
  .hero-content {
    gap: 0.5rem;
    padding-top: 0.78rem;
    padding-bottom: 0.86rem;
  }

  .hero-media,
  .hero-media img,
  .hero-media video {
    min-height: clamp(12.5rem, 44vh, 18rem);
  }
}

@media (min-width: 680px) {
  .hero-section,
  .clip-media-section {
    border-radius: var(--radius-lg);
  }

  .hero-section {
    border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
    box-shadow: 0 16px 38px rgba(16, 33, 24, 0.18);
  }

  .swipe-row {
    grid-auto-columns: clamp(16.5rem, 44vw, 23rem);
  }

  .highlight-feed {
    grid-auto-columns: minmax(72%, 1fr);
  }

  .metrics-inline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .hero-section-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }

  .hero-content {
    align-content: center;
  }

  .hero-media,
  .hero-media img,
  .hero-media video {
    min-height: clamp(19rem, 58vh, 39rem);
  }

  .highlight-feed {
    grid-auto-columns: minmax(48%, 1fr);
  }

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

  .comment-grid {
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  }
}

@media (min-width: 1200px) {
  .swipe-row {
    grid-auto-columns: clamp(17.5rem, 30vw, 23rem);
  }

  .glance-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .highlight-feed {
    grid-auto-columns: minmax(42%, 1fr);
  }
}

@media (min-width: 1600px) {
  :root {
    --max-content: 1380px;
    --max-feed: 1860px;
    --max-clip: 1160px;
    --max-hero: 2080px;
  }

  .hero-media,
  .hero-media img,
  .hero-media video {
    min-height: clamp(24rem, 72vh, 60rem);
  }

  .highlight-feed {
    grid-auto-columns: minmax(36%, 1fr);
  }
}

@media (orientation: landscape) and (max-width: 960px) {
  .hero-section-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  }

  .hero-media,
  .hero-media img,
  .hero-media video {
    min-height: clamp(15rem, 58vh, 26rem);
  }

  .clip-media-wrap,
  .clip-media-wrap img,
  .clip-media-wrap video {
    min-height: clamp(14rem, 56vh, 24rem);
  }
}

@media (max-width: 959px) {
  .support-section {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
