/* ============================================
   INDIVIDUAL LISTING PAGE
   ============================================ */

.listing-page {
  padding: var(--sp-6) 0 var(--sp-7);
  min-height: 60vh;
}

.breadcrumb {
  font-size: var(--step--1);
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: var(--sp-4);
}

.breadcrumb a {
  color: var(--file-green);
  opacity: 1;
}

.breadcrumb span[aria-current] {
  color: var(--ink);
  font-weight: 600;
  opacity: 1;
}

.listing-header {
  margin-bottom: var(--sp-5);
}

.listing-header h1 {
  font-size: var(--step-3);
  margin-top: var(--sp-2);
  max-width: 32ch;
}

.listing-agency {
  font-size: var(--step-0);
  color: var(--file-green);
  font-weight: 600;
  margin-top: var(--sp-2);
}

.listing-facts {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--line);
}

.listing-facts th,
.listing-facts td {
  text-align: left;
  padding: 0.7rem var(--sp-3);
  border-bottom: 1px solid var(--line);
  font-size: var(--step--1);
}

.listing-facts th {
  width: 35%;
  font-family: var(--font-mono);
  color: var(--ink);
  opacity: 0.6;
  font-weight: 600;
}

.listing-facts tr:last-child th,
.listing-facts tr:last-child td {
  border-bottom: none;
}

.listing-body {
  max-width: 70ch;
  margin-bottom: var(--sp-5);
}

.listing-body h2 {
  font-size: var(--step-1);
  margin-bottom: var(--sp-2);
}

.listing-body p {
  margin: 0 0 var(--sp-3);
  color: var(--ink);
  opacity: 0.85;
}

.listing-cta {
  display: inline-block;
  background: var(--file-green);
  color: var(--paper);
  font-weight: 700;
  font-size: var(--step-0);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-stamp);
}

.listing-cta:hover { background: var(--file-green-dk); }

.listing-disclaimer {
  margin-top: var(--sp-6);
  font-size: 0.74rem;
  opacity: 0.55;
  border-top: 1px solid var(--line);
  padding-top: var(--sp-4);
}

.site-footer-mini {
  background: var(--ink);
  color: var(--paper-dim);
  padding: var(--sp-4) 0;
}

.site-footer-mini .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--step--1);
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.site-footer-mini a {
  color: var(--seal-gold);
}

/* ============================================
   EMPLOYEE REVIEWS & INSIGHTS
   ============================================ */

.job-reviews {
  margin: var(--sp-4) 0;
  padding: var(--sp-4);
  background: var(--paper-dim);
  border-left: 4px solid var(--seal-gold);
  border-radius: var(--radius);
}

.job-reviews h3 {
  font-size: var(--step-0);
  margin: 0 0 var(--sp-1) 0;
  color: var(--file-green-dk);
}

.job-reviews p {
  font-size: var(--step--1);
  margin-bottom: var(--sp-3);
}

.review-card {
  margin: var(--sp-3) 0 0 0;
  padding: 0.6rem var(--sp-3);
  background: var(--white);
  border-left: 3px solid var(--file-green);
  border-radius: 2px;
}

.review-card p {
  font-style: italic;
  margin: 0 0 var(--sp-1) 0;
  font-size: var(--step--1);
  color: var(--ink);
}

.review-card footer {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--file-green-dk);
}

.review-card footer small {
  color: var(--ink);
  opacity: 0.7;
}

@media (max-width: 620px) {
  .listing-page { padding: var(--sp-5) 0 var(--sp-6); }

  .listing-header h1 { max-width: none; }

  .listing-facts th { width: 46%; }
  .listing-facts th,
  .listing-facts td {
    padding: 0.6rem var(--sp-2);
    font-size: 0.82rem;
  }

  .listing-cta {
    display: block;
    text-align: center;
    width: 100%;
  }

  .site-footer-mini .container {
    flex-direction: column;
    text-align: center;
  }
}