/* ============================================================
   Danışman Profili (advisor profile) — page-specific styles
   Base tokens, buttons, badge, card grid come from style.css
   ============================================================ */

.dp-wrap { padding-top: 26px; padding-bottom: 80px; }

.dp-breadcrumb {
  font-size: 13px; color: var(--ink-3);
  display: flex; align-items: center; gap: 7px; margin-bottom: 22px;
}
.dp-breadcrumb i { font-size: 13px; }
.dp-breadcrumb .cur { color: var(--ink-2); }

/* hero */
.dp-hero {
  position: relative; border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-md);
}
.dp-hero-cover { height: 132px; background: linear-gradient(120deg,#0F4F4A,#0F6E56 55%,#15856a); }
.dp-hero-body { padding: 0 32px 30px; display: flex; gap: 26px; align-items: flex-end; flex-wrap: wrap; }
.dp-hero-av {
  width: 128px; height: 128px; border-radius: var(--r-pill); margin-top: -58px;
  border: 5px solid var(--surface);
  background: linear-gradient(150deg,#cdeadd,#0F6E56); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 46px; font-weight: 600;
  box-shadow: var(--shadow-md); flex-shrink: 0;
}
.dp-hero-info { flex: 1; min-width: 280px; padding-top: 18px; }
.dp-hero-info h1 { font-family: var(--serif); font-size: 33px; font-weight: 600; letter-spacing: -.01em; line-height: 1.05; }
.dp-hero-actions { display: flex; gap: 10px; padding-top: 18px; flex-wrap: wrap; }

.dp-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.dp-stats > div { padding: 18px 24px; border-right: 1px solid var(--line); }
.dp-stats .v { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--teal); line-height: 1; }
.dp-stats .l { font-size: 13px; color: var(--ink-3); margin-top: 5px; }

/* two-column layout */
.dp-grid { display: grid; grid-template-columns: 1fr 340px; gap: 38px; align-items: start; margin-top: 40px; }
.dp-aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }

/* content blocks */
.block { border-top: 1px solid var(--line); padding: 32px 0; }
.block h2 { font-family: var(--serif); font-weight: 600; font-size: 23px; letter-spacing: -.01em; margin-bottom: 4px; }
.block .hint, .hint { font-size: 14.5px; color: var(--ink-3); margin-bottom: 20px; }
.block h2 + .hint { margin-top: 4px; }

/* region cards */
.dp-regions { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.dp-region {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 18px; cursor: pointer;
  text-decoration: none; color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.dp-region:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }

/* language bars */
.ap-lang-bar { height: 6px; border-radius: 999px; background: var(--mint-2); overflow: hidden; }
.ap-lang-bar > i { display: block; height: 100%; background: var(--teal-2); border-radius: 999px; }

/* portfolio */
.dp-tabs { display: flex; gap: 6px; background: var(--surface-2); border: 1px solid var(--line); padding: 4px; border-radius: var(--r-pill); }
.dp-tab { padding: 7px 16px; font-size: 13.5px; font-weight: 600; border-radius: var(--r-pill); cursor: pointer; border: none; background: transparent; color: var(--ink-2); transition: all .15s; }
.dp-tab.active { background: var(--teal); color: #fff; }
.dp-portfolio { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dp-district-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  font-size: 13px; font-weight: 500; color: var(--teal);
  background: var(--mint); border: 1px solid var(--mint-2);
  border-radius: var(--r-pill); cursor: pointer;
}

/* composer */
.dp-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--shadow-md); }
.dp-card .field input, .dp-card .field textarea {
  width: 100%; box-sizing: border-box; font-family: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 11px 12px;
}
.dp-card .field textarea { resize: vertical; }
.dp-card .field input:focus, .dp-card .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.dp-sent { display: flex; align-items: center; gap: 10px; background: var(--mint); border: 1px solid var(--mint-2); color: var(--teal); border-radius: var(--r-md); padding: 14px; font-size: 14px; font-weight: 500; }

/* responsive */
@media (max-width: 980px) {
  .dp-grid { grid-template-columns: 1fr; }
  .dp-aside { position: static; }
  .dp-portfolio { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .dp-hero-body { padding: 0 18px 24px; }
  .dp-stats { grid-template-columns: repeat(2,1fr); }
  .dp-stats > div:nth-child(2) { border-right: none; }
  .dp-regions { grid-template-columns: 1fr; }
  .dp-portfolio { grid-template-columns: 1fr; }
}
