@charset "UTF-8";
/*
 * Marques — hub /marques/ et fiches marques.
 *
 * Feuille autonome, volontairement séparée de style.css : l'ancien style reste
 * intact et cette feuille n'est chargée que sur les pages concernées
 * (cf. App\Controller\BrandController::enqueue_styles).
 *
 * Ne pas éditer static/css/brands.css à la main : éditer pages/brands.scss
 * puis, depuis public/app/themes/lumber/ :
 *
 *   npx sass --no-source-map --style=expanded \
 *     app/web/src/styles/brands.entry.scss static/css/brands.css
 *
 * (dart-sass via npx : aucune dépendance à node-sass ni au build webpack, qui
 *  ne passe plus sur les versions récentes de Node.)
 */
.brands-hub {
  padding-bottom: 100px;
}
.brands-hub > header {
  padding: 60px 0 30px;
  text-align: center;
}
.brands-hub > header .brands-intro {
  max-width: 780px;
  margin: 25px auto 0;
  color: #3E3E3E;
}
.brands-hub .brands-index {
  margin-bottom: 50px;
}
.brands-hub .brands-index ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #E8E6DF;
  border-bottom: 1px solid #E8E6DF;
  padding: 12px 0;
}
.brands-hub .brands-index li {
  margin: 2px 0;
}
.brands-hub .brands-index a {
  display: block;
  padding: 4px 10px;
  font-family: "Abhaya Libre", serif;
  font-size: 1.05em;
  line-height: 1em;
  transition: 0.25s all ease-in-out;
}
.brands-hub .brands-index a:hover {
  color: #006BAD;
}
.brands-hub .brands-group {
  margin-bottom: 60px;
  scroll-margin-top: 160px;
}
.brands-hub .brands-group .brands-letter {
  font-family: "Abhaya Libre", serif;
  font-size: 1.6em;
  line-height: 1em;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E8E6DF;
}
.brands-hub .brands-group > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}
@media screen and (max-width: 64em) {
  .brands-hub .brands-group > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 780px) {
  .brands-hub .brands-group > ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
.brands-hub .brands-group a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: 0.25s all ease-in-out;
}
.brands-hub .brands-group a:hover .logo img {
  opacity: 1;
}
.brands-hub .brands-group a:hover .name {
  color: #006BAD;
}
.brands-hub .brands-group .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 110px;
  margin-bottom: 15px;
  background: rgba(232, 230, 223, 0.35);
}
.brands-hub .brands-group .logo img {
  max-width: 70%;
  max-height: 70px;
  width: auto;
  height: auto;
  opacity: 0.85;
  transition: 0.25s all ease-in-out;
}
.brands-hub .brands-group .logo .logo-fallback {
  font-family: "Abhaya Libre", serif;
  font-size: 1.3em;
  padding: 0 15px;
}
.brands-hub .brands-group .name {
  font-weight: 600;
  transition: 0.25s all ease-in-out;
}
.brands-hub .brands-group .baseline {
  margin-top: 6px;
  font-size: 0.85em;
  line-height: 1.4em;
  color: #676662;
}
.brands-hub .brands-bottom {
  max-width: 820px;
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid #E8E6DF;
  color: #3E3E3E;
}
.brands-hub .brands-shop-link {
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
}

