.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.post-hero {
  padding: 6rem 0 2.5rem;
}

.back-link {
  display: inline-block;
  text-decoration: none;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #E8FF3C;
}

.post-hero .news-date {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8FF3C;
  font-weight: 600;
  margin-bottom: 1rem;
}

.post-hero h1 {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.1;
}

.post-img {
  margin-bottom: 2.5rem;
  background-color: #1E1E1E;
  overflow: hidden;
}

.post-img img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.post-body p {
  font-size: 1.05rem;
  color: #D8D8D0;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.post-footer {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 245, 240, 0.1);
}

@media (max-width: 640px) {
  .post-hero {
    padding: 3.5rem 0 1.5rem;
  }

  .post-img img {
    aspect-ratio: 1.3;
  }
}
