.profile-section h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

.profile-info {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
}

.profile-info span { color: var(--muted); font-weight: 400; }

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.prompt-card {
  background: linear-gradient(180deg, #fffef9 0%, #fffaf0 100%);
  border: 1px solid #eee4c9;
  border-radius: var(--radius);
  padding: 14px;
}

.prompt-card h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.profile-big-textarea {
  width: 100%;
  min-height: 220px;
  padding: 14px 16px;
  border: 1.5px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 1.7;
  resize: vertical;
  outline: none;
  font-family: inherit;
  color: var(--text);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}

.profile-big-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
  background: white;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
}

#screen-profile .profile-section > h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 0;
  cursor: pointer;
  user-select: none;
}

#screen-profile .profile-section > h3::after {
  content: '›';
  display: block;
  flex-shrink: 0;
  color: var(--text-secondary, #888);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

#screen-profile .profile-section > h3[data-accordion-open="1"]::after {
  transform: rotate(270deg);
}

#screen-profile .profile-section > .profile-section-body {
  margin-top: 14px;
}
