@charset "UTF-8";
/* Hallmark · genre: atmospheric (craft-fantasy) · page: profil/{slug} (app · forgemage profile, client-facing)
 * design-system: design.md (Forge) · designed-as-app
 * Client-facing view of a forgemage profile. Restructured, not just re-skinned:
 *   - identity hero band (avatar + name + badges + real trust facts) mirrors rd-hero on request detail
 *   - main column: about -> portfolio -> reviews; sticky rail: specialties, verification, related
 *   - fake indicators ("100% answer rate", "1h") removed for real maggings-done / answer-time facts
 * Functional Forge voice, no anvil/glow theatrics. Forge tokens mirrored page-scoped as --pv-*,
 * themed via data-bs-theme.
 * Hallmark · pre-emit critique: P5 H5 E4 S4 R5 V4 */
.profile-view {
  /* light (site default) */
  --pv-surface: #ffffff;
  --pv-surface-2: #faf9f5;
  --pv-ink: #141413;
  --pv-ink-2: #6f6c62;
  --pv-rule: rgba(20, 20, 19, .12);
  --pv-field-border: rgba(20, 20, 19, .18);
  --pv-focus-ring: 0 0 0 3px rgba(245, 164, 44, .2);
  --pv-accent: var(--main-orange-darker);
  --pv-accent-hi: #ffb949;
  --pv-accent-soft: rgba(245, 164, 44, .12);
  --pv-on-amber: #1a1714;
  --pv-purple: var(--secondary);
  --pv-purple-soft: rgba(128, 95, 225, .12);
  --pv-ok: #4e7d1a;
  --pv-ok-soft: rgba(129, 185, 40, .16);
  --pv-online: #81b928;
  --pv-warn: #a04b0c;
  --pv-warn-soft: rgba(231, 141, 19, .14);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 56px;
  font-family: var(--font-body), sans-serif;
  color: var(--pv-ink);
}

[data-bs-theme=dark] .profile-view {
  --pv-surface: #1b1815;
  --pv-surface-2: #241e18;
  --pv-ink: #efe7d8;
  --pv-ink-2: #b3a892;
  --pv-rule: rgba(245, 164, 44, .16);
  --pv-field-border: rgba(239, 231, 216, .16);
  --pv-accent: var(--main-orange);
  --pv-accent-soft: rgba(245, 164, 44, .14);
  --pv-purple: #9a7af0;
  --pv-purple-soft: rgba(154, 122, 240, .16);
  --pv-ok: #a6d968;
  --pv-ok-soft: rgba(129, 185, 40, .18);
  --pv-warn: #f1b06a;
  --pv-warn-soft: rgba(231, 141, 19, .18);
}

/* ---- breadcrumb: quiet strip, no banner theatrics ---- */
.pv-crumbs {
  margin-bottom: 16px;
}
.pv-crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--pv-ink-2);
}
.pv-crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.pv-crumbs li + li::before {
  content: "›"; /* › */
  margin: 0 4px;
  color: var(--pv-ink-2);
  opacity: 0.6;
}
.pv-crumbs a {
  color: var(--pv-ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.pv-crumbs a:hover {
  color: var(--pv-accent);
  border-bottom-color: var(--pv-accent);
}
.pv-crumbs a:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
  border-radius: 2px;
}
.pv-crumbs__current {
  color: var(--pv-ink);
  font-weight: 600;
  max-width: 24ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---- shared panel ---- */
.pv-panel {
  padding: 22px;
  background: var(--pv-surface);
  border: 1px solid var(--pv-rule);
  border-radius: 16px;
  color: var(--pv-ink);
}
.pv-panel + .pv-panel {
  margin-top: 20px;
}
.pv-panel__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-family: var(--font-heading), serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--pv-ink);
  overflow-wrap: anywhere;
}
.pv-panel__title i {
  color: var(--pv-accent);
  flex-shrink: 0;
}

.pv-empty {
  margin: 0;
  color: var(--pv-ink-2);
}

