/* ============================================================
   TAB LIEUX  (mobile-first)
============================================================ */
.lieux-section {
  background-color: #efece9;
  padding: 60px 0;
}

.lieux-map {
  width: 100%;
  height: 305px;
  overflow: hidden;
  margin-bottom: 40px;
}
.lieux-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lieux-blocs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lieu-bloc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.lieu-bloc__image {
  width: 100%;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.lieu-bloc__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lieu-bloc__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.btn--sage {
  background-color: #9f9a7c;
  border-color: #9f9a7c;
  color: #ffffff;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  border-radius: 30.076px;
  border: 1px solid #9f9a7c;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: max-content;
}
.btn--sage:hover { opacity: 0.85; }

.link-voir-plus {
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #9f9a7c;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* ============================================================
   TAB LIEUX  – Desktop
============================================================ */
@media (min-width: 769px) {
  .lieux-map {
    margin-bottom: 60px;
    aspect-ratio: 2018 / 692;
  }

  .lieu-bloc {
    flex-direction: row;
    gap: 40px;
  }

  .lieu-bloc__image {
    width: 463px;
    height: 238px;
  }
}
