/* Section: Renewals */

.renewals {
  background-color: var(--gcn-cream-50);
  padding-block: var(--section-spacing);
}

.renewals__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-10);
  margin-bottom: var(--space-8);
}

.renewals__eyebrow {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  color: var(--color-heading);
}

.renewals__eyebrow-icon { width: 40px; height: auto; }

.renewals__eyebrow-text {
  font-family: var(--font-ui);
  font-weight: var(--fw-bold);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  white-space: nowrap;
}

.renewals__intro {
  flex: 1 1 auto;
  max-width: 942px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.renewals__title {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.2;
  color: var(--color-heading);
}

.renewals__title-accent {
  font-style: italic;
  color: var(--color-heading-accent);
}

.renewals__desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-text-muted);
}

.renewals__image {
  width: 100%;
  aspect-ratio: 1380 / 492;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .renewals { padding-block: var(--section-spacing-sm); }

  .renewals__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
  }
  .renewals__eyebrow { align-items: center; }
  .renewals__intro { align-items: center; text-align: center; }
  .renewals__intro .btn { width: 100%; justify-content: center; }

  .renewals__image { aspect-ratio: 5 / 4; }
}
