/* One PSTA-native home-page panel for news, social posts, and useful resources. */
.psta-latest-panel {
  background: var(--wash, #f3f6ff);
}
.psta-latest-inner {
  width: min(calc(100% - 40px), var(--shell, 1180px));
  margin: auto;
}
.psta-latest-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 24rem);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.psta-latest-panel .psta-latest-eyebrow {
  margin: 0 0 .35rem;
  color: var(--blue, #0d19ff);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.psta-latest-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.12;
}
.psta-latest-panel-heading > p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.45;
}
.psta-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.psta-latest-grid article {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--line, #d9dce6);
  border-top: .4rem solid var(--blue, #0d19ff);
  border-radius: 18px;
  background: #fff;
}
.psta-latest-grid article:nth-child(2) {
  border-top-color: var(--light, #33b2ff);
}
.psta-latest-grid article:nth-child(3) {
  border-top-color: var(--gold, #ff8000);
}
.psta-latest-source {
  margin: 0 0 .65rem;
  color: var(--blue, #0d19ff);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.psta-latest-grid h3 {
  margin: 0 0 .7rem;
  font-size: 1.16rem;
  line-height: 1.25;
}
.psta-latest-grid h3 a {
  color: inherit;
  text-decoration-thickness: .07em;
  text-underline-offset: .14em;
}
.psta-latest-grid article > p:not(.psta-latest-source) {
  margin: 0 0 1rem;
  line-height: 1.45;
}
.psta-latest-read {
  margin-top: auto;
  font-weight: 700;
}
@media (max-width: 820px) {
  .psta-latest-panel-heading,
  .psta-latest-grid {
    grid-template-columns: 1fr;
  }
  .psta-latest-grid article {
    min-height: 0;
  }
}
@media (max-width: 760px) {
  .psta-latest-inner {
    width: min(calc(100% - 28px), var(--shell, 1180px));
  }
}