.brand-page {
  padding-bottom: 100px;
}
.brand-page .brand-breadcrumb {
  padding: 30px 0 0;
  font-size: 0.85em;
  color: #676662;
}
.brand-page .brand-breadcrumb a {
  transition: 0.25s all ease-in-out;
}
.brand-page .brand-breadcrumb a:hover {
  color: #000000;
}
.brand-page .brand-breadcrumb span {
  margin: 0 6px;
}
.brand-page .brand-breadcrumb span[aria-current] {
  margin: 0;
}
.brand-page .brand-header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 50px 0 70px;
}
@media screen and (max-width: 780px) {
  .brand-page .brand-header {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0 50px;
  }
}
.brand-page .brand-header .brand-logo {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(232, 230, 223, 0.35);
}
@media screen and (max-width: 780px) {
  .brand-page .brand-header .brand-logo {
    flex: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    padding: 20px;
  }
}
.brand-page .brand-header .brand-logo img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
}
.brand-page .brand-header .brand-intro {
  flex: 1 1 auto;
}
.brand-page .brand-header .brand-intro h1 {
  margin-bottom: 10px;
}
.brand-page .brand-header .brand-intro p {
  color: #3E3E3E;
  margin-bottom: 15px;
}
.brand-page .brand-header .brand-intro p:last-child {
  margin-bottom: 0;
}
.brand-page .brand-header .brand-intro .brand-baseline {
  font-family: "Abhaya Libre", serif;
  font-size: 1.35em;
  line-height: 1.35em;
  color: #000000;
  margin-bottom: 25px;
}
.brand-page .brand-header .brand-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 50px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #E8E6DF;
  border-bottom: 1px solid #E8E6DF;
}
.brand-page .brand-header .brand-facts dt {
  font-size: 0.8em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #676662;
  margin-bottom: 4px;
}
.brand-page .brand-header .brand-facts dd {
  font-weight: 600;
}
.brand-page .brand-header .brand-facts dd a {
  text-decoration: underline;
}
.brand-page .brand-categories {
  margin-bottom: 80px;
}
.brand-page .brand-categories h2 {
  margin-bottom: 25px;
}
.brand-page .brand-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-page .brand-categories a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #E8E6DF;
  transition: 0.25s all ease-in-out;
}
.brand-page .brand-categories a:hover {
  background: #E8E6DF;
}
.brand-page .brand-categories a .count {
  font-size: 0.8em;
  color: #676662;
}
.brand-page .brand-selection {
  margin-bottom: 90px;
}
.brand-page .brand-selection h2 {
  margin-bottom: 30px;
}
.brand-page .brand-selection .link-action {
  margin-top: 40px;
  font-weight: bold;
}
.brand-page .brand-gallery {
  margin-bottom: 90px;
}
.brand-page .brand-story {
  max-width: 820px;
  margin-bottom: 80px;
  color: #3E3E3E;
}
.brand-page .brand-story h2 {
  margin-bottom: 25px;
}
.brand-page .brand-story p {
  margin-bottom: 18px;
}
.brand-page .brand-story h3 {
  margin: 35px 0 12px;
  font-family: "Abhaya Libre", serif;
  font-size: 1.25em;
}
.brand-page .brand-faq {
  max-width: 820px;
  margin-bottom: 80px;
}
.brand-page .brand-faq h2 {
  margin-bottom: 25px;
}
.brand-page .brand-faq .faq-item {
  padding: 22px 0;
  border-bottom: 1px solid #E8E6DF;
}
.brand-page .brand-faq .faq-item:first-child {
  border-top: 1px solid #E8E6DF;
}
.brand-page .brand-faq .faq-item dt h3 {
  font-family: "Epilogue", sans-serif;
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 8px;
}
.brand-page .brand-faq .faq-item dd {
  color: #3E3E3E;
}
.brand-page .brand-faq .faq-item dd p {
  margin-bottom: 10px;
}
.brand-page .brand-faq .faq-item dd p:last-child {
  margin-bottom: 0;
}
.brand-page .brand-related {
  margin-bottom: 60px;
}
.brand-page .brand-related h2 {
  margin-bottom: 25px;
}
.brand-page .brand-related ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.brand-page .brand-related li {
  width: 160px;
}
.brand-page .brand-related a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: 0.25s all ease-in-out;
}
.brand-page .brand-related a:hover {
  color: #006BAD;
}
.brand-page .brand-related a img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
}
.brand-page .brand-back {
  font-weight: bold;
}

.category-brand-link {
  margin: 0 auto 35px;
  text-align: center;
}
.category-brand-link .baseline {
  font-family: "Abhaya Libre", serif;
  font-size: 1.2em;
  line-height: 1.4em;
  color: #3E3E3E;
  margin-bottom: 10px;
}
.category-brand-link .link-action {
  font-weight: bold;
}

