/* Products listing (/pro) — category cards and typography */

.pro-page-hero {
  padding-top: clamp(5.5rem, 12vw, 6.5rem);
  padding-bottom: 2rem;
}

.pro-page-hero__title {
  font-family: "Outfit", "Noto Sans", system-ui, sans-serif;
  font-weight: 700;
  color: #04302e;
  letter-spacing: -0.02em;
}

.pro-categories {
  padding: 2.5rem 0 4rem;
}

.pro-card {
  border: 1px solid rgba(4, 112, 107, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(4, 48, 46, 0.06);
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(4, 48, 46, 0.1);
}

.pro-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pro-card__link:hover {
  color: inherit;
}

.pro-card__img-wrap {
  aspect-ratio: 4 / 3;
  background: #e8f0ef;
  overflow: hidden;
}

.pro-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pro-card__title {
  font-family: "Outfit", "Noto Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #04706b;
  margin-bottom: 0.65rem;
}

.pro-card__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
  margin: 0;
  flex: 1;
}

.pro-card__cta {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #04706b;
}

.pro-card__link:hover .pro-card__cta {
  color: #0a8a83;
}

.pro-section-title {
  font-family: "Outfit", "Noto Sans", system-ui, sans-serif;
  font-weight: 700;
  color: #04302e;
}

.pro-section-rule {
  max-width: 72px;
  border: 0;
  border-top: 3px solid #04706b;
  opacity: 1;
  margin: 0.75rem 0 2rem;
}
