/* company-webstores.css — scoped card grids for the Webstores SEO hub.
   Shell/typography come from golf-tournament-showcase.css (same as the safety page);
   this file only adds the icon-driven "types" + "benefits" card grids (no images). */

/* Hero scrim — the webstore heroes use a bare <img class="hero__image"> with no
   .hero__overlay element, so add a dark gradient here (loads after golf CSS) so the
   white headline stays readable over any image, including bright ones like the Carhartt
   banner. Left-weighted: darkest where the centered text sits, lighter on the right. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 18, 12, 0.86) 0%, rgba(8, 18, 12, 0.68) 52%, rgba(8, 18, 12, 0.42) 100%);
}
.hero__headline, .hero__sub { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55); }

.ws-section { padding: 40px 0 8px; }
.ws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 0 1.5rem;
}
.ws-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(20, 40, 30, 0.08);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}
.ws-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; background: #e8f3ec; color: #1b6b3a;
  margin-bottom: 12px;
}
.ws-card__title { font-size: 1.06rem; font-weight: 800; margin: 0 0 6px; color: #14312a; }
.ws-card__desc { font-size: 0.9rem; color: #4b5563; margin: 0 0 10px; line-height: 1.55; flex: 1 1 auto; }
.ws-card__eg { font-size: 0.8rem; color: #6b7280; font-style: italic; margin: 0; }

/* linked niche cards (hub -> industry spoke pages) */
a.ws-card--link { text-decoration: none; color: inherit; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
a.ws-card--link:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(20, 40, 30, 0.14); border-color: #1b6b3a; }
.ws-card__go { margin-top: auto; padding-top: 4px; font-size: 0.85rem; font-weight: 800; color: #1b6b3a; display: inline-flex; align-items: center; gap: 6px; }
.ws-card__go i { transition: transform .15s ease; }
a.ws-card--link:hover .ws-card__go i { transform: translateX(3px); }

/* product cards with an image + suggested price (spoke pages) */
.ws-card__img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #f4f6f5; border-radius: 10px; margin-bottom: 12px; display: block; }
.ws-card__price { font-size: 0.9rem; font-weight: 800; color: #1b6b3a; margin: 2px 0 8px; }
.ws-card__price span { font-weight: 500; color: #6b7280; font-size: 0.8rem; }
.ws-pricenote {
  max-width: 1120px; margin: 20px auto 0; padding: 13px 20px;
  background: #eef5f0; border: 1px solid #d7e6dd; border-radius: 12px;
  font-size: 0.9rem; color: #2f4a3c; text-align: center; line-height: 1.5;
}
.ws-pricenote strong { color: #14312a; }

/* the "how it works" numbered steps as a clean row */
.ws-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 0 1.5rem;
}
.ws-step { text-align: left; }
.ws-step__num {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; color: #fff; background: #1b6b3a;
  margin-bottom: 10px;
}
.ws-step__title { font-size: 1rem; font-weight: 800; margin: 0 0 4px; color: #14312a; }
.ws-step__desc { font-size: 0.9rem; color: #4b5563; margin: 0; line-height: 1.55; }
