.practice-main {
  width: min(1188px, 100%);
  margin: 0 auto;
  padding: 58px 24px 90px;
}

.practice-shell {
  max-width: 1040px;
  margin: 0 auto;
}

.practice-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.practice-hero h1,
.practice-error h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
}

.practice-hero > p:not(.kicker),
.practice-error > p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.practice-loading {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.practice-card {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  background: #fff;
}

.practice-card.is-elite {
  border-top-color: var(--gold);
}

.practice-card.is-locked {
  background: #fafaf8;
}

.practice-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.practice-label {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.practice-badge {
  padding: 4px 7px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.practice-card.is-elite .practice-badge {
  border-color: #c8ae82;
  color: #76531d;
}

.practice-card h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 650;
  line-height: 1;
}

.practice-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.practice-card-action {
  margin-top: auto;
  padding-top: 28px;
}

.practice-card-action .button {
  width: 100%;
}

.practice-membership-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.practice-gate,
.practice-error {
  max-width: 700px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--green);
  background: #fff;
}

.practice-gate {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.practice-error .button {
  margin: 18px 10px 0 0;
}

@media (max-width: 760px) {
  .practice-main {
    padding: 44px 18px 68px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: 0;
  }

  .practice-hero {
    margin-bottom: 26px;
  }

  .practice-gate {
    display: grid;
  }
}
