.post-cta {
  margin-top: 72px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.post-cta__eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
}
.post-cta__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .025em;
}
.post-cta__text { max-width: 700px; color: var(--blue); line-height: 1.9; }
.post-cta__text p { margin: 0 0 16px; }
.post-cta__text p:last-child { margin-bottom: 0; }
.post-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.post-cta__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 20px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.post-cta__button--primary { background: var(--navy); color: var(--white); }
.post-cta__button--primary:hover { background: var(--navy-deep); }
.post-cta__button--outline { background: transparent; color: var(--navy); }
.post-cta__button--outline:hover { background: var(--blue-pale); }
.post-cta__button:hover { transform: translateY(-2px); }
.post-cta__button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
@media (max-width: 900px) {
  .post-cta { margin-top: 56px; }
  .post-cta__actions { flex-direction: column; }
  .post-cta__button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .post-cta__button { transition: none; }
  .post-cta__button:hover { transform: none; }
}
