/* Extracted from recruiter-dashboard/company/preview/index.html. */
body { background: linear-gradient(180deg, #eef2f0 0%, var(--canvas) 320px); }
    body { background: var(--canvas, #f3f5f7); }

    /* ── Preview banner ── */
    .preview-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .preview-topbar__back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--accent, #059669);
      text-decoration: none;
    }
    .preview-topbar__back:hover { color: var(--accent-hover, #047857); }
    .preview-topbar__back svg {
      width: 16px; height: 16px;
      stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .preview-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding: 14px 20px;
      border-radius: 12px;
      background: rgba(5,150,105,0.06);
      border: 1px solid rgba(5,150,105,0.14);
      margin-bottom: 28px;
    }
    .preview-banner__text {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--ink, #01382c);
    }

    /* ── Public profile card ── */
    .public-profile {
      display: grid;
      gap: 24px;
    }
    .profile-section {
      padding: 28px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--line, rgba(1,56,44,0.1));
    }
    .profile-section h2 {
      margin: 0 0 16px;
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--ink, #01382c);
    }

    /* ── Company header (public) ── */
    .pub-header {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }
    .pub-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;
    }
    .pub-header__info { flex: 1; min-width: 0; }
    .pub-header__name {
      margin: 0 0 6px;
      font-size: 1.5rem; font-weight: 700;
      color: var(--ink, #01382c); line-height: 1.2;
    }
    .pub-header__meta {
      display: flex; flex-wrap: wrap; gap: 6px 16px;
      font-size: 0.8125rem; color: var(--ink-soft, rgba(1,56,44,0.76));
      margin-bottom: 10px;
    }
    .pub-header__meta span {
      display: inline-flex; align-items: center; gap: 5px;
    }
    .pub-header__meta svg {
      width: 14px; height: 14px; stroke: currentColor;
      fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .pub-header__rating {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.875rem; font-weight: 700;
      color: var(--ink, #01382c);
    }
    .pub-header__rating .star {
      color: #f59e0b;
    }
    .pub-header__link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.8125rem; font-weight: 600;
      color: var(--accent, #059669);
      text-decoration: none;
      margin-left: 16px;
    }
    .pub-header__link:hover { text-decoration: underline; }
    .pub-header__link svg {
      width: 14px; height: 14px; stroke: currentColor;
      fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }

    /* ── About ── */
    .pub-about p {
      margin: 0 0 12px;
      font-size: 0.875rem; line-height: 1.65;
      color: var(--ink-soft, rgba(1,56,44,0.76));
    }
    .pub-about p:last-child { margin-bottom: 0; }

    /* ── Why work here ── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }
    .why-card {
      padding: 20px;
      border-radius: 14px;
      background: var(--surface-muted, #f7faf8);
      border: 1px solid var(--line-soft, rgba(1,56,44,0.08));
    }
    .why-card__title {
      font-size: 0.875rem; font-weight: 700;
      color: var(--ink, #01382c);
      margin-bottom: 6px;
    }
    .why-card__desc {
      font-size: 0.8125rem;
      color: var(--ink-soft, rgba(1,56,44,0.76));
      line-height: 1.5;
    }

    /* ── Tech stack chips ── */
    .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, #01382c);
    }

    /* ── Open positions ── */
    .positions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 14px;
    }
    .position-card {
      padding: 20px;
      border-radius: 14px;
      border: 1px solid var(--line, rgba(1,56,44,0.1));
      background: #fff;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .position-card:hover {
      border-color: rgba(5,150,105,0.22);
      box-shadow: 0 4px 16px rgba(1,56,44,0.06);
    }
    .position-card__title {
      font-size: 0.9375rem; font-weight: 700;
      color: var(--ink, #01382c);
      margin-bottom: 6px;
    }
    .position-card__meta {
      display: flex; flex-wrap: wrap; gap: 4px 12px;
      font-size: 0.75rem; color: var(--ink-faint, rgba(1,56,44,0.56));
      margin-bottom: 12px;
    }
    .position-card__link {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 0.8125rem; font-weight: 600;
      color: var(--accent, #059669);
      text-decoration: none;
    }
    .position-card__link:hover { text-decoration: underline; }

    /* ── Setup badge ── */
    .setup-badge {
      display: inline-flex;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .setup-badge--remote {
      background: rgba(5,150,105,0.08);
      color: #059669;
    }
    .setup-badge--hybrid {
      background: rgba(245,158,11,0.1);
      color: #b45309;
    }
    .setup-badge--onsite {
      background: rgba(109,89,217,0.08);
      color: #6d59d9;
    }

    /* ── Team cards ── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 14px;
    }
    .team-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px;
      border-radius: 14px;
      border: 1px solid var(--line, rgba(1,56,44,0.1));
      background: #fff;
    }
    .team-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #059669 0%, #01382c 100%);
      display: grid; place-items: center; flex-shrink: 0;
      font-size: 0.875rem; font-weight: 700; color: #fff;
      letter-spacing: 0.02em;
    }
    .team-card__info { min-width: 0; }
    .team-card__name {
      font-size: 0.875rem; font-weight: 700;
      color: var(--ink, #01382c);
    }
    .team-card__role {
      font-size: 0.75rem;
      color: var(--ink-soft, rgba(1,56,44,0.76));
    }

    /* ── Button ── */
    .button--primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-height: 38px;
      padding: 0 18px;
      border-radius: 10px;
      background: var(--ink, #01382c);
      color: #ebfff9;
      font-size: 0.8125rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
    }
    .button--primary:hover { background: #005c47; }

    /* ── Responsive ── */
    @media (max-width: 639px) {
      .pub-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .pub-header__meta { justify-content: center; }
      .why-grid { grid-template-columns: 1fr; }
      .positions-grid { grid-template-columns: 1fr; }
    }
