/* PoolRooms — Page À propos — version épurée */

.pr-about-page {
  --about-red: #ed1b2f;
  --about-red-dark: #c40f22;
  --about-blue: #0d5bd8;
  --about-navy: #061426;
  --about-navy-soft: #0a203a;
  --about-text: #071426;
  --about-muted: #637083;
  --about-border: #dfe6ef;
  background: #fff;
  color: var(--about-text);
  overflow: hidden;
}

.pr-about-page *,
.pr-about-page *::before,
.pr-about-page *::after {
  box-sizing: border-box;
}

.pr-about-container {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.pr-about-kicker,
.pr-about-section-head > span,
.pr-about-cta__inner > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--about-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pr-about-section-head {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.pr-about-section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.025em;
}

.pr-about-section-head > p {
  max-width: 730px;
  margin: 14px auto 0;
  color: #000;
  line-height: 1.75;
}

/* Hero */
.pr-about-hero {
  min-height: 540px;
  display: flex;
  align-items: center;
  background-color: var(--about-navy);
  background-image: url('/assets/img/home-hero-about.webp');
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background-repeat: no-repeat;
}

/* Bureau : conserve le téléphone au complet sans réduire l'image ni créer de bandes latérales.
   Le ratio 5/2 correspond à l'image ultra-wide générée. */
@media (min-width: 1101px) {
  .pr-about-hero {
    min-height: 0;
    height: clamp(560px, 40vw, 768px);
    background-size: cover;
    background-position: center center;
  }
}

.pr-about-hero__inner {
  padding-block: 64px;
}

.pr-about-hero__copy {
  max-width: 700px;
}

.pr-about-hero .pr-about-kicker {
  color: #fff;
}

.pr-about-hero h1 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .96;
  font-weight: 900;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.pr-about-hero h1 strong {
  color: var(--about-red);
  font-weight: 900;
}

.pr-about-hero__copy > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.76;
}

.pr-about-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pr-about-btn {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.pr-about-btn:hover {
  transform: translateY(-2px);
}

.pr-about-btn--primary {
  background: var(--about-red);
}

.pr-about-btn--primary:hover {
  background: var(--about-red-dark);
  color: #fff;
}

.pr-about-btn--outline {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(4, 17, 34, .5);
}

.pr-about-btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.pr-about-btn--light {
  background: #fff;
  color: var(--about-navy);
}

.pr-about-btn--light:hover {
  background: #eef3f8;
  color: var(--about-red);
}

.pr-about-hero__sports {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.pr-about-hero__sports li {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 17, 34, .58);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.pr-about-hero__sports i {
  color: var(--about-red);
}

/* Introduction */
.pr-about-intro {
  padding: 62px 0 68px;
}

.pr-about-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--about-border);
  border-radius: 18px;
  overflow: hidden;
}

.pr-about-features article {
  min-height: 230px;
  padding: 30px 24px;
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--about-border);
}

.pr-about-features article:last-child {
  border-right: 0;
}

.pr-about-features article > i {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: var(--about-blue);
  font-size: 24px;
}

.pr-about-features h3 {
  margin: 18px 0 0;
  font-size: 17px;
  font-weight: 800;
}

.pr-about-features p {
  margin: 11px 0 0;
  color: #000;
  line-height: 1.7;
}

/* Formats */
.pr-about-formats {
  padding: 60px 0 64px;
  background: linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-soft) 100%);
  border-block: 1px solid rgba(255, 255, 255, .08);
}

.pr-about-section-head--light h2,
.pr-about-section-head--light > p {
  color: #fff;
}

.pr-about-section-head--light > p {
  color: var(--bs-white);
}

.pr-about-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pr-about-formats__grid article {
  min-height: 265px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  padding: 28px;
  background: var(--bs-white);
}

.pr-about-format__icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
     background: rgb(8 28 51);
  color: var(--about-red);
  font-size: 23px;
}

.pr-about-formats__grid article > span {
  margin-top: 22px;
  display: block;
  color: rgb(7 20 38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pr-about-formats__grid h3 {
  margin: 7px 0 0;
  color: #091e37;
  font-weight: 850;
}

.pr-about-formats__grid p {
  margin: 13px 0 0;
 color: var(--bs-black);
  line-height: 1.75;
}

.pr-about-formats__action {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

/* CTA */
.pr-about-cta {
  padding: 0 0 66px;
}

.pr-about-cta__inner {
  min-height: 180px;
  border-radius: 18px;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(120deg, var(--about-red) 0%, var(--about-red-dark) 100%);
}

.pr-about-cta__inner > div > span,
.pr-about-cta__inner h2,
.pr-about-cta__inner p {
  color: #fff;
}

.pr-about-cta__inner h2 {
  margin: 8px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 850;
}

.pr-about-cta__inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .pr-about-hero {
    min-height: 510px;
    background-position: 56% center;
  }

  .pr-about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pr-about-features article:nth-child(2) {
    border-right: 0;
  }

  .pr-about-features article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--about-border);
  }

}

@media (max-width: 820px) {
  .pr-about-container {
    width: min(100% - 28px, 760px);
  }

  .pr-about-hero {
    min-height: 520px;
    background-image:
      linear-gradient(90deg, rgba(3, 13, 27, .98) 0%, rgba(3, 13, 27, .9) 58%, rgba(3, 13, 27, .55) 100%),
      url('/assets/img/home-hero-about.webp');
    background-position: 52% center;
  }

  .pr-about-hero__inner {
    padding-block: 50px;
  }

  .pr-about-hero h1 {
    font-size: clamp(43px, 11vw, 64px);
  }

  .pr-about-hero__copy > p {
    font-size: 15px;
  }

  .pr-about-formats__grid {
    grid-template-columns: 1fr;
  }

  .pr-about-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .pr-about-container {
    width: calc(100% - 20px);
  }

  .pr-about-hero {
    min-height: 560px;
    align-items: flex-end;
    background-position: 57% center;
  }

  .pr-about-hero__inner {
    padding-block: 40px;
  }

  .pr-about-hero h1 {
    font-size: clamp(38px, 12vw, 53px);
  }

  .pr-about-hero__copy > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .pr-about-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pr-about-btn {
    width: 100%;
  }

  .pr-about-hero__sports {
    margin-top: 22px;
    gap: 7px;
  }

  .pr-about-hero__sports li {
    padding: 7px 10px;
    font-size: 11px;
  }

  .pr-about-intro {
    padding: 40px 0 44px;
  }

  .pr-about-formats {
    padding: 42px 0 46px;
  }

  .pr-about-section-head {
    margin-bottom: 23px;
  }

  .pr-about-section-head h2 {
    font-size: 27px;
  }

  .pr-about-section-head > p {
    font-size: 13px;
  }

  .pr-about-features {
    grid-template-columns: 1fr;
  }

  .pr-about-features article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--about-border);
    padding: 24px 20px;
  }

  .pr-about-features article:last-child {
    border-bottom: 0;
  }

  .pr-about-formats__grid article {
    min-height: auto;
    padding: 24px 21px;
  }

  .pr-about-cta {
    padding-bottom: 42px;
  }

  .pr-about-cta__inner {
    min-height: auto;
    padding: 26px 22px;
  }

  .pr-about-cta__inner h2 {
    font-size: 27px;
  }
}
