/* Extracted from recruiter-dashboard/company/index.html. */
body { background: linear-gradient(180deg, #eef2f0 0%, var(--canvas) 320px); }
    /* ── Company Profile Header ── */
    .company-header {
      display: flex; gap: 24px; align-items: flex-start;
      padding: 28px; border-radius: 16px;
      background: #fff; border: 1px solid var(--line);
    }
    .company-logo {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, #059669 0%, #01382c 100%);
      display: grid; place-items: center; flex-shrink: 0;
      font-size: 1.5rem; font-weight: 700; color: #fff;
      letter-spacing: 0.04em;
    }
    .company-header__info { flex: 1; min-width: 0; }
    .company-header__name {
      margin: 0 0 6px; font-size: 1.5rem; font-weight: 700;
      color: var(--ink); line-height: 1.2;
    }
    .company-header__meta {
      display: flex; flex-wrap: wrap; gap: 6px 16px;
      font-size: 0.8125rem; color: var(--ink-soft);
      margin-bottom: 16px;
    }
    .company-header__meta span {
      display: inline-flex; align-items: center; gap: 5px;
    }
    .company-header__meta svg {
      width: 14px; height: 14px; stroke: currentColor;
      fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }

    /* ── Completeness bar ── */
    .completeness { margin-top: 4px; }
    .completeness__label {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.75rem; font-weight: 600; color: var(--ink-soft);
      margin-bottom: 6px;
    }
    .completeness__label strong { color: var(--accent); }
    .completeness__track {
      height: 8px; border-radius: 999px;
      background: rgba(1,56,44,0.06); overflow: hidden;
    }
    .completeness__fill {
      height: 100%; border-radius: 999px;
      background: linear-gradient(90deg, #059669, #34d399);
      transition: width 0.4s ease;
    }

    .company-header__actions { flex-shrink: 0; align-self: flex-start; }

    /* ── Section Tabs ── */
    .section-tabs {
      display: flex; gap: 6px; flex-wrap: wrap;
      margin-bottom: 24px; margin-top: 24px;
    }
    .section-tab {
      display: inline-flex; align-items: center;
      min-height: 38px; padding: 0 18px; border-radius: 999px;
      border: 1px solid var(--line); background: #fff;
      font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft);
      cursor: pointer; transition: all 0.15s ease;
    }
    .section-tab:hover {
      background: rgba(131,230,189,0.12);
      border-color: rgba(5,150,105,0.14); color: var(--ink);
    }
    .section-tab.is-active {
      background: #f0fdf8; border-color: rgba(5,150,105,0.22);
      color: var(--ink);
    }

    /* ── Content grid ── */
    .company-content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      gap: 24px; align-items: start;
    }
    /* Author CSS display: grid was overriding the `hidden` attribute's
       default display:none, so every tab panel rendered stacked. Force
       hidden to actually hide the panel. */
    .company-content[hidden] { display: none; }
    .company-content__main { display: grid; gap: 24px; }

    /* ── Card surfaces: uniform lift so adjacent cards read as separate
       units against the --canvas background. Applies to every .about-block,
       .tech-stack, .details-grid, .social-links, and .tips-card. ── */
    .about-block,
    .tech-stack,
    .details-grid,
    .social-links,
    .tips-card {
      border-color: rgba(1, 56, 44, 0.14);
      box-shadow: 0 1px 3px rgba(1, 56, 44, 0.06), 0 1px 2px rgba(1, 56, 44, 0.04);
    }

    /* ── Sub-card grids inside .about-block (Values, Office Locations, Benefits)
       Consistent spacing + stronger card tint so each mini-card reads as its
       own distinct unit instead of visually merging with its neighbors. ── */
    .about-block .sub-grid {
      display: grid;
      gap: 20px;
      margin-top: 12px;
    }
    .about-block .sub-grid--2 { grid-template-columns: 1fr 1fr; }
    .about-block .sub-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .about-block .sub-card {
      padding: 20px;
      border-radius: 12px;
      background: #f0fdf8;
      border: 1px solid rgba(5, 150, 105, 0.22);
      box-shadow: 0 1px 2px rgba(1, 56, 44, 0.04);
    }
    @media (max-width: 767px) {
      .about-block .sub-grid--2,
      .about-block .sub-grid--3 { grid-template-columns: 1fr; gap: 14px; }
    }

    /* ── About block ── */
    .about-block { padding: 24px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
    .about-block h3 {
      margin: 0 0 14px; font-size: 1rem; font-weight: 700;
      color: var(--ink);
    }
    .about-block p {
      margin: 0 0 12px; font-size: 0.875rem; line-height: 1.65;
      color: var(--ink-soft);
    }
    .about-block p:last-child { margin-bottom: 0; }

    /* ── Tech stack chips ── */
    .tech-stack { padding: 24px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
    .tech-stack h3 {
      margin: 0 0 14px; font-size: 1rem; font-weight: 700;
      color: var(--ink);
    }
    .tech-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .tech-chip {
      display: inline-flex; align-items: center;
      padding: 6px 14px; border-radius: 999px;
      background: rgba(5,150,105,0.06); border: 1px solid rgba(5,150,105,0.12);
      font-size: 0.8125rem; font-weight: 500; color: var(--ink);
    }

    /* ── Key details grid ── */
    .details-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px; padding: 24px; border-radius: 16px;
      background: #fff; border: 1px solid var(--line);
    }
    .detail-item { display: grid; gap: 4px; }
    .detail-item__label {
      font-size: 0.6875rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--ink-faint);
    }
    .detail-item__value {
      font-size: 0.9375rem; font-weight: 600; color: var(--ink);
    }

    /* ── Social links ── */
    .social-links {
      display: flex; flex-wrap: wrap; gap: 10px;
      padding: 24px; border-radius: 16px;
      background: #fff; border: 1px solid var(--line);
    }
    .social-links h3 {
      width: 100%; margin: 0 0 14px; font-size: 1rem;
      font-weight: 700; color: var(--ink);
    }
    .social-link {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 16px; border-radius: 999px;
      background: rgba(1,56,44,0.04); border: 1px solid var(--line);
      font-size: 0.8125rem; font-weight: 500; color: var(--ink);
      text-decoration: none; transition: all 0.15s ease;
    }
    .social-link:hover {
      background: rgba(5,150,105,0.08);
      border-color: rgba(5,150,105,0.18);
    }
    .social-link svg {
      width: 16px; height: 16px; fill: currentColor;
    }

    /* ── Profile Tips sidebar card ── */
    .tips-card {
      padding: 24px; border-radius: 16px;
      background: #fff; border: 1px solid var(--line);
      position: sticky; top: 80px;
    }
    .tips-card h3 {
      margin: 0 0 6px; font-size: 1rem; font-weight: 700;
      color: var(--ink);
    }
    .tips-card > p {
      margin: 0 0 18px; font-size: 0.8125rem; color: var(--ink-soft);
    }
    .tip-item {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 14px 0;
      border-top: 1px solid var(--line);
    }
    .tip-item:first-of-type { border-top: none; padding-top: 0; }
    .tip-icon {
      width: 34px; height: 34px; border-radius: 10px;
      display: grid; place-items: center; flex-shrink: 0;
      font-size: 1rem;
    }
    .tip-icon--photos { background: rgba(59,130,246,0.1); }
    .tip-icon--benefits { background: rgba(245,158,11,0.1); }
    .tip-icon--diversity { background: rgba(168,85,247,0.1); }
    .tip-item__copy { min-width: 0; }
    .tip-item__copy strong {
      display: block; font-size: 0.8125rem; font-weight: 600;
      color: var(--ink); margin-bottom: 3px;
    }
    .tip-item__copy span {
      font-size: 0.75rem; color: var(--ink-soft); line-height: 1.5;
    }

    /* ── Responsive ── */
    @media (max-width: 899px) {
      .company-content {
        grid-template-columns: minmax(0, 1fr);
      }
      .tips-card { position: static; }
    }
    @media (max-width: 639px) {
      .company-header {
        flex-direction: column; align-items: center;
        text-align: center;
      }
      .company-header__meta { justify-content: center; flex-wrap: wrap; }
      .company-header__actions { align-self: center; }
      .details-grid { grid-template-columns: 1fr 1fr; }
      .dashboard-main { min-width: 0; overflow-x: hidden; }
      .about-block, .tech-stack { max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
      .about-block p { font-size: 0.8125rem; }
    }
