/* ===================================
   talents.css – page chapeau talents
   =================================== */

/* ---- Hero ---- */
.tl-hero {
  background: linear-gradient(135deg, #f0f2f8 0%, #e8ebf5 100%);
  padding: 80px 0 64px;
  text-align: center;
}

.tl-hero__inner { max-width: 680px; margin: 0 auto; }

.tl-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.tl-hero__sub {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Offres ---- */
.tl-offres__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.tl-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(27,44,94,.12);
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.tl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(27,44,94,.18);
}

/* Card top band */
.tl-card__top {
  padding: 36px 32px 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tl-card__top--coral { background: linear-gradient(135deg, #c94460 0%, var(--coral) 100%); }
.tl-card__top--navy  { background: linear-gradient(135deg, #1b2c5e 0%, #2a3f7e 100%); }

.tl-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-card__cpf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .06em;
  width: fit-content;
}

.tl-card__label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: .8;
}

/* Card body */
.tl-card__body {
  background: var(--white);
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tl-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.tl-card__title-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #1e7a47;
}

.tl-card__desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 24px;
}

.tl-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.tl-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: var(--text);
  line-height: 1.5;
}

.tl-check {
  width: 18px;
  height: 18px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.tl-card__footer {
  border-top: 1px solid var(--gray-mid);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tl-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tl-tag {
  padding: 4px 12px;
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light);
}

.tl-tag--green {
  background: #e8f5ee;
  color: #1e7a47;
  border-color: #b2dfc4;
}

.tl-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .2s;
}

.tl-card__cta--coral {
  background: var(--coral);
  color: var(--white);
}
.tl-card__cta--coral:hover { background: var(--coral-dark); }

.tl-card__cta--navy {
  background: var(--navy);
  color: var(--white);
}
.tl-card__cta--navy:hover { background: #14224b; }

/* ---- Pas sûr(e) ---- */
.tl-aide {
  padding: 72px 0;
}

.tl-aide__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.tl-aide__text { max-width: 560px; }

.tl-aide__text h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.tl-aide__text p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 10px;
}

.tl-aide__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.tl-aide__cta .btn--coral { flex-direction: row; font-size: .84rem; }

.tl-aide__note {
  font-size: .75rem;
  color: var(--text-light);
  text-align: center;
}

/* ---- Profiles ---- */
.tl-profiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tl-profile {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.tl-profile:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
}

.tl-profile__icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.tl-profile h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.tl-profile p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tl-profile__link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .04em;
  transition: gap .15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tl-profile__link:hover { gap: 8px; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 860px) {
  .tl-offres__grid { grid-template-columns: 1fr; }
  .tl-aide__inner  { flex-direction: column; text-align: center; }
  .tl-aide__text   { max-width: 100%; }
}

@media (max-width: 768px) {
  .tl-profiles__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .tl-profiles__grid { grid-template-columns: 1fr; }
  .tl-aide__cta .btn { width: 100%; justify-content: center; }
}