.brand-page .brand-faq .faq-more {
  margin-top: 22px;
  font-size: 0.92em;
  color: #676662;
}
.brand-page .brand-faq .faq-more a {
  color: #000000;
  text-decoration: underline;
  transition: 0.25s all ease-in-out;
}
.brand-page .brand-faq .faq-more a:hover {
  color: #006BAD;
}

.brands-editorial {
  padding-bottom: 110px;
}
.brands-editorial .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.brands-editorial .be-hero {
  padding: 70px 0 60px;
  text-align: center;
  background: rgba(232, 230, 223, 0.4);
  margin-bottom: 80px;
}
@media screen and (max-width: 780px) {
  .brands-editorial .be-hero {
    padding: 45px 0 40px;
    margin-bottom: 50px;
  }
}
.brands-editorial .be-hero .be-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72em;
  color: #676662;
  margin-bottom: 18px;
}
.brands-editorial .be-hero h1 {
  font-family: "Abhaya Libre", serif;
  font-size: 3.1em;
  line-height: 1.1em;
  margin-bottom: 22px;
}
@media screen and (max-width: 780px) {
  .brands-editorial .be-hero h1 {
    font-size: 2.2em;
  }
}
.brands-editorial .be-hero .be-lead {
  max-width: 700px;
  margin: 0 auto 22px;
  font-family: "Abhaya Libre", serif;
  font-size: 1.4em;
  line-height: 1.45em;
  color: #3E3E3E;
}
@media screen and (max-width: 780px) {
  .brands-editorial .be-hero .be-lead {
    font-size: 1.15em;
  }
}
.brands-editorial .be-hero .be-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #3E3E3E;
}
.brands-editorial .be-hero .be-intro p {
  margin-bottom: 14px;
}
.brands-editorial .be-hero .be-intro p:last-child {
  margin-bottom: 0;
}
.brands-editorial .be-hero .be-count {
  margin-top: 30px;
  font-size: 0.85em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #676662;
}
.brands-editorial .be-hero .be-count strong {
  color: #000000;
}
.brands-editorial h2 {
  font-family: "Abhaya Libre", serif;
  font-size: 1.9em;
  line-height: 1.15em;
  margin-bottom: 32px;
}
@media screen and (max-width: 780px) {
  .brands-editorial h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }
}
.brands-editorial .be-featured {
  margin-bottom: 90px;
}
.brands-editorial .be-featured > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media screen and (max-width: 64em) {
  .brands-editorial .be-featured > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 780px) {
  .brands-editorial .be-featured > ul {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.brands-editorial .be-featured a {
  display: block;
  height: 100%;
}
.brands-editorial .be-featured a:hover .visual img {
  transform: scale(1.05);
}
.brands-editorial .be-featured a:hover .more {
  color: #006BAD;
}
.brands-editorial .be-featured .visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(232, 230, 223, 0.5);
  aspect-ratio: 7/5;
}
.brands-editorial .be-featured .visual img {
  width: auto;
  height: auto;
  max-width: 62%;
  max-height: 46%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.brands-editorial .be-featured .visual .fallback {
  font-family: "Abhaya Libre", serif;
  font-size: 1.6em;
  text-align: center;
  color: #3E3E3E;
}
.brands-editorial .be-featured .body {
  display: block;
  padding: 20px 2px 0;
}
.brands-editorial .be-featured .name {
  display: block;
  font-family: "Abhaya Libre", serif;
  font-size: 1.35em;
  line-height: 1.2em;
  margin-bottom: 6px;
}
.brands-editorial .be-featured .baseline {
  display: block;
  color: #676662;
  font-size: 0.92em;
  line-height: 1.45em;
  margin-bottom: 12px;
}
.brands-editorial .be-featured .more {
  display: block;
  font-size: 0.82em;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.25s all ease-in-out;
}
.brands-editorial .be-directory {
  margin-bottom: 90px;
}
.brands-editorial .be-directory .be-toolbar {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E6DF;
}
.brands-editorial .be-directory .be-toolbar h2 {
  margin-bottom: 22px;
}
.brands-editorial .be-directory .be-search {
  display: block;
  margin-bottom: 18px;
}
.brands-editorial .be-directory .be-search input {
  width: 100%;
  max-width: 380px;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid #E8E6DF;
  background: #fff;
  font-family: "Epilogue", sans-serif;
  font-size: 0.95em;
}
.brands-editorial .be-directory .be-search input:focus {
  outline: none;
  border-color: #000000;
}
.brands-editorial .be-directory .be-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brands-editorial .be-directory .be-chips button {
  border: 1px solid #E8E6DF;
  background: #fff;
  cursor: pointer;
  font-family: "Epilogue", sans-serif;
  font-size: 0.85em;
  padding: 7px 13px;
  transition: 0.25s all ease-in-out;
}
.brands-editorial .be-directory .be-chips button em {
  font-style: normal;
  color: #676662;
  margin-left: 4px;
  font-size: 0.9em;
}
.brands-editorial .be-directory .be-chips button:hover {
  border-color: #000000;
}
.brands-editorial .be-directory .be-chips button.is-active {
  background: #000000;
  color: #fff;
  border-color: #000000;
}
.brands-editorial .be-directory .be-chips button.is-active em {
  color: rgba(255, 255, 255, 0.65);
}
.brands-editorial .be-directory .be-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
@media screen and (max-width: 64em) {
  .brands-editorial .be-directory .be-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 780px) {
  .brands-editorial .be-directory .be-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
  }
}
.brands-editorial .be-directory .be-grid .be-card[hidden] {
  display: none;
}
.brands-editorial .be-directory .be-card a {
  display: block;
  height: 100%;
}
.brands-editorial .be-directory .be-card a:hover .visual img {
  opacity: 1;
}
.brands-editorial .be-directory .be-card a:hover .name {
  color: #006BAD;
}
.brands-editorial .be-directory .be-card .visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(232, 230, 223, 0.45);
  aspect-ratio: 4/3;
}
.brands-editorial .be-directory .be-card .visual img {
  width: auto;
  height: auto;
  max-width: 68%;
  max-height: 52%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: 0.25s all ease-in-out;
}
.brands-editorial .be-directory .be-card .visual .fallback {
  font-family: "Abhaya Libre", serif;
  font-size: 1.15em;
  text-align: center;
  line-height: 1.25em;
  color: #3E3E3E;
}
.brands-editorial .be-directory .be-card .body {
  display: block;
  padding: 14px 2px 0;
}
.brands-editorial .be-directory .be-card .name {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  transition: 0.25s all ease-in-out;
}
.brands-editorial .be-directory .be-card .country {
  display: block;
  font-size: 0.76em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #676662;
  margin-bottom: 7px;
}
.brands-editorial .be-directory .be-card .baseline {
  display: block;
  font-size: 0.85em;
  line-height: 1.4em;
  color: #3E3E3E;
}
.brands-editorial .be-directory .be-empty {
  padding: 40px 0;
  text-align: center;
  color: #676662;
}
.brands-editorial .be-countries {
  max-width: 900px;
  margin-bottom: 80px;
}
.brands-editorial .be-countries .be-country {
  padding: 26px 0;
  border-bottom: 1px solid #E8E6DF;
}
.brands-editorial .be-countries .be-country:first-of-type {
  border-top: 1px solid #E8E6DF;
}
.brands-editorial .be-countries .be-country h3 {
  font-family: "Abhaya Libre", serif;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.brands-editorial .be-countries .be-country h3 em {
  font-style: normal;
  font-family: "Epilogue", sans-serif;
  font-size: 0.65em;
  color: #676662;
}
.brands-editorial .be-countries .be-country .intro {
  color: #3E3E3E;
  margin-bottom: 12px;
}
.brands-editorial .be-countries .be-country .brands {
  font-size: 0.95em;
}
.brands-editorial .be-countries .be-country .brands a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.25s all ease-in-out;
}
.brands-editorial .be-countries .be-country .brands a:hover {
  color: #006BAD;
}
.brands-editorial .be-bottom {
  max-width: 820px;
  margin-bottom: 60px;
  color: #3E3E3E;
}
.brands-editorial .be-shop {
  text-align: center;
  font-weight: bold;
}
