.realisations-hero {
  background-color: #253c4b;
  padding: 160px 9% 85px;
  text-align: center;
  color: #fff;
}

.realisations-hero__content h1 {
  font-family: "RB Rational Neue Narrow", "RB Rational Medium", Arial, Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
  margin: 0 0 24px 0;
}

.realisations-hero__content p {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: calc(16px + 0.3vw);
  max-width: 700px;
  margin: 0 auto;
}

.realisations-filters {
  padding: 32px 9%;
  background-color: #FFF7E9;
}

.realisations-filters__container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.realisations-filters__dropdown {
  flex: 1 1 180px;
  max-width: 220px;
}

.realisations-filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #FFF7E9;
  border-radius: 0;
  background-color: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #302C29;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23302C29' stroke-width='1.5' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.realisations-filter-select:focus {
  outline: none;
  border-color: #253c4b;
}

.realisations-grid-section {
  padding: 64px 9%;
}

.realisations-grid-section__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
}

.realisations-grid-section__header h2 {
  font-family: "RB Rational Medium", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: calc(20px + 1.5vw);
  line-height: 100%;
  margin: 0;
}

.realisations-grid-section__header p {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #302C29;
  margin: 0;
}

.realisations-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.realisations-grid.realisations-loading {
  position: relative;
  opacity: 0.5;
  pointer-events: none;
}

.realisation-card {
  flex: 1 1 calc(33.333% - 27px);
  max-width: calc(33.333% - 27px);
  box-sizing: border-box;
}

.realisation-card a {
  text-decoration: none;
  color: #302C29;
  display: block;
}

.realisation-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.realisation-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.realisation-card a:hover .realisation-card__image img {
  transform: scale(1.1);
}

.realisation-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.realisation-card a:hover .realisation-card__image::before {
  opacity: 1;
}

.realisation-card__hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.realisation-card a:hover .realisation-card__hover {
  opacity: 1;
}

