/* Extracted from recruiter-dashboard/profile/index.html. */
/* ── Recruiter Profile ── */
    .profile-column {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 24px 0 48px;
    }

    /* ── Profile Header Card ── */
    .rp-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 4px;
      padding: 32px 24px 28px;
    }
    .rp-header__avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: #059669;
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      flex-shrink: 0;
    }
    .rp-header__name {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-primary, #111827);
      margin: 0;
      line-height: 1.3;
    }
    .rp-header__title {
      font-size: 15px;
      color: var(--text-secondary, #6b7280);
      margin: 0;
    }
    .rp-header__company {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary, #111827);
      margin: 2px 0 0;
    }
    .rp-header__location {
      font-size: 13px;
      color: var(--text-secondary, #6b7280);
      display: flex;
      align-items: center;
      gap: 4px;
      margin: 4px 0 0;
    }
    .rp-header__since {
      font-size: 12px;
      color: var(--text-tertiary, #9ca3af);
      margin: 2px 0 0;
    }
    .rp-header__actions {
      display: flex;
      gap: 8px;
      margin-top: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ── Completeness Bar ── */
    .rp-completeness {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 16px;
      width: 100%;
      max-width: 320px;
    }
    .rp-completeness__label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary, #6b7280);
      white-space: nowrap;
    }
    .rp-completeness__track {
      flex: 1;
      height: 6px;
      background: var(--surface-border, #e5e7eb);
      border-radius: 3px;
      overflow: hidden;
    }
    .rp-completeness__fill {
      height: 100%;
      width: 85%;
      background: #059669;
      border-radius: 3px;
      transition: width .4s ease;
    }
    .rp-completeness__pct {
      font-size: 12px;
      font-weight: 700;
      color: #059669;
    }

    /* ── Section Cards ── */
    .rp-section {
      padding: 24px;
    }
    .rp-section__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .rp-section__title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary, #111827);
      margin: 0;
    }
    .rp-section__body p {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-secondary, #4b5563);
      margin: 0 0 10px;
    }
    .rp-section__body p:last-child {
      margin-bottom: 0;
    }

    /* ── Hiring Activity Stats ── */
    .rp-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .rp-stat {
      text-align: center;
      padding: 12px 8px;
      background: var(--surface-soft, #f9fafb);
      border-radius: 10px;
    }
    .rp-stat__value {
      display: block;
      font-size: 26px;
      font-weight: 700;
      color: var(--text-primary, #111827);
      line-height: 1.2;
    }
    .rp-stat__label {
      display: block;
      font-size: 11px;
      color: var(--text-secondary, #6b7280);
      margin-top: 4px;
      line-height: 1.3;
    }
    @media (max-width: 520px) {
      .rp-stats {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1119px) {
      .profile-column {
        gap: 16px;
        padding: 0 0 32px;
      }
      .rp-header {
        padding: 28px 20px 24px;
      }
      .rp-section {
        padding: 20px 18px;
      }
      .rp-section__head {
        align-items: flex-start;
        gap: 10px;
      }
      .rp-detail__row {
        gap: 2px;
      }
      .rp-detail__key {
        min-width: 0;
      }
    }

    /* ── Chips ── */
    .rp-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .rp-chip {
      display: inline-block;
      font-size: 13px;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 999px;
      background: rgba(5, 150, 105, 0.08);
      color: #047857;
    }

    /* ── Detail Row ── */
    .rp-detail {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .rp-detail__row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      font-size: 14px;
      line-height: 1.5;
    }
    .rp-detail__key {
      color: var(--text-secondary, #6b7280);
      min-width: 110px;
      flex-shrink: 0;
    }
    .rp-detail__val {
      color: var(--text-primary, #111827);
      font-weight: 500;
    }
    .rp-detail__val a {
      color: #059669;
      text-decoration: none;
    }
    .rp-detail__val a:hover {
      text-decoration: underline;
    }
