/* EIC Career Cards widget styles */

.eic-career-cards-widget {
  /* Defaults (overridden by inline styles set in widget.php) */
  display: flex;
  justify-content: var(--eic-cc-align, center);
  width: 100%;

  --eic-cc-align: center;
  --eic-cc-height: auto;
  --eic-cc-bg: #1d2542;
  --eic-cc-title: #f1f5f9;
  --eic-cc-text: #e2e8f0;
  --eic-cc-icon: var(--eic-cc-title);
  --eic-cc-badge-bg: #f1f5f9;
  --eic-cc-badge-border: #f1f5f9;
  --eic-cc-badge-text: #1d2542;
  --eic-cc-check: #0ac8a3;
  --eic-cc-button-border: #e2e8f0;
  --eic-cc-button-bg: transparent;
  --eic-cc-button-text: #e2e8f0;
}

 .eic-cc-card {
  height: var(--eic-cc-height, 387px);
  width: var(--eic-cc-width, 600px);
  background: var(--eic-cc-bg);
  color: var(--eic-cc-text);

  border-radius: 26px;
  padding: 44px 40px;
  box-shadow: none;

  display: flex;
  flex-direction: column;
  align-items: stretch;
}

 .eic-cc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

 .eic-cc-title-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
  min-width: 0;
}

 .eic-cc-icon {
  color: var(--eic-cc-icon);
  font-size: 30px;
  line-height: 1;
}

 .eic-cc-title {
  margin: 0;
  color: var(--eic-cc-title);
  font-size: 30px;
  font-weight: 600px;
}

 .eic-cc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 700px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: var(--eic-cc-badge-text);
  background: var(--eic-cc-badge-bg);
  border: 1px solid var(--eic-cc-badge-border);
}

 .eic-cc-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 92%;
  
}

 .eic-cc-list > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

 .eic-cc-check {
  /* SVG uses stroke="currentColor" */
  color: var(--eic-cc-check);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

 .eic-cc-list > li > span {
  display: block;
  color: var(--eic-cc-text);
  font-size: 18px;
  line-height: 1.4;
}

 .eic-cc-cta {
  margin-top: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  align-self: stretch;
  width: 100%;
  padding: 16px 24px;
  border-radius: 100px;

  border: 2px solid var(--eic-cc-button-border);
  background-color: var(--eic-cc-button-bg);
  color: var(--eic-cc-button-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;

  transition: background-color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

 .eic-cc-cta:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: none;
}

@media (max-width: 480px) {
  .eic-cc-card {
    position: relative;
    padding: 30px 20px;
    padding-top: 48px;
    height: auto;
  }

  .eic-cc-title {
    font-size: 24px;
  }

  .eic-cc-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .eic-cc-list > li > span {
    font-size: 16px;
  }
}