/* Figma hiringdesign/employer/services/cv-search — middle content only */
.ed-cv-search-root {
  --cs-brand: #1b5fc4;
  --cs-brand-dark: #164f9f;
  --cs-navy: #123763;
  --cs-ink: #0f2b52;
  --cs-muted: #6b7280;
  --cs-off: #eef1f5;
  --cs-card-shadow: 0 10px 30px rgba(15, 43, 82, 0.08);
  display: block;
  width: 100%;
}

.ed-cv-search-root .cs-pricing-band {
  background: var(--cs-off);
  padding: 50px 0 70px;
}

.ed-cv-search-root .cs-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.ed-cv-search-root .cs-price-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--cs-card-shadow);
  padding: 34px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ed-cv-search-root .cs-price-card .cs-p-name {
  font-size: 24px;
  font-weight: 700;
  color: #33415c;
  margin-bottom: 16px;
}

.ed-cv-search-root .cs-price-card .cs-p-desc {
  color: var(--cs-muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
  min-height: 44px;
}

.ed-cv-search-root .cs-price-card .cs-p-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--cs-ink);
  margin-bottom: 14px;
}

.ed-cv-search-root .cs-price-card .cs-p-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ed-cv-search-root .cs-price-card .cs-p-lines li {
  padding: 15px 6px;
  font-size: 15px;
  color: #4a5568;
  border-bottom: 1px solid #e7ebf1;
}

.ed-cv-search-root .cs-price-card .cs-p-lines li:first-child {
  border-top: 1px solid #e7ebf1;
}

.ed-cv-search-root .cs-price-btn {
  display: inline-block;
  margin-top: 24px;
  border: none;
  background: linear-gradient(90deg, var(--cs-brand), #2f7de0);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 46px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.ed-cv-search-root .cs-price-btn:hover {
  filter: brightness(0.94);
  color: #fff;
}

.ed-cv-search-root .cs-price-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}

.ed-cv-search-root .cs-vat {
  margin-top: 18px;
  font-size: 13px;
  color: var(--cs-muted);
}

.ed-cv-search-root .cs-price-card.featured {
  background: linear-gradient(160deg, #1f6ad0, var(--cs-navy));
  color: #fff;
  padding: 44px 34px;
  box-shadow: 0 20px 45px rgba(15, 43, 82, 0.28);
  transform: scale(1.04);
  z-index: 2;
  position: relative;
}

.ed-cv-search-root .cs-price-card.featured .cs-p-name,
.ed-cv-search-root .cs-price-card.featured .cs-p-price {
  color: #fff;
}

.ed-cv-search-root .cs-price-card.featured .cs-p-desc {
  color: rgba(255, 255, 255, 0.9);
}

.ed-cv-search-root .cs-price-card.featured .cs-p-lines li {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.ed-cv-search-root .cs-price-card.featured .cs-p-lines li:first-child {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.ed-cv-search-root .cs-price-card.featured .cs-price-btn {
  background: #fff;
  color: var(--cs-brand);
}

.ed-cv-search-root .cs-price-card.featured .cs-price-btn:hover {
  filter: brightness(0.96);
  color: var(--cs-brand);
}

.ed-cv-search-root .cs-price-card.featured .cs-vat {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 980px) {
  .ed-cv-search-root .cs-pricing-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .ed-cv-search-root .cs-price-card.featured {
    transform: none;
  }
}
