.post {
  max-width: 72rem;
  margin-inline: auto;
  padding: clamp(7rem, 12vw, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 4.5rem);
  font-family: system-ui, sans-serif;
  color: #17181a;
  background: #ffffff;
}

.post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: rgba(23, 24, 26, 0.55);
  text-decoration: none;
}

.post__back-box {
  --px: 2px;
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  overflow: hidden;
  transform: rotate(180deg);
}

.post__back-chevron {
  position: absolute;
  top: calc(50% - 3.5 * var(--px));
  left: calc(50% - 2 * var(--px));
  width: var(--px);
  height: var(--px);
  color: currentColor;
  background: currentColor;
  box-shadow:
    var(--px) var(--px),
    calc(2 * var(--px)) calc(2 * var(--px)),
    calc(3 * var(--px)) calc(3 * var(--px)),
    calc(2 * var(--px)) calc(4 * var(--px)),
    var(--px) calc(5 * var(--px)),
    0 calc(6 * var(--px));
}

@media (hover: hover) {
  .post__back:hover {
    color: #17181a;
  }
}

.post__hero {
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-radius: 1.35rem;
  aspect-ratio: 16 / 9;
  background-color: #f7f6f4;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.post__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.post__eyebrow {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #f0efed;
  font-size: 0.8rem;
  color: rgba(23, 24, 26, 0.7);
}

.post__title {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.post__lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(23, 24, 26, 0.6);
}

.post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(23, 24, 26, 0.5);
}

.post__author {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #17181a;
}

.post__author img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 50%;
}

.post__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 40rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(23, 24, 26, 0.78);
}

.post__body h2 {
  margin-top: 1.5rem;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #17181a;
}

.post__body p strong {
  font-weight: 500;
  color: #17181a;
}

.post__pull {
  margin: 1rem 0;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: #f7f6f4;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #17181a;
}

.post__more {
  max-width: 72rem;
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
  font-family: system-ui, sans-serif;
  color: #17181a;
}

.post__more-title {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
