/* Entry-page editorial quote layout. */
.quote-hero {
  min-height: 730px;
  grid-template-columns: .85fr 1.15fr;
  gap: 55px;
  align-items: center;
  padding-top: 55px;
  padding-bottom: 90px;
}

.hero-quote {
  margin: 0;
  position: relative;
}

.quote-hero .quote-title {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.hero-quote p {
  margin: 0;
  max-width: 610px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 1.65vw, 23px);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: .005em;
  text-wrap: pretty;
}

.hero-quote cite {
  display: block;
  margin-top: 18px;
  color: var(--rust);
  font-family: 'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;
  font-size: 14px;
  font-style: normal;
  transform: rotate(-1deg);
}

.quote-hero .hero-actions { margin: 30px 0 34px; }
.quote-hero .cozy-photo { width: 100%; max-width: 470px; min-height: 0; justify-self: end; }
.quote-hero .cozy-photo img { height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 60%; }

.footer { grid-template-columns: 1fr 1fr; }
.footer > p { text-align: right; }

@media (max-width: 980px) {
  .quote-hero { grid-template-columns: .95fr 1.05fr; gap: 32px; }
  .hero-quote p { font-size: 18px; line-height: 1.5; }
}

@media (max-width: 720px) {
  .quote-hero { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 75px; }
  .hero-quote p { font-size: 20px; line-height: 1.55; }
  .quote-hero .quote-title { margin-bottom: 16px; font-size: 34px; }
  .hero-quote cite { font-size: 13px; }
  .quote-hero .cozy-photo { min-height: 0; }
  .quote-hero .cozy-photo img { height: auto; }
  .footer > p { text-align: center; }
}
