/**
 * About page quote section.
 */
.about-quote {
  padding: var(--space-3xl) var(--container-padding);
  background: transparent;
  text-align: center;
}

.about-quote__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) var(--space-3xl);
  background: var(--color-bg-header);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.about-quote__text {
  margin: 0;
  display: inline-block;
  font-size: 30px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  max-width: 56rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-quote__text::before {
  content: "\201C";
  color: var(--color-primary);
}

.about-quote__text::after {
  content: "\201D";
  color: var(--color-primary);
}

.about-quote__btn {
  display: inline-block;
  margin-top: var(--space-2xl);
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-quote__btn:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 48rem) {
  .about-quote {
    padding: var(--space-2xl) var(--container-padding);
  }

  .about-quote__inner {
    padding: var(--space-xl) var(--space-2xl);
  }

  .about-quote__text {
    font-size: var(--font-size-2xl);
  }
}
