/* ─── ABOUT PAGE ────────────────────────────────────────────────────────────── */

.about-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 150px 32px 80px;
}

.about-surtitle{
  font-size: 16px;
  font-weight: 500;
  color: var(--redlina-graytext-1);
  margin-bottom: 0px;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--redlina-black);
  margin-top: 20px;
  margin-bottom: 100px;
}

/* ─── BD STRIP ───────────────────────────────────────────────────────────────── */

.bd-strip {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.bd-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bd-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.bd-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bd-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--redlina-black);
}

.bd-panel--reverse {
  direction: rtl;
}

.bd-panel--reverse .bd-text {
  direction: ltr;
}

br {
  display: block;
  margin-bottom: 10px; /* ajuste la valeur selon l'espace voulu */
}



/* ─── QUOTE ───────────────────────────────────────────────────────────────── */

.about-quote {
  margin: 100px 0 80px 0;
  padding: 50px 120px 50px 120px;
  background: var(--redlina-background-1);
  border-radius: 16px;
}

.about-quote-text {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--redlina-black);
  margin-top: 0px;
  margin-bottom: 15px;
}

.about-quote-author {
  font-size: 18px;
  color: var(--redlina-graytext-2);
  font-weight: 400;
  font-style: normal;
}