/* Блок: creditors-info — информация о кредиторах с раскрытием */
.creditors-info {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.creditors-info__container {
  padding: 1.5rem 1.25rem;
  background-color: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid #e2e8f0;
}

.creditors-info__title {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.creditors-info__intro {
  margin-bottom: 0.875rem;
}

.creditors-info__text {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.creditors-info__text:last-child {
  margin-bottom: 0;
}

.creditors-info__preview {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.creditors-info__content {
  margin-bottom: 1rem;
}

.creditors-info_collapsed .creditors-info__content {
  display: none;
}

.creditors-info_expanded .creditors-info__preview {
  display: none;
}

.creditors-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.creditors-info__card {
  padding: 0.875rem 1rem;
  background-color: #fafafa;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.creditors-info__company {
  margin: 0 0 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.creditors-info__detail {
  margin: 0 0 0.125rem;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.creditors-info__detail:last-child {
  margin-bottom: 0;
}

.creditors-info__footer {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.creditors-info__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.creditors-info__toggle:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

.creditors-info__toggle-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 1px;
  transition: transform var(--transition-fast);
}

.creditors-info_expanded .creditors-info__toggle-icon {
  transform: rotate(180deg);
}

@media (min-width: 576px) {
  .creditors-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .creditors-info {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .creditors-info__container {
    padding: 1.75rem 1.5rem;
  }

  .creditors-info__title {
    font-size: 1.125rem;
    margin-bottom: 1.125rem;
  }

  .creditors-info__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .creditors-info__card {
    padding: 0.75rem 1rem;
  }
}
