.article-grid article {
  min-height: clamp(330px, 28vw, 420px);
}

.article-grid article.has-image {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
}

.article-grid article.is-clickable {
  cursor: pointer;
}

.article-grid article.is-clickable:focus-visible {
  border-color: rgba(37, 169, 216, 0.9);
  box-shadow:
    0 22px 52px rgba(18, 37, 74, 0.11),
    0 0 0 4px rgba(54, 198, 216, 0.16);
  outline: 0;
}

.article-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: end;
  margin-top: 22px;
  border: 1px solid rgba(54, 198, 216, 0.38);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--blue);
  background: rgba(54, 198, 216, 0.08);
  font-weight: 900;
  box-shadow: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-grid a:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(18, 37, 74, 0.14);
  transform: translateY(-1px);
}

@media (min-width: 901px) {
  .post {
    display: grid;
    grid-template-columns:
      minmax(var(--page-pad), 1fr)
      minmax(0, 820px)
      minmax(260px, 340px)
      minmax(var(--page-pad), 1fr);
    column-gap: clamp(24px, 3vw, 44px);
    align-items: start;
  }

  .post-header {
    grid-column: 1 / -1;
  }

  .post-visual {
    grid-column: 2 / 4;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .post-body {
    grid-column: 2;
    width: 100%;
    max-width: none;
    padding: 58px 0;
  }

  .related-seo-links {
    position: sticky;
    top: 112px;
    grid-column: 3;
    align-self: start;
    margin: 58px 0 28px;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(18, 37, 74, 0.09);
  }

  .related-seo-links h2 {
    max-width: none;
    font-size: clamp(1.15rem, 1.5vw, 1.45rem);
    line-height: 1.18;
  }

  .related-seo-links div {
    display: grid;
    gap: 8px;
  }

  .related-seo-links a {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 10px 12px;
    line-height: 1.25;
  }

  .post-footer {
    grid-column: 2;
    padding: 0 0 80px;
  }
}
