
.feed-page {
  min-height: 100vh;
}

.feed-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 150px 0 90px;
  border-bottom: 1px solid rgba(226,239,229,.08);
}

.feed-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219,238,221,.18), transparent);
}

.feed-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.feed-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(5rem, 11vw, 10rem);
}

.feed-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(225,239,226,.65);
}

.feed-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(226,239,229,.13);
  border-radius: 999px;
  color: #9fb1a2;
  background: rgba(225,239,226,.035);
  font: 500 .66rem "DM Mono", monospace;
  letter-spacing: .09em;
}

.feed-live-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8d7bb;
  box-shadow: 0 0 12px rgba(184,215,187,.62);
  animation: newsPulse 1.8s ease-in-out infinite;
}

.feed-hero-panel {
  border: 1px solid rgba(226,239,229,.12);
  border-radius: 25px;
  overflow: hidden;
  background: rgba(8,12,9,.5);
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
}

.feed-panel-line {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(226,239,229,.08);
}

.feed-panel-line:last-child {
  border-bottom: 0;
}

.feed-panel-line span {
  color: #718076;
  font: 500 .65rem "DM Mono", monospace;
  letter-spacing: .08em;
}

.feed-panel-line strong {
  overflow-wrap: anywhere;
  font-size: .88rem;
}

.feed-section {
  min-height: 650px;
}

.feed-section-head {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}

.feed-section-head h2 {
  margin: 18px 0 0;
}

.feed-section-head > p {
  margin: 0 0 8px;
  text-align: right;
  color: #7f8d82;
  font: 500 .68rem "DM Mono", monospace;
  letter-spacing: .05em;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.feed-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(226,239,229,.1);
  border-radius: 23px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    rgba(8,12,9,.42);
  transition:
    transform .3s cubic-bezier(.2,.75,.25,1),
    border-color .3s ease,
    box-shadow .3s ease;
}

.feed-card:hover {
  transform: translateY(-7px);
  border-color: rgba(218,239,220,.23);
  box-shadow: 0 26px 68px rgba(0,0,0,.28);
}

.feed-card-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 1px solid rgba(226,239,229,.09);
  filter: saturate(.82) contrast(1.03) brightness(.85);
}

.feed-card-body {
  padding: 24px 24px 64px;
}

.feed-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #718077;
  font: 500 .63rem "DM Mono", monospace;
  letter-spacing: .07em;
}

.feed-card h3 {
  margin-bottom: 11px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.feed-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  white-space: pre-wrap;
}

.feed-card-source {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  padding-top: 13px;
  border-top: 1px solid rgba(226,239,229,.08);
  display: flex;
  justify-content: space-between;
  color: #6e7d72;
  font: 500 .61rem "DM Mono", monospace;
  letter-spacing: .06em;
}

.feed-card-link {
  cursor: pointer;
}

.feed-card-link:focus-visible {
  outline: 1px solid rgba(218,239,220,.6);
  outline-offset: 3px;
}

.feed-empty {
  max-width: 620px;
  margin: 30px auto 0;
  padding: 55px 30px;
  text-align: center;
  border: 1px dashed rgba(226,239,229,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.015);
}

.feed-empty-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,239,229,.16);
  border-radius: 50%;
  background: rgba(226,239,229,.035);
  color: #a4b4a7;
  font: 600 .9rem "DM Mono", monospace;
}

.feed-empty h3 {
  font-size: 1.4rem;
}

.feed-empty p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted);
}

@media (max-width: 900px) {
  .feed-hero-grid,
  .feed-section-head {
    grid-template-columns: 1fr;
  }

  .feed-hero {
    min-height: auto;
  }

  .feed-section-head {
    gap: 20px;
  }

  .feed-section-head > p {
    text-align: left;
  }

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

@media (max-width: 620px) {
  .feed-hero {
    padding-top: 125px;
  }

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

  .feed-panel-line {
    grid-template-columns: 100px 1fr;
    padding: 17px;
  }
}


/* PLAYABLE SURFACE + SNIPPETS MEDIA ------------------------------------- */
.feed-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226,239,229,.09);
  background:
    radial-gradient(circle at 50% 15%, rgba(189,218,192,.08), transparent 42%),
    #050806;
}

.feed-video {
  display: block;
  width: 100%;
  max-height: 460px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #020302;
}

.feed-media-audio {
  padding: 24px 22px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(190,220,194,.12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
}

.audio-visual {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 20px;
}

.audio-disc {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225,240,227,.17);
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(255,255,255,.035) 0 2px,
      transparent 2px 5px
    ),
    #0c120e;
  color: #adbfaf;
  box-shadow: 0 0 30px rgba(168,201,173,.07);
  font: 600 .7rem "DM Mono", monospace;
}

.audio-track-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.audio-track-info span {
  color: #718077;
  font: 500 .61rem "DM Mono", monospace;
  letter-spacing: .08em;
}

.audio-track-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .95rem;
}

.feed-audio {
  width: 100%;
  height: 42px;
  accent-color: #b9d2bb;
}

.song-name-label {
  margin-bottom: 15px;
}

.song-name-label > span {
  display: block;
  margin-bottom: 6px;
  color: #728076;
  font: 500 .61rem "DM Mono", monospace;
  letter-spacing: .1em;
}

.song-name-label > strong {
  display: block;
  color: #edf4ee;
  font-size: 1.24rem;
  line-height: 1.12;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}

.feed-card:has(.feed-media) {
  min-height: 0;
}

.feed-card:has(.feed-media) .feed-card-body {
  padding-top: 21px;
}

@media (max-width: 620px) {
  .feed-video {
    max-height: 360px;
  }

  .feed-media-audio {
    padding: 20px 17px 17px;
  }
}
