/* Press Enquiries — Paper "Cubbi Website — Press Enquiries" (3CQ-0 / 5DI-0). */

.press {
  background: var(--surface);
  padding: 3.5rem 0 5rem;
}
.press .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.press h1 {
  color: var(--green-700);
  margin-bottom: 1.5rem;
}
.press p:not(.press-lead):not(.press-links-title) {
  color: var(--ink-muted); /* CUB-243: body copy muted grey */
}
.press p {
  max-width: 50rem;
}
.press-links-title {
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.press-links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.press-links a {
  color: var(--green-700);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.press-links a:hover {
  color: var(--green-600);
}
.press-photo {
  width: 100%;
  aspect-ratio: 420 / 418;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 rgba(22, 56, 39, 0.12);
}

@media (max-width: 63.9rem) {
  /* Design's mobile order: heading, image, then the copy and links. */
  .press .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .press-copy { display: contents; }
  .press-copy h1 { order: 0; }
  .press-photo { order: 1; width: 100%; }
  .press-copy > *:not(h1) { order: 2; }
}

/* CUB-243 content update */
.press-lead {
  color: var(--green-700);
  font-weight: 700;
}
.press-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.press-numbers strong {
  color: var(--green-700);
}
.press-numbers-note {
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}
