.scheuer-page {
  --scheuer-green: #2e4f20;
  --scheuer-green-dark: #203815;
  --scheuer-ink: #1f2b20;
  --scheuer-muted: #526154;
  --scheuer-line: #dbe6da;
  --scheuer-soft: #f3f7f1;
  --scheuer-soft-strong: #edf4e8;
  padding: 50px 0 60px;
}

.scheuer-page__container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.scheuer-hero {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--scheuer-line);
}

.scheuer-hero__kicker {
  margin: 0 0 8px;
  color: var(--scheuer-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
}

.scheuer-hero h1 {
  margin: 0 0 12px;
  color: var(--scheuer-green);
  font-size: clamp(1.85rem, 1.35rem + 1.15vw, 2.6rem);
  line-height: 1.2;
  max-width: 18ch;
}

.scheuer-hero p,
.scheuer-panel p {
  margin: 0 0 10px;
  color: var(--scheuer-ink);
  line-height: 1.75;
}

.scheuer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.scheuer-panel {
  padding: 18px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fbfdf9);
  box-shadow: 0 1px 0 var(--scheuer-line);
}

.scheuer-panel h2 {
  margin: 0 0 10px;
  color: var(--scheuer-green);
  font-size: clamp(1.18rem, 1.03rem + 0.45vw, 1.45rem);
  line-height: 1.3;
}

.scheuer-panel--accent {
  background: linear-gradient(180deg, var(--scheuer-soft), #f8fbf5);
}

.scheuer-panel--note {
  background: linear-gradient(180deg, var(--scheuer-soft-strong), #f9fcf6);
}

.scheuer-highlight {
  margin-bottom: 0;
  padding: 12px 13px;
  border-left: 4px solid var(--scheuer-green);
  border-radius: 10px;
  background: rgba(46, 79, 32, 0.06);
  color: var(--scheuer-green-dark);
  font-weight: 600;
}

.scheuer-levels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.scheuer-level {
  height: 100%;
  padding: 16px 14px;
  border: 1px solid var(--scheuer-line);
  border-radius: 12px;
  background: #fff;
}

.scheuer-level h3 {
  margin: 0 0 8px;
  color: var(--scheuer-green);
  font-size: 1.03rem;
  line-height: 1.35;
}

.scheuer-level p {
  margin: 0;
}

.scheuer-level__range {
  margin-bottom: 8px !important;
  color: var(--scheuer-green-dark) !important;
  font-weight: 700;
}

.scheuer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.scheuer-btn {
  display: inline-block;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.scheuer-btn--primary {
  background: var(--scheuer-green);
  color: #fff;
}

.scheuer-btn--primary:hover {
  background: #264119;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(46, 79, 32, 0.2);
}

.scheuer-btn--ghost {
  border-color: #c9d9c4;
  background: #fff;
  color: var(--scheuer-green);
}

.scheuer-btn--ghost:hover {
  background: var(--scheuer-soft);
}

.scheuer-btn:focus-visible {
  outline: 2px solid var(--scheuer-green);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .scheuer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .scheuer-page {
    padding: 50px 0;
  }

  .scheuer-page__container {
    width: min(1200px, calc(100% - 24px));
  }

  .scheuer-panel {
    padding: 16px 14px;
  }

  .scheuer-levels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .scheuer-actions {
    flex-direction: column;
  }

  .scheuer-btn {
    width: 100%;
    text-align: center;
  }
}
