.captions-panel {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: grid;
  gap: 14px;
}
.captions-panel[hidden] { display: none; }
.caption-heading h3 { margin: 4px 0 0; font-size: 18px; }
.caption-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  padding: 14px;
}
.caption-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.caption-title strong { font-size: 13px; }
.caption-title button {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  padding: 6px 10px;
  font-size: 11px;
}
.caption-title button:hover { border-color: var(--orange); color: var(--orange); }
.caption-card textarea {
  min-height: 150px;
  resize: vertical;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.45;
}
.caption-card textarea:focus { border: 0; }
