/* Textové kroky */
    .steps-card {
      background: white;
      border-radius: 0.75rem;
      padding: 1rem 1.25rem;
      border: 1px solid var(--border);
      box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.25);
      min-height: 0;
      overflow-y: auto;
    }

    .steps-heading {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .steps-description {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    ol.steps-list {
      counter-reset: steps;
      padding-left: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      list-style: none;
      font-size: 0.95rem;
    }

    .steps-list li {
      position: relative;
      padding-left: 3.4rem;
      cursor: pointer;
      border-radius: 0.5rem;
      padding-top: 0.4rem;
      padding-bottom: 0.4rem;
      transition: background 0.15s;
    }

    .steps-list li::before {
      counter-increment: steps;
      content: counter(steps);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1.7rem;
      height: 1.7rem;
      border-radius: 999px;
      background: var(--bg);
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 600;
      margin-left: 1rem;
    }

    .steps-list li:hover {
      background: var(--bg);
    }

    .steps-list li.active {
      background: var(--primary-light);
    }

    .steps-list li.active::before {
      background: var(--primary);
      color: white;
    }

    .steps-list small {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
    }