#primary {
  margin-top: clamp(47px, 200rem, 140px);
}

.post-hero__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 60rem, 32px);
  align-items: flex-start;
}

.post-hero__content {
  flex: 1 1 320px;
  order: 1;
}

.post-hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 30rem, 20px);
}

.post-hero__nav {
  display: flex;
  gap: clamp(10px, 30rem, 16px);
}

.post-hero__thumb {
  flex: 0 1 360px;
  order: 3;
}

.post-thumb img {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 30rem, 18px);
  display: block;
  box-shadow: 0 1px 3px 1px #e5e7e4;
}

.post-title {
  margin: 0 0 clamp(10px, 25rem, 16px);
  line-height: 1.2;
  font-size: var(--text-2);
  text-align: left;
}

.post-hero__row.no-thumb .post-title {
  margin: 0;
}

.post-description {
  margin: 0;
  text-align: left;
  line-height: 1.5;
}

.post-breadcrumbs {
  margin: 0;
  font-size: clamp(16px, 40rem, 24px);
  color: var(--black);
}

.post-hero__row.no-thumb .post-breadcrumbs {
  margin-top: clamp(16px, 40rem, 24px);
}

.post-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.post-breadcrumbs .current {
  color: #111827;
}

.post-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 20rem, 12px);
  color: #111827;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.post-nav__link:hover {
  transform: scale(1.2);
}

.post-content {
  margin-top: clamp(24px, 70rem, 48px);
  text-align: left;
  line-height: 1.6;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .post-hero__top {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .post-hero__thumb {
    order: 2;
    width: 100%;
  }
}
