/* Shared accordion */
.accordion {
  display: flex;
  flex-direction: column;
}

.acc-item {
  border-top: 1px solid var(--l-line-soft);
}

.acc-item:last-child {
  border-bottom: 1px solid var(--l-line-soft);
}

.acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 32px 0;
  text-align: left;
  transition: opacity 0.2s;
}

.acc-trigger:hover {
  opacity: 0.7;
}

.acc-title {
  min-width: 0;
  color: var(--l-ink);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--l-mut);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.acc-trigger:hover .acc-icon svg {
  stroke: var(--l-ink);
}

.acc-item.open .acc-icon {
  transform: rotate(180deg);
}

.acc-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-body {
  max-width: 900px;
  padding: 0 0 36px;
  color: var(--l-mut);
  font-size: var(--fs-body);
  line-height: 1.7;
}
