.latest-update {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(23, 35, 59, .07);
}

.latest-update-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy);
}

.latest-update-media video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.latest-update-media video.ready { opacity: 1; }

.latest-update-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 17, 33, .82), rgba(8, 17, 33, .04) 66%);
}

.latest-update-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.latest-update-play {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.latest-update-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 46px);
}

.latest-update-body h3 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.latest-update-body > p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.latest-update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.latest-update-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.latest-update-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.secondary-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 900px) {
  .latest-update { grid-template-columns: 1fr; }
  .latest-update-media,
  .latest-update-media video { min-height: 300px; }
}

@media (max-width: 680px) {
  .latest-update-media,
  .latest-update-media video { min-height: 230px; }
  .latest-update-body { padding: 26px 22px; }
}