.realisation-card__caption {
  background-color: #FFF7E9;
  height: 96px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.realisation-card__caption h3 {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #302C29;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.realisation-card a:hover .realisation-card__caption h3 {
  text-decoration: underline;
}

.realisations-load-more {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.realisations-load-more button {
  background-color: #fff;
  border: 2px solid #302C29;
  color: #302C29;
  font-family: "Work Sans", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 24px;
  padding: 16px 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.realisations-load-more button:hover {
  background-color: #302C29;
  color: #fff;
}

.realisations-cta {
  margin: 96px 0;
  text-align: center;
}

.realisations-cta__content p {
  font-family: "RB Rational Medium", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 100%;
  max-width: 900px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.realisations-cta__content > a {
  background-color: #171412;
  color: #fff !important;
  padding: 14px 28px;
  text-decoration: none;
  display: inline-block;
  font-family: "RB Rational Medium", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.realisations-cta__content > a:hover {
  text-decoration: underline;
}

.single-realisation.single-article {
  padding-top: 0;
}

.realisation-header-bar {
  background-color: #253c4b;
  padding: 56px 9%;
  padding-top: calc(80px + 56px);
}

.realisation-breadcrumb {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 0 0 6px 0;
}

.realisation-breadcrumb a.no-style {
  font-weight: 500;
  color: #fff !important;
  text-decoration: none;
}

.realisation-breadcrumb a.no-style:hover {
  text-decoration: underline;
}

.realisation-tags {
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.realisation-hero-section {
  padding-top: 48px;
}

.realisation-hero-section h1 {
  margin-bottom: 32px;
}

.realisation-projet {
  display: flex;
  gap: 24px;
  max-width: 905px;
  margin: 0 0 48px 12%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  line-height: 160%;
  color: #302C29;
}

.realisation-projet__bar {
  flex: 0 0 9px;
  background-color: #253c4b;
  align-self: stretch;
}

.realisation-projet__text p {
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
}

.realisation-projet__text li {
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 186%;
}

.realisation-projet__text ul {
  padding-left: 30px;
  margin: 8px 0;
}

.realisation-projet__text strong {
  font-weight: 600;
}

.realisation-faq {
  background-color: #253c4b;
  padding: 80px 9%;
}

.realisation-faq .category-faq {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.realisation-faq .category-faq h2 {
  color: #fff;
  margin-bottom: 48px;
}

.realisation-faq .category-faq .accordeon .item {
  color: #fff;
}

.realisation-faq .category-faq .accordeon .item::after {
  background-color: rgba(255,255,255,0.3);
}

.realisation-faq .category-faq .accordeon .item p.question {
  color: #fff;
}

.realisation-faq .category-faq .accordeon .item p.answer {
  display: none;
  color: rgba(255,255,255,0.85);
  text-align: left;
}

.single-realisation .project-interior .button-container a:first-child {
  background-color: #253c4b !important;
  border-color: #253c4b !important;
  color: #fff !important;
}

.single-realisation .project-interior .button-container a:first-child:hover {
  background-color: #1a2d3a !important;
}

.single-realisation .project-interior .button-container a:last-child {
  border-color: #253c4b !important;
  color: #253c4b !important;
}

.single-realisation .project-interior .button-container a:last-child:hover {
  background-color: #253c4b !important;
  color: #fff !important;
}

.single-realisation .related-articles,
.single-realisation .featured-articles {
  background-color: #fff;
}

.single-realisation .related-articles .article-item .article-content,
.single-realisation .featured-articles .article-item .article-content {
  background-color: #FFF7E9;
  padding: 16px 24px;
}

.category.single-realisation .module-section .element-3-images .image-container {
  height: auto;
  max-height: none;
  overflow: visible;
}

.category.single-realisation .module-section .element-3-images .image-container img {
  height: auto;
}

.category.single-realisation .module-section .element-2-images .image-container {
  height: auto;
  max-height: none;
  overflow: visible;
}

.category.single-realisation .module-section .element-2-images .image-container img {
  height: auto;
}

.category.single-realisation .module-section .element-3-images + .element-paragraphe,
.category.single-realisation .module-section .element-2-images + .element-paragraphe,
.category.single-realisation .module-section .element-1-image + .element-paragraphe,
.category.single-realisation .module-section .element-slider + .element-paragraphe {
  margin-top: 16px;
}

.category.single-realisation .module-section .element-2-images,
.category.single-realisation .module-section .element-3-images {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.category.single-realisation .module-section .element-slider .slider-container .slide img {
  max-width: 655px;
  margin: 0 auto;
}

.category.single-realisation .module-section .element-slider .slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.single-realisation figcaption {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: #302C29;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .realisations-hero__content h1 {
    font-size: 42px;
  }

  .realisations-cta__content p {
    font-size: calc(20px + 1.5vw);
  }

  .realisation-card__caption {
    height: auto;
    min-height: 80px;
    padding: 12px 16px;
  }

  .realisation-card__caption h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .realisations-hero {
    padding: 120px 4% 48px;
  }

  .realisations-hero__content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .realisations-filters {
    padding: 24px 4%;
  }

  .realisations-filters__container {
    flex-direction: column;
  }

  .realisations-filters__dropdown {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .realisations-grid-section {
    padding: 48px 4%;
  }

  .realisations-grid {
    gap: 24px;
  }

  .realisation-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .realisations-load-more button {
    font-size: 18px;
    padding: 12px 32px;
  }

  .realisations-cta {
    margin: 64px 0;
    padding: 0 4%;
  }

  .realisations-cta__content p {
    font-size: calc(16px + 1.5vw);
  }

  .realisation-header-bar {
    padding: 100px 4% 24px;
  }

  .realisation-projet {
    margin-left: 0;
    font-size: 16px;
  }

  .realisation-faq {
    padding: 48px 4%;
  }
}

@media (max-width: 480px) {
  .realisation-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .realisations-hero__content p {
    font-size: calc(12px + 1vw);
  }

  .realisations-load-more button {
    font-size: 16px;
    padding: 10px 24px;
  }

  .realisation-card__caption h3 {
    font-size: 14px;
  }

  .realisations-grid-section__header {
    flex-direction: column;
    gap: 8px;
  }
}
