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

.ed-filtered-candidates-root .fc-section {
  padding: 56px 0 70px;
  background: #fff;
}

.ed-filtered-candidates-root .fc-lead {
  text-align: center;
  color: var(--fc-muted);
  font-size: 17px;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.ed-filtered-candidates-root .fc-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

.ed-filtered-candidates-root .fc-package-card {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 16px;
  box-shadow: var(--fc-card-shadow);
  padding: 30px 34px 34px;
  display: flex;
  flex-direction: column;
}

.ed-filtered-candidates-root .fc-package-card h3 {
  color: var(--fc-brand);
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--fc-brand);
  margin: 0 0 22px;
}

.ed-filtered-candidates-root .fc-package-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ed-filtered-candidates-root .fc-package-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #33415c;
  margin: 16px 0;
}

.ed-filtered-candidates-root .fc-package-card li:first-child {
  margin-top: 0;
}

.ed-filtered-candidates-root .fc-package-card li:last-child {
  margin-bottom: 0;
}

.ed-filtered-candidates-root .fc-package-card li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fc-ink);
}

.ed-filtered-candidates-root .fc-email-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  border: none;
  background: var(--fc-navy);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.ed-filtered-candidates-root .fc-email-btn:hover {
  background: var(--fc-navy-dark);
  color: #fff;
}

@media (max-width: 980px) {
  .ed-filtered-candidates-root .fc-package-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .ed-filtered-candidates-root .fc-lead {
    font-size: 15px;
    text-align: left;
  }

  .ed-filtered-candidates-root .fc-package-card {
    padding: 24px 22px;
  }
}
