.responsible-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.16), transparent 55%),
              linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.86));
  box-shadow: var(--shadow-elevated);
}

.responsible-visual--small {
  margin-top: var(--space-4);
}

.responsible-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.responsible-list {
  list-style: none;
  padding-left: 0;
  margin: var(--space-3) 0;
  display: grid;
  gap: var(--space-2);
}

.responsible-list--ordered {
  counter-reset: resp-ordered;
}

.responsible-list--ordered li {
  counter-increment: resp-ordered;
  position: relative;
  padding-left: 2.1rem;
}

.responsible-list--ordered li::before {
  content: counter(resp-ordered);
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: #fef2f2;
  box-shadow: var(--shadow-primary-glow);
}

.responsible-help-box {
  margin-top: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-strong);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  box-shadow: var(--shadow-soft);
}

.responsible-help-box h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

@media (max-width: 768px) {
  .responsible-visual--small {
    max-width: 360px;
  }
}