/* ---- identity hero ---- */
.pv-hero {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 1px solid var(--pv-rule);
  border-radius: 18px;
  background: radial-gradient(120% 140% at 0% 0%, var(--pv-accent-soft), transparent 55%), radial-gradient(120% 140% at 100% 100%, var(--pv-purple-soft), transparent 55%), var(--pv-surface);
}
.pv-hero__avatar {
  position: relative;
  flex-shrink: 0;
  width: 132px;
  height: 132px;
}
.pv-hero__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--pv-rule);
  object-fit: cover;
  background: var(--pv-surface-2);
}
.pv-hero__avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--pv-rule);
  background: var(--pv-accent-soft);
  color: var(--pv-accent);
  font-family: var(--font-heading), serif;
  font-size: 3rem;
  font-weight: 600;
}
.pv-hero__presence {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pv-ink-2);
  border: 3px solid var(--pv-surface);
}
.pv-hero__presence--on {
  background: var(--pv-online);
}
.pv-hero__id {
  flex: 1 1 0;
  min-width: 0;
}
.pv-hero__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.pv-hero__name {
  margin: 0;
  font-family: var(--font-heading), serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--pv-ink);
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.pv-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 14px;
}
.pv-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pv-ink);
  text-decoration: none;
  font-weight: 600;
}
.pv-hero__rating .rating-stars {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pv-hero__rating:hover {
  color: var(--pv-accent);
}
.pv-hero__rating:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.pv-hero__reviews-count {
  color: var(--pv-ink-2);
  font-weight: 400;
}
.pv-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pv-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 220px;
}

/* badges next to the name (same trust markers as the forgemage-card) */
.pv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--pv-accent-soft);
  color: var(--pv-accent);
  white-space: nowrap;
}
.pv-badge svg, .pv-badge img {
  flex-shrink: 0;
}
.pv-badge--super {
  background: var(--pv-purple-soft);
  color: var(--pv-purple);
}

.pv-presence-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--pv-surface-2);
  border: 1px solid var(--pv-rule);
  color: var(--pv-ink-2);
}
.pv-presence-chip__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pv-ink-2);
}
.pv-presence-chip--on {
  color: var(--pv-ok);
  background: var(--pv-ok-soft);
  border-color: transparent;
}
.pv-presence-chip--on .pv-presence-chip__dot {
  background: var(--pv-online);
}

/* real trust facts (servers, maggings done, answer time) */
.pv-fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--pv-surface-2);
  border: 1px solid var(--pv-rule);
  color: var(--pv-ink);
}
.pv-fact i {
  color: var(--pv-accent);
}

/* ---- CTA voice (design.md: solid amber + dark ink, 12px radius) ---- */
.pv-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: var(--font-body), sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pv-cta:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
}
.pv-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pv-cta--small {
  min-height: 42px;
  padding: 8px 16px;
  font-size: 0.875rem;
}
.pv-cta--primary {
  background: var(--main-orange);
  border: 1.5px solid transparent;
  color: var(--pv-on-amber);
}
.pv-cta--primary:hover {
  background: var(--pv-accent-hi);
  color: var(--pv-on-amber);
}
.pv-cta--ghost {
  background: transparent;
  border: 1.5px solid var(--pv-rule);
  color: var(--pv-ink);
}
.pv-cta--ghost:hover {
  border-color: var(--main-orange);
  color: var(--pv-accent);
}
.pv-cta--ghost i {
  color: var(--pv-accent);
}

/* ---- content grid: main column + sticky rail ---- */
.pv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.pv-main {
  min-width: 0;
}

.pv-rail {
  position: sticky;
  top: 24px;
  min-width: 0;
}

/* ---- about ---- */
.pv-about__text {
  overflow-wrap: anywhere;
  color: var(--pv-ink);
}

/* ---- portfolio: keep the shared galleria component, just give it room ---- */
.pv-portfolio .portfolio__galleria-wrapper {
  width: 100%;
}

/* ---- reviews ---- */
.pv-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--pv-rule);
  border-radius: 12px;
  background: var(--pv-surface-2);
}
.pv-reviews__overall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.pv-reviews__overall .rating-stars {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pv-reviews__axes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pv-reviews__axes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--pv-ink-2);
}
.pv-reviews__axes li i {
  color: var(--pv-accent);
}
.pv-reviews__axes li .rating-stars {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pv-reviews__list > * + * {
  border-top: 1px solid var(--pv-rule);
}

.pv-review {
  display: flex;
  gap: 14px;
  padding: 16px 0;
}
.pv-review__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pv-accent-soft);
  color: var(--pv-accent);
  font-weight: 700;
}
.pv-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pv-review__body {
  flex: 1 1 0;
  min-width: 0;
}
.pv-review__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin-bottom: 4px;
}
.pv-review__name {
  font-weight: 700;
  color: var(--pv-ink);
}
.pv-review__date {
  font-size: 0.8125rem;
  color: var(--pv-ink-2);
}
.pv-review__text {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--pv-ink);
}

