/* ==========================================================
   SPECIALTIES
========================================================== */

.specialties {
  background: var(--color-background);
}

/* ==========================================================
   PATHS
========================================================== */

.specialties__paths {
    max-width: 1200px;
    margin: 0 auto;
}

.path-card {
  padding: 2.5rem;

  background: white;

  border: 1px solid var(--color-border);

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.path-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-lg);
}

.path-card__icon {
  width: 64px;
  height: 64px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 1.5rem;

  border-radius: 50%;

  background: rgba(31, 77, 77, 0.08);

  color: var(--color-primary);

  font-size: 1.6rem;
}

.path-card h4 {
  margin-bottom: 1rem;

  color: var(--color-primary);
}

.path-card p {
  margin-bottom: 2rem;
}

.path-card__link {
  font-weight: 600;

  color: var(--color-primary);

  text-decoration: none;
}

.path-card__link:hover {
  text-decoration: underline;
}

/* ==========================================================
   QUOTE
========================================================== */

.specialties__quote {
  max-width: 900px;

  margin: 6rem auto 0;

  text-align: center;
}

.specialties__quote blockquote {
  margin-bottom: 1rem;

  font-size: 2rem;

  font-style: italic;

  color: var(--color-primary);
}

.specialties__quote span {
  color: var(--color-text-light);
}
