/* Aday hub — mobil profil alanı ile uyumlu */
.seeker-hub .wrap {
  max-width: 920px;
}

.seeker-page-head {
  margin-bottom: 1.25rem;
}

.seeker-page-head h1 {
  margin: 0 0 .35rem;
  letter-spacing: -.03em;
}

.seeker-hub-nav {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin: 0 0 1.35rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.seeker-hub-nav a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color .2s, background .2s, color .2s;
}

.seeker-hub-nav a:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.seeker-hub-nav a.is-active {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  color: var(--accent-deep);
}

.seeker-hub-nav .hub-badge {
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 .3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
}

.seeker-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.seeker-tabs button {
  flex: 1;
  padding: .65rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.seeker-tabs button.is-active {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  color: var(--accent-deep);
}

.seeker-list {
  display: grid;
  gap: .75rem;
}

.seeker-card {
  display: grid;
  gap: .5rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color .2s, box-shadow .2s;
}

.seeker-card:hover {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 6px 20px rgba(7, 61, 46, .06);
}

.seeker-card h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -.02em;
}

.seeker-card h3 a {
  color: inherit;
  text-decoration: none;
}

.seeker-card h3 a:hover {
  color: var(--accent-deep);
}

.seeker-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  align-items: center;
  color: var(--muted);
  font-size: .88rem;
}

.seeker-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  background: #f1f5f4;
  color: var(--muted);
}

.status-pill.is-success { background: #e8f6ef; color: #0d6b4f; }
.status-pill.is-warning { background: #fff7e6; color: #b45309; }
.status-pill.is-info { background: #eff6ff; color: #1d4ed8; }
.status-pill.is-purple { background: #f3e8ff; color: #7c3aed; }
.status-pill.is-danger { background: #fef2f2; color: #b91c1c; }

.profile-hero {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef8f3 0%, #fff 60%);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
  margin-bottom: 1.25rem;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1.6rem;
  font-weight: 800;
  overflow: hidden;
  position: relative;
}

.profile-avatar--upload {
  cursor: pointer;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-edit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .2rem 0;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  color: #fff;
  background: rgba(7, 61, 46, .72);
}

.cv-photo-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.cv-photo-row .profile-avatar {
  flex-shrink: 0;
}

.profile-menu {
  display: grid;
  gap: .65rem;
}

.profile-menu a,
.profile-menu button.profile-menu-btn {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: .85rem;
  align-items: center;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}

.profile-menu a:hover,
.profile-menu button.profile-menu-btn:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  transform: translateY(-1px);
}

.profile-menu-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  font-size: 1.1rem;
}

.profile-menu-label strong {
  display: block;
  font-size: .98rem;
}

.profile-menu-label span {
  display: block;
  margin-top: .15rem;
  color: var(--muted);
  font-size: .82rem;
}

.profile-menu-chevron {
  color: var(--muted);
  font-size: 1.1rem;
}

.profile-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 1rem;
}

.profile-toggle-row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--accent);
}

.seeker-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #fafcfb;
}

.seeker-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .65rem;
  margin-bottom: 1rem;
}

.seeker-filters select,
.seeker-filters input {
  width: 100%;
  padding: .55rem .7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.notif-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.notif-card.is-unread {
  background: linear-gradient(135deg, #eef8f3 0%, #fff 55%);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.notif-card h3 {
  margin: 0;
  font-size: .98rem;
}

.notif-card p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.announcement-strip {
  background: linear-gradient(90deg, #0f5132, #157347);
  color: #fff;
  font-size: .88rem;
}

.announcement-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
}

.announcement-strip a {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.header-user-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
}

.header-badge {
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 .28rem;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}

.msg-list { display: grid; gap: .75rem; }
.msg-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: .85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.msg-card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 8px 24px rgba(7, 61, 46, .08);
  transform: translateY(-1px);
}
.msg-card.is-unread {
  background: linear-gradient(135deg, #eef8f3 0%, #fff 55%);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.msg-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 800;
}
.msg-card h3 { margin: 0; font-size: 1.05rem; letter-spacing: -.02em; }
.msg-card .job-meta { margin: .25rem 0 0; color: var(--muted); font-size: .9rem; }
.msg-meta { text-align: right; display: grid; gap: .35rem; justify-items: end; }
.msg-time { font-size: .75rem; color: var(--muted); }
.msg-badge {
  min-width: 1.4rem; height: 1.4rem; padding: 0 .4rem;
  border-radius: 999px; background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; display: inline-grid; place-items: center;
}

@media (max-width: 640px) {
  .profile-hero {
    grid-template-columns: 56px 1fr;
  }

  .profile-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}