/* ---- rail: specialties (restyle the shared partial's list into chips) ---- */
.pv-specialties .specialties__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pv-specialties .specialties__list a.link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--pv-accent-soft);
  color: var(--pv-accent);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.pv-specialties .specialties__list a.link .link__text {
  color: inherit;
}
.pv-specialties .specialties__list a.link:hover {
  border-color: var(--main-orange);
}
.pv-specialties .specialties__list a.link:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
}

/* ---- rail: verification ---- */
.pv-verify {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
}
.pv-verify i {
  font-size: 1.1rem;
  line-height: 1.4;
}
.pv-verify p {
  margin: 0 0 4px;
  font-weight: 600;
}
.pv-verify--ok {
  background: var(--pv-ok-soft);
}
.pv-verify--ok i {
  color: var(--pv-ok);
}
.pv-verify--warn {
  background: var(--pv-warn-soft);
}
.pv-verify--warn i {
  color: var(--pv-warn);
}

.pv-link {
  color: var(--pv-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.pv-link:hover {
  border-bottom-color: var(--pv-accent);
}
.pv-link:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- rail: related profiles ---- */
.pv-related {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pv-related__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--pv-ink);
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.pv-related__item:hover {
  background: var(--pv-surface-2);
  border-color: var(--pv-rule);
  color: var(--pv-ink);
}
.pv-related__item:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
}
.pv-related__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}
.pv-related__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pv-related__body {
  flex: 1 1 0;
  min-width: 0;
}
.pv-related__name {
  display: block;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-related__sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--pv-ink-2);
}
.pv-related__sub .rating-stars {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---- own-profile page (edit mode) ---- */
.pv-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.pv-panel__head .pv-panel__title {
  margin-bottom: 0;
}

.pv-edit {
  flex-shrink: 0;
}
.pv-edit i {
  display: inline-flex;
  color: var(--pv-ink-2);
  transition: color 0.15s ease;
}
.pv-edit:hover i {
  color: var(--pv-accent);
}
.pv-edit:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
}

/* the editable photo block keeps the shared include's classes (JS re-renders it
   after upload) — force every internal layer to fill the hero avatar circle */
.pv-hero__avatar--editable {
  overflow: visible;
  /* app.scss pins .avatar__wrapper--large at 220px with !important — match it */
}
.pv-hero__avatar--editable .profile-wrapper__photo-with-avatar,
.pv-hero__avatar--editable .profile-photo_wrapper,
.pv-hero__avatar--editable .avatar__wrapper,
.pv-hero__avatar--editable .forgemage-avatar {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: 50%;
}
.pv-hero__avatar--editable .profile-wrapper__photo-without-avatar {
  width: 100%;
  height: 100%;
}
.pv-hero__avatar--editable .profile-wrapper__photo-without-avatar::after {
  border-radius: 50%;
}
.pv-hero__avatar--editable .profile-wrapper__photo-without-avatar img {
  margin: auto;
}
.pv-hero__avatar--editable .forgemage-avatar img {
  border: 1px solid var(--pv-rule);
  background: var(--pv-surface-2);
}
.pv-hero__avatar--editable .profile-wrapper__photo-cta {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 0.8125rem;
}

.pv-completion__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -8px 0 16px;
  font-size: 0.875rem;
  color: var(--pv-ink-2);
}

.pv-servers {
  margin: 0;
}
.pv-servers dt {
  margin-bottom: 8px;
  font-weight: 700;
}
.pv-servers dd {
  margin: 0;
  color: var(--pv-ink-2);
}

/* sample review preview when the forgemage has no rating yet */
.pv-reviews__summary--sample,
.pv-review--sample {
  opacity: 0.45;
}

/* tips / info boxes anywhere on the page (drawers, completion congrats, alerts):
   retire the blue for the amber-soft voice */
.profile-view .highlight {
  border-radius: 12px;
}

.profile-view .highlight_info {
  background: var(--pv-accent-soft);
  color: var(--pv-ink);
}
.profile-view .highlight_info i {
  color: var(--pv-accent);
}
.profile-view .highlight_info strong {
  color: var(--pv-ink);
  padding: 0;
  font-size: 1.05rem;
}

.profile-view .highlight__accent {
  border-left-color: var(--main-orange);
}

