/* Scoped Where to Buy and Athletes page presentation. */
.suppleman-community-page,
.suppleman-community-page * {
  box-sizing: border-box;
}

.suppleman-community-page {
  background: #fff;
  color: #4d4d4d;
}

.suppleman-page-hero {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.suppleman-page-hero__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
}

.suppleman-page-hero__title {
  margin: 0;
  color: #000;
  font-family: "Sequel 100 Black", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: normal;
  text-transform: uppercase;
}

.suppleman-page-hero__description {
  max-width: 840px;
  margin: 20px auto 0;
  color: #4d4d4d;
  font-family: "Sequel Sans Book", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.suppleman-page-hero__actions {
  margin-top: 24px;
}

.suppleman-page-hero__button,
.athlete-empty__button {
  max-width: 100%;
  min-height: 52px;
  padding: 18px 40px;
  border: 1px solid #000;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-family: "Sequel 100 Black", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.9px;
  white-space: normal;
  transform: none;
}

.suppleman-page-hero__button:hover,
.athlete-empty__button:hover {
  border-color: #bad0db;
  background: #bad0db;
  color: #000;
  transform: none;
}

.suppleman-page-hero__button:focus-visible,
.athlete-empty__button:focus-visible,
.where-buy-card__button:focus-visible,
.athlete-card a:focus-visible {
  outline: 3px solid #bad0db;
  outline-offset: 3px;
}

.where-buy-section {
  width: 100%;
  padding: 50px 20px;
  background: #eff1f5;
}

.where-buy-section__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
}

.where-buy-section__intro {
  max-width: 900px;
  margin: 0 auto 20px;
  color: #4d4d4d;
  font-family: "Sequel Sans Book", sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.where-buy-section__intro h2 {
  margin: 0 0 20px;
  color: #000;
  font-family: "Sequel 100 Black", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
}

.where-buy-section__intro p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 24px;
}

.where-buy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.where-buy-card {
  display: flex;
  min-width: 0;
  min-height: 286px;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  color: #4d4d4d;
  font-family: "Sequel Sans Book", sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.where-buy-card__icon {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #000;
  place-items: center;
}

.where-buy-card__icon svg {
  width: 80px;
  height: 80px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.where-buy-card h3 {
  margin: 0 0 10px;
  color: #000;
  font-family: "Sequel Sans Bold", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.where-buy-card p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 24px;
}

.where-buy-card__button {
  display: inline-block;
  max-width: 100%;
  margin-top: auto;
  padding: 12px 24px;
  border: 0;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-family: "Sequel 100 Black", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.9px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.where-buy-card__button:hover {
  background: #bad0db;
  color: #000;
}

.athlete-grid-section {
  width: 100%;
  padding: 50px 20px;
  background: #fff;
}

.athlete-grid-section__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.suppleman-community-page .athlete-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.suppleman-community-page .athlete-card {
  min-width: 0;
  padding: 10px;
  text-align: center;
}

.suppleman-community-page .athlete-card__media {
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #eff1f5;
  color: #000;
  place-items: center;
}

.suppleman-community-page a.athlete-card__media {
  text-decoration: none;
}

.suppleman-community-page .athlete-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.suppleman-community-page a.athlete-card__media:hover img {
  transform: scale(1.025);
}

.athlete-card__media-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  color: #969ba5;
  place-items: center;
}

.athlete-card__media-placeholder svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.suppleman-community-page .athlete-card__body {
  padding: 20px 0 0;
}

.suppleman-community-page .athlete-card__body h2 {
  margin: 0 0 20px;
  color: #000;
  font-family: "Sequel Sans Bold", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.suppleman-community-page .athlete-card__body h2 a {
  color: inherit;
  text-decoration: none;
}

.suppleman-community-page .athlete-card__body h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.suppleman-community-page .athlete-card__role,
.suppleman-community-page .athlete-card__country {
  margin: 0 0 8px;
  color: #4d4d4d;
  font-family: "Sequel Sans Book", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.suppleman-community-page .athlete-card__status {
  display: inline-block;
  margin: 4px 0 0;
  padding: 5px 8px;
  border-radius: 20px;
  background: #eff1f5;
  color: #4d4d4d;
  font-family: "Sequel Sans Bold", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.athlete-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.athlete-empty h2 {
  margin: 0 0 20px;
  color: #000;
  font-family: "Sequel 100 Black", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
}

.athlete-empty p {
  margin: 0 0 24px;
  font-family: "Sequel Sans Book", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .suppleman-page-hero__title {
    font-size: 32px;
    line-height: 32px;
  }

  .where-buy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .where-buy-section__intro h2 {
    font-size: 24px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .where-buy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .suppleman-community-page .athlete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suppleman-community-page .athlete-card__body h2 {
    font-size: 16px;
    line-height: 16px;
  }
}

@media (max-width: 520px) {
  .suppleman-page-hero__button,
  .athlete-empty__button {
    width: 100%;
    padding-inline: 24px;
  }

  .athlete-empty {
    padding: 30px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .suppleman-community-page .athlete-card__media img {
    transition: none;
  }
}
