/* ##################### */
/* SECTION PRÉSENTATION */
/* ################### */

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-intro {
  font-size: 14px;
  color: #0F6E56;
  font-weight: 500;
  line-height: 1.7;
  border-left: 3px solid #1D9E75;
  padding-left: 12px;
}

.about-main p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.about-main strong {
  color: #111;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 10px 14px;
}

.about-card-title {
  font-size: 11px;
  color: #888;
  margin-bottom: 2px;
}

.about-card-value {
  font-size: 13px;
  color: #111;
  font-weight: 500;
}