/* ============================================
   ABOUT BLOCKS
   ============================================ */
.about-block {
  width: 100%;
  background-color: var(--color-bg-section);
}

.about-block--alt {
  background-color: var(--color-bg);
}

.about-block-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1070px;
  margin: 0 auto;
  padding: 80px 16px;
}

.about-image {
  width: 380px;
  height: 460px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.about-image-landscape {
  width: 500px;
  height: 360px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.about-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 28px;
  opacity: 0.9;
  text-align: justify;
  hyphens: none;
}

.about-highlight {
  color: var(--color-accent);
  font-family: var(--font-body);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-block-inner {
    gap: 40px;
    padding: 56px 24px;
  }

  .about-image {
    width: 300px;
    height: 380px;
  }

  .about-text {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 700px) {
  .about-block-inner {
    flex-direction: column;
    gap: 28px;
    padding: 40px 16px;
  }

  /* Image toujours en premier sur mobile */
  .about-image {
    order: -1;
    width: 100%;
    height: 260px;
  }

  .about-content {
    max-width: 100%;
    gap: 20px;
  }

  .about-text {
    font-size: 15px;
    line-height: 24px;
    text-align: left;
  }
}
