.section-quote-callout {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  margin: 1.75rem 0 3rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--olive, #4A5E3A);
  border-radius: 6px;
  background: var(--olive, #4A5E3A);
  color: var(--bg, #F5F0E8);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 0 rgba(59, 47, 30, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.section-quote-callout:hover {
  color: var(--bg, #F5F0E8);
  text-decoration: none;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(59, 47, 30, 0.16);
}

.section-quote-callout:active {
  transform: translateY(1px);
  box-shadow: 0 3px 0 rgba(59, 47, 30, 0.2);
}

.section-quote-callout:focus-visible {
  outline: 3px solid var(--tan, #C4A882);
  outline-offset: 4px;
}

.section-quote-callout__title {
  color: inherit;
  font-family: Georgia, 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-quote-callout__subtitle {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.35;
}

@media (max-width: 600px) {
  .section-quote-callout {
    margin: 1.5rem 0 2.5rem;
    padding: 0.9rem 1rem;
  }
}