/* ---- edit offcanvas / drawers + share dialog (page-owned markup): full Forge voice ---- */
.profile-view .dialog,
.profile-view .drawer {
  /* sheet */
  /* the global .dialog--body is hard-pinned to 580px — let the share dialog hug its content */
  /* fields — design.md input voice: 12px radius, 1.5px border, amber focus ring */
  /* description editor */
  /* photo dropzone */
  /* specialty pick chips */
  /* labelled fields */
  /* footer actions */
  /* server rows */
  /* share dialog: url + copy on one line */
  /* wishlist rows (client page) */
  /* CTAs */
}
.profile-view .dialog .drawer__inner,
.profile-view .dialog .dialog__inner,
.profile-view .drawer .drawer__inner,
.profile-view .drawer .dialog__inner {
  background: var(--pv-surface);
  color: var(--pv-ink);
}
.profile-view .dialog .drawer--header__title,
.profile-view .dialog .dialog--header__title,
.profile-view .drawer .drawer--header__title,
.profile-view .drawer .dialog--header__title {
  font-family: var(--font-heading), serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--pv-ink);
}
.profile-view .dialog .drawer--header__title p,
.profile-view .dialog .dialog--header__title p,
.profile-view .drawer .drawer--header__title p,
.profile-view .drawer .dialog--header__title p {
  margin: 0;
  font-weight: inherit;
}
.profile-view .dialog .drawer--close,
.profile-view .drawer .drawer--close {
  background: transparent;
  color: var(--pv-ink);
}
.profile-view .dialog .dialog--body,
.profile-view .drawer .dialog--body {
  height: auto;
  max-height: min(580px, 70vh);
}
.profile-view .dialog .input input,
.profile-view .dialog input[type=text],
.profile-view .drawer .input input,
.profile-view .drawer input[type=text] {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 4px 16px;
  font-size: 1rem;
  font-family: var(--font-body), sans-serif;
  border: 1.5px solid var(--pv-field-border);
  border-radius: 12px;
  background: var(--pv-surface);
  color: var(--pv-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.profile-view .dialog .input input:hover,
.profile-view .dialog input[type=text]:hover,
.profile-view .drawer .input input:hover,
.profile-view .drawer input[type=text]:hover {
  border-color: var(--main-orange);
}
.profile-view .dialog .input input:focus, .profile-view .dialog .input input:focus-visible,
.profile-view .dialog input[type=text]:focus,
.profile-view .dialog input[type=text]:focus-visible,
.profile-view .drawer .input input:focus,
.profile-view .drawer .input input:focus-visible,
.profile-view .drawer input[type=text]:focus,
.profile-view .drawer input[type=text]:focus-visible {
  border-color: var(--main-orange);
  box-shadow: var(--pv-focus-ring);
  outline: none;
}
.profile-view .dialog .label,
.profile-view .drawer .label {
  color: var(--pv-ink);
}
.profile-view .dialog .select,
.profile-view .drawer .select {
  height: 50px;
  border: 1.5px solid var(--pv-field-border);
  border-radius: 12px;
  background: var(--pv-surface);
  color: var(--pv-ink);
}
.profile-view .dialog .select:hover, .profile-view .dialog .select:focus, .profile-view .dialog .select:focus-visible,
.profile-view .drawer .select:hover,
.profile-view .drawer .select:focus,
.profile-view .drawer .select:focus-visible {
  border-color: var(--main-orange);
  box-shadow: var(--pv-focus-ring);
  outline: none;
}
.profile-view .dialog .select__chevron,
.profile-view .drawer .select__chevron {
  color: var(--pv-accent);
}
.profile-view .dialog .editor,
.profile-view .drawer .editor {
  border: 1.5px solid var(--pv-field-border);
  border-radius: 12px;
  background: var(--pv-surface);
}
.profile-view .dialog .editor.focus,
.profile-view .drawer .editor.focus {
  border-color: var(--main-orange);
  box-shadow: var(--pv-focus-ring);
}
.profile-view .dialog .editor__content,
.profile-view .drawer .editor__content {
  background: transparent;
  color: var(--pv-ink);
}
.profile-view .dialog .editor__helpers p,
.profile-view .dialog .editor__helpers-min i,
.profile-view .drawer .editor__helpers p,
.profile-view .drawer .editor__helpers-min i {
  color: var(--pv-ink-2);
}
.profile-view .dialog .dropzone__area,
.profile-view .drawer .dropzone__area {
  border: 1.5px dashed var(--pv-field-border);
  border-radius: 12px;
  background: var(--pv-surface-2);
  transition: border-color 0.15s ease;
}
.profile-view .dialog .dropzone__area:hover,
.profile-view .drawer .dropzone__area:hover {
  border-color: var(--main-orange);
}
.profile-view .dialog .dropzone__instruction__icon,
.profile-view .dialog .dropzone__file__icon,
.profile-view .drawer .dropzone__instruction__icon,
.profile-view .drawer .dropzone__file__icon {
  background: var(--pv-accent-soft);
  border-radius: 8px;
}
.profile-view .dialog .dropzone__instruction__icon .dropzone__icon,
.profile-view .dialog .dropzone__file__icon .dropzone__icon,
.profile-view .drawer .dropzone__instruction__icon .dropzone__icon,
.profile-view .drawer .dropzone__file__icon .dropzone__icon {
  color: var(--pv-accent);
}
.profile-view .dialog .dropzone__instruction__text,
.profile-view .dialog .dropzone__file__name,
.profile-view .drawer .dropzone__instruction__text,
.profile-view .drawer .dropzone__file__name {
  color: var(--pv-ink);
}
.profile-view .dialog .image-edit-rules,
.profile-view .drawer .image-edit-rules {
  color: var(--pv-ink-2);
}
.profile-view .dialog .selectable-item,
.profile-view .drawer .selectable-item {
  border: 1.5px solid var(--pv-field-border);
  border-radius: 12px;
  background: var(--pv-surface);
  color: var(--pv-ink);
}
.profile-view .dialog .selectable-item__wrapper .selectable-item:not(.selectable-item--disabled):hover,
.profile-view .drawer .selectable-item__wrapper .selectable-item:not(.selectable-item--disabled):hover {
  border: 1.5px solid var(--main-orange);
}
.profile-view .dialog .selectable-item__wrapper .selectable-item--checked,
.profile-view .drawer .selectable-item__wrapper .selectable-item--checked {
  border: 1.5px solid var(--main-orange);
  background: var(--pv-accent-soft);
  color: var(--pv-accent);
}
.profile-view .dialog .profile-edition-categorization__specialty,
.profile-view .drawer .profile-edition-categorization__specialty {
  background: var(--pv-surface-2);
  border: 1px solid var(--pv-rule);
  border-radius: 12px;
}
.profile-view .dialog .profile-edition-categorization__specialty-title,
.profile-view .drawer .profile-edition-categorization__specialty-title {
  color: var(--pv-ink);
  font-weight: 600;
}
.profile-view .dialog .pv-field,
.profile-view .drawer .pv-field {
  display: block;
}
.profile-view .dialog .pv-field__label,
.profile-view .drawer .pv-field__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--pv-ink);
}
.profile-view .dialog .pv-drawer__actions,
.profile-view .drawer .pv-drawer__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.profile-view .dialog .pv-server-row,
.profile-view .drawer .pv-server-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-view .dialog .pv-server-row + .profile-view .dialog .pv-server-row,
.profile-view .dialog .pv-server-row + .profile-view .drawer .pv-server-row,
.profile-view .drawer .pv-server-row + .profile-view .dialog .pv-server-row,
.profile-view .drawer .pv-server-row + .profile-view .drawer .pv-server-row {
  margin-top: 12px;
}
.profile-view .dialog .pv-server-row .server__item-name,
.profile-view .drawer .pv-server-row .server__item-name {
  flex: 1 1 auto;
  min-width: 0;
}
.profile-view .dialog .pv-share-row,
.profile-view .drawer .pv-share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.profile-view .dialog .pv-share-row__field,
.profile-view .drawer .pv-share-row__field {
  flex: 1 1 260px;
  min-width: 0;
}
.profile-view .dialog .wishlist,
.profile-view .drawer .wishlist {
  border-radius: 12px;
}
.profile-view .dialog .wishlist:hover,
.profile-view .drawer .wishlist:hover {
  background-color: var(--pv-accent-soft);
}
.profile-view .dialog .button_main,
.profile-view .drawer .button_main {
  background: var(--main-orange);
  border-color: var(--main-orange);
  color: var(--pv-on-amber);
  border-radius: 12px;
}
.profile-view .dialog .button_main:hover,
.profile-view .drawer .button_main:hover {
  background: var(--pv-accent-hi);
  border-color: var(--pv-accent-hi);
  color: var(--pv-on-amber);
}
.profile-view .dialog .button_main:focus-visible,
.profile-view .drawer .button_main:focus-visible {
  outline: 3px solid var(--main-orange);
  outline-offset: 2px;
}

/* ---- responsive ---- */
@media (max-width: 991px) {
  .pv-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .pv-rail {
    position: static;
  }
}
@media (max-width: 767px) {
  .profile-view {
    padding: 16px 16px 40px;
  }
  .pv-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
  }
  .pv-hero__avatar {
    width: 104px;
    height: 104px;
  }
  .pv-hero__actions {
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }
  .pv-hero__actions .pv-cta {
    width: 100%;
  }
}

/*# sourceMappingURL=profile-view.output.css.map */
