.content-panel {
  flex: 1;
  min-height: 260px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;

  .title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--fg);
  }

  .subtitle {
    font-size: 13px;
    color: #78716c;
  }
}

.panel-body {
  font-size: 14px;
  color: #57534e;
  line-height: 1.65;
}

.panel-placeholder {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--border);
  background: var(--bg);
  font-size: 13px;
  color: #78716c;
}

@media (max-width: 768px) {
  .panel-body {
    font-size: 13px;
  }
}
