/* Page Objectifs et actions */
.obj-section {
  padding: 84px 0;
}

.obj-section--alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.obj-intro {
  max-width: 62ch;
  margin-top: 16px;
  color: #5f5863;
  font-size: 1.02rem;
}

.obj-intro p {
  margin: 0 0 0.75em;
  font: inherit;
  color: inherit;
  line-height: inherit;
}

.obj-intro p:last-child {
  margin-bottom: 0;
}

.obj-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.obj-cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.obj-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--corail);
  border-radius: var(--r-sm);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
}

.obj-card--soft {
  border-left-color: var(--prune);
}

.obj-card h3 {
  font-size: 1.15rem;
  color: var(--prune);
  margin: 0 0 10px;
  font-weight: 700;
}

.obj-card .ldc-wysiwyg {
  color: #6c646f;
  font-size: 0.96rem;
}

.obj-card .ldc-wysiwyg p {
  margin: 0 0 0.65em;
  font: inherit;
  color: inherit;
  line-height: inherit;
}

.obj-card .ldc-wysiwyg p:last-child {
  margin-bottom: 0;
}

.obj-actions-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.obj-action {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 28px;
  box-shadow: var(--sh-sm);
}

.obj-action__num {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--corail-d);
  line-height: 1;
  min-width: 2ch;
}

.obj-action__body h3 {
  font-size: 1.18rem;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 700;
}

.obj-action__body .ldc-wysiwyg {
  color: #6c646f;
  font-size: 0.97rem;
}

.obj-action__body .ldc-wysiwyg p {
  margin: 0 0 0.65em;
  font: inherit;
  color: inherit;
  line-height: inherit;
}

.obj-action__body .ldc-wysiwyg p:last-child {
  margin-bottom: 0;
}

.obj-action__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--prune);
  text-decoration: none;
}

.obj-action__link:hover {
  color: var(--corail-d);
}

@media (max-width: 900px) {
  .obj-cards--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .obj-section {
    padding: 60px 0;
  }

  .obj-cards,
  .obj-cards--3 {
    grid-template-columns: 1fr;
  }

  .obj-action {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
