/* ── Home Page Specific Styles ── */

/* Keep sticky header + dropdown above immersive hero layers */
.home-page .site-header { z-index: 80; }

/* Immersive Hero */
.immersive-hero {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 50px;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  filter: grayscale(20%) brightness(0.6) contrast(1.2);
  transform: scale(1.05);
  animation: bg-drift 30s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes bg-drift {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.08) translate(1%, 2%); }
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  /* Same top as before; softer bottom so chevron still reads */
  background: linear-gradient(to bottom, rgba(6,10,8,0.2) 0%, rgba(6,10,8,0.55) 55%, rgba(6,10,8,0.65) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  transform: translateY(-20px);
}
.hero-logo-sub {
  display: block;
  font: 600 0.65rem var(--mono);
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-logo h1 {
  font: 500 clamp(4rem, 8vw, 7.5rem)/1 var(--display);
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 80px rgba(230,57,70,0.4);
}
.hero-logo-bottom {
  display: block;
  font: 400 1.2rem var(--display);
  color: var(--red-bright);
  font-style: italic;
  margin-top: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.home-hero-lede { max-width: 620px; margin: 22px auto 0; color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.7; text-shadow: 0 2px 12px rgba(0,0,0,.8); }

/* Feed Layout (2 Column) */
.feed-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.feed-heading {
  font: 600 1.2rem var(--display);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Left Column: Feed List */
.feed-list {
  display: flex;
  flex-direction: column;
}
.feed-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease);
}
.feed-item:first-child {
  padding-top: 0;
}
.feed-item:hover {
  background: rgba(255,255,255,0.02);
  transform: translateX(10px);
}
.feed-item-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.feed-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.feed-item:hover .feed-item-img img {
  transform: scale(1.05);
}
.feed-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feed-item-content h3 {
  font: 500 1.6rem/1.2 var(--display);
  margin: 0 0 10px 0;
  color: var(--white);
}
.feed-date {
  font: 500 0.65rem var(--mono);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Right Column: Sidebar List */
.sidebar-list {
  display: flex;
  flex-direction: column;
}
.sidebar-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s var(--ease);
}
.sidebar-item:first-child {
  padding-top: 0;
}
.sidebar-item:hover {
  background: rgba(255,255,255,0.02);
}
.sidebar-item-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
}
.sidebar-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-badge {
  font: 700 0.55rem var(--mono);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.badge-blue { color: var(--blue); }
.badge-red { color: var(--red-bright); }
.badge-gold { color: var(--gold); }
.badge-green { color: #3d8a5e; }

.sidebar-item h3,
.sidebar-item h4 {
  font: 500 1.1rem/1.2 var(--display);
  margin: 0 0 6px 0;
  color: var(--white);
}
.sidebar-meta {
  font: 500 0.55rem var(--mono);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
  .feed-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .feed-item {
    grid-template-columns: 140px 1fr;
    gap: 20px;
  }
  .hero-logo h1 {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .feed-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .sidebar-item {
    grid-template-columns: 80px 1fr;
  }
}
