/* Compact Latest News section between Adult Cubcoats and Going Global. */
.press-layer {
  min-height: 0;
  padding-block: clamp(1.25rem, 2.3vh, 2rem);
  scroll-margin-top: clamp(4rem, 7vh, 5.5rem);
  overflow: hidden;
  color: var(--ink);
  background-color: #eef7ff;
  background-image:
    linear-gradient(180deg, rgba(247, 251, 255, .44), rgba(238, 247, 255, .3)),
    url("../img/art/latestnews-cartoon-world-bg-v1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.drawer__close { display: none; }

.press-panel__inner {
  /* Matches the 75%-wide Adult Cubcoats content directly above this section. */
  width: min(75%, 75rem);
  margin-inline: auto;
  padding: clamp(.65rem, 1.15vh, .9rem) 0 clamp(1.35rem, 2.25vh, 1.8rem);
}

.press-panel__head {
  margin-bottom: clamp(.8rem, 1.55vh, 1.15rem);
  text-align: left;
}

.press-panel__head h2 {
  margin: 0;
  color: #172a4c;
  font-family: var(--font-head);
  font-size: clamp(2.65rem, 3.75vw, 3.9rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
  white-space: nowrap;
}

.press-story {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  overflow: hidden;
  border: 1px solid rgba(23, 42, 76, .09);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #e6f5ff 0%, #c9e7fa 100%);
  box-shadow: 0 14px 34px rgba(33, 69, 109, .13);
}

.press-story__photo {
  min-width: 0;
  min-height: clamp(19rem, 27vw, 25rem);
  background: url("../img/art/latest-news-featureimage-1.webp") center / cover no-repeat;
}

.press-story__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
}

.press-story__date {
  color: #6f7f99;
  font-family: var(--font-body);
  font-size: clamp(.74rem, .9vw, .9rem);
  font-weight: 800;
  letter-spacing: .095em;
  line-height: 1.2;
  text-transform: uppercase;
}

.press-story h3 {
  max-width: 17ch;
    margin: clamp(.55rem, 1.1vh, .8rem) 0 0;
    color: #172a4c;
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 2.2vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.2;
    text-wrap: balance;
}

.press-story__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: .7rem;
  margin-top: clamp(.9rem, 1.7vh, 1.2rem);
  color: #2465bc;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.press-story__link span {
  font-size: 1.3em;
  transition: transform .2s ease;
}

.press-story__link:hover span { transform: translateX(3px); }

@media (max-width: 980px) {
  .press-panel__inner {
    width: min(100% - (var(--pad) * 2), 42rem);
    padding: .65rem 0 1.35rem;
  }

  .press-story {
    grid-template-columns: 1fr;
  }

  .press-story__photo {
    min-height: 0;
    aspect-ratio: 1600 / 1081;
  }

  .press-story__copy {
    padding: 1.4rem clamp(1.25rem, 5vw, 2.5rem) 1.55rem;
  }

  .press-story h3 {
    max-width: 27ch;
    font-size: clamp(1.7rem, 4.6vw, 2.5rem);
  }
}

@media (max-width: 760px) {
  .press-panel__inner { padding: 1.15rem 0 1.5rem; }

  .press-panel__head {
    margin-bottom: 1.2rem;
  }

  .press-panel__head h2 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .press-story__copy {
    padding: 1.3rem 1.15rem 1.45rem;
  }

  .press-story__date { font-size: .68rem; }

  .press-story h3 {
    max-width: none;
    margin-top: .75rem;
    font-size: clamp(1.45rem, 6.7vw, 1.85rem);
    line-height: 1.08;
  }

  .press-story__link {
    margin-top: 1.1rem;
    font-size: .66rem;
  }
}

@media (max-width: 899px) {
  .drawer__close {
    position: absolute;
    z-index: 4;
    top: calc(.85rem + env(safe-area-inset-top, 0px));
    right: var(--pad);
    display: grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    border: 1px solid rgba(45, 60, 90, .09);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 26px rgba(33, 58, 101, .18);
    color: #2d3c5a;
  }

  .drawer__close span {
    position: absolute;
    width: 1.32rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .drawer__close span:first-child { transform: rotate(45deg); }
  .drawer__close span:last-child { transform: rotate(-45deg); }
  .drawer__close:focus-visible { outline: 3px solid #5c88da; outline-offset: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .press-story__link span { transition: none; }
}
