.post-item {
  width: 100%;
}

.post-item__hero {
  margin-bottom: 0;
}

.post-item__hero-link {
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.post-item__hero-link:hover {
  opacity: 0.9;
}

.post-item__hero-image {
  width: 100%;
  aspect-ratio: 9/4;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

.post-item__title-section {
  margin: 3.94rem 0 1.5rem;
}

.post-item__title {
  margin: 0;
  font-family: var(--font-family-calluna);
  font-weight: normal;
  font-size: clamp(1.75rem, 2vw + 1rem, 2rem);
  letter-spacing: 0.6rem;
  text-transform: uppercase;
}

.post-item__content {
  display: block;
}

.post-item__text p {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 2rem;
  color: var(--dark-color);
}

.post-item__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark-color);
  gap: 2rem;
}

.post-item__nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--dark-color);
  transition: color 0.3s ease;
  flex: 1;
}

.post-item__nav-link:hover {
  color: var(--primary-color);
}

.post-item__nav-link--prev {
  text-align: left;
}

.post-item__nav-link--next {
  text-align: right;
  justify-content: flex-end;
}

.post-item__nav-link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.post-item__nav-arrow {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.post-item__nav-label {
  font-family: var(--font-family-metropolis);
  font-size: clamp(0.875rem, 0.8vw + 0.8rem, 1rem);
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .post-item__nav-link {
    flex-direction: row;
  }

  .post-item__nav-link--next {
    flex-direction: row;
  }
}