/* ===== Engagements Section ===== */

.engagements {
  padding-block: clamp(48px, 8vw, 88px);
}

/* Eyebrow */
.engagements .section-eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  color: #7B8697;
  margin: 0 0 10px 0;
  font-family: 'Kodchasan';
  text-align: center;
}

/* Titre principal */
.engagements .section-title {
  font-weight: 400;
  color: #1D3057;
  line-height: 1.15;
  font-size: 36px;
  margin: 0 0 28px 0;
  font-family: InterTight;
  text-align: center;
}

@media (max-width: 520px) {
  .engagements .section-title {
    font-weight: 400;
    color: #1D3057;
    line-height: 1.15;
    font-size: 24px;
    margin: 0 0 28px 0;
    font-family: InterTight;
    text-align: left;
  }
}

/* ===== Grille 4 colonnes ===== */
.engagements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .engagements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .engagements-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* ===== Cartes ===== */
.engagement-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
  align-items: start;

  background: #FFFFFF;
  border: 1px solid #E6EBF2;
  padding: 18px 18px;

  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
  will-change: transform;
  border-radius: 8px;
  width: 100%;
  max-width: 295px;
  height: 264px;
}

/* Version mobile */
@media (max-width: 767px) {
  .engagement-card {
    width: 100%;
    /* max-width: 350px; */
    /* height: 200px; */
  }

  /* .engagement-card .card-text {

    WIDTH: 310px;
    height: 95px;

  } */

  .ambition-card {
    /* width: 350px; */
    /* height: 211px; */
  }

}

@media (min-width: 1024px) {
  .engagement-card {
    padding: 20px 22px;
    gap: 14px;
  }
}

/* 
.engagement-card:hover {
  box-shadow: 0 6px 18px rgba(16, 33, 60, 0.06);
  transform: translateY(-2px);
  border-color: #DDE4EE;
}

@media (hover: none) {
  .engagement-card:hover {
    transform: none;
    box-shadow: none;
  }
} */

/* Icône */
.engagement-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.engagement-card .card-icon {
  width: 56px;
  height: 56px;
}

/* Contenu */
.engagement-card .card-content {
  display: grid;
  gap: 8px;
  width: 255px;
  height: 117px;
}

.engagement-card .card-title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  color: #1D3057;
  font-family: InterTight;
}

.engagement-card .card-text {
  color: #5E6A7D;
  FONT-FAMILY: InterTight;
}