
/* generic Style */
    :root {
      --main-color: #a0b0a5;
      --main-active-color: #304146;
      --main-typo-color: var(--main-active-color);
      --main-disabled-color: #3e52588c;
      --main-default-spacing: 20px;
      --main-p-spacing: 30px;
      --header-default-height: 85px;
  }

  * {
    box-sizing: border-box;
  }

  body, html {
    margin: 0;
    padding: 0;
  }

  header, section, main, footer {
    display: block;
  }

  ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: white;
    color: var(--main-typo-color);
    font-family: 'Lato', arial, sans-serif;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }

  h1 {
    color: var(--main-color);
    font-family: 'Signika', arial, sans-serif;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: var(--main-p-spacing);
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
  }

  main p {
    margin: var(--main-p-spacing) auto;
    max-width: 890px;
  }

  a {
    color: var(--main-active-color);
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  /* Layouting */
  .container {
    background-color: white;
    margin: auto;
    min-width: 100%;
    padding: calc(var(--header-default-height) + 15px) 0 70px 0;
  }

  .content {
    margin: 0 auto;
    max-width: 840px;
    overflow: hidden;
    padding: 0 var(--main-default-spacing);
    width: 100%;
  }

  /* Header */
  .site-header {
    background-color: var(--main-color);
    border-bottom: 3px solid var(--main-active-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .site-header-inner {
    max-width: 1140px;
    margin: 0 auto;
    min-height: var(--header-default-height);
    padding: 16px var(--main-default-spacing);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .site-header-brand {
    display: block;
    flex: 1;
    min-width: 0;
  }

  .site-header-brand svg {
    display: block;
    max-width: 395px;
    width: 100%;
  }

  .site-header-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--main-active-color);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .site-header-toggle-bar {
    width: 22px;
    height: 3px;
    background-color: currentColor;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header.is-open .site-header-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .site-header-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .site-header-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid rgba(48, 65, 70, 0.14);
    padding: 10px var(--main-default-spacing) 14px;
    display: none;
  }

  .site-header.is-open .site-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-navigation-link {
    display: inline-block;
    color: var(--main-active-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 8px 0;
  }

  .site-navigation-link:hover,
  .site-navigation-link:focus-visible,
  .site-navigation-link[aria-current="page"] {
    text-decoration: underline;
  }

  .site-header-toggle:focus-visible,
  .site-navigation-link:focus-visible,
  .site-header-brand:focus-visible {
    outline: 2px solid var(--main-active-color);
    outline-offset: 2px;
  }

  /* Static pages */
  .static-page {
    text-align: left;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 22px;
  }

  .static-page-intro h1 {
    font-size: 34px;
    color: var(--main-active-color);
    margin-bottom: 10px;
    padding-bottom: 14px;
    text-align: left;
  }

  .static-page-intro h1::after {
    left: 0;
    width: 80px;
  }

  .static-page-intro p {
    margin: 0 0 calc(var(--main-p-spacing) * 1.3) 0;
    padding-top: 6px;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.45;
  }

  .static-page-body h2 {
    margin: calc(var(--main-p-spacing) * 1.4) 0 14px;
    color: var(--main-active-color);
    font-size: 24px;
    text-transform: uppercase;
  }

  .static-page-body p {
    text-align: left;
    margin: 0 0 var(--main-p-spacing) 0;
    max-width: none;
  }

  .static-page-body picture,
  .static-page-body img,
  .static-page-body figure {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .static-page-body figure {
    margin: var(--main-p-spacing) 0;
  }

  .static-page-body picture:has(+ picture) {
    margin-bottom: var(--main-default-spacing);
  }

  .static-page-body picture + picture {
    margin-bottom: var(--main-default-spacing);
  }

  .static-page-body picture + picture + picture {
    margin-bottom: var(--main-p-spacing);
  }

  @media screen and (min-width: 521px) {
    .static-page-body picture:has(+ picture),
    .static-page-body picture + picture,
    .static-page-body picture + picture + picture {
      float: left;
      width: calc(33.333% - calc(var(--main-default-spacing) * 2 / 3));
      margin-right: var(--main-default-spacing);
      margin-top: 0;
      margin-left: 0;
    }

    .static-page-body picture + picture + picture {
      margin-right: 0;
    }
  }

  #serre-helio {
    scroll-margin-top: calc(var(--header-default-height) + 24px);
  }

  /* Content */
  .cover-image {
    display: block;
    margin: 30px auto ;
    width: 100%;
    max-width: 420px;
  }

  .top-separator {
    display: inline-block;
    font-weight: bold;
    padding-top: var(--main-default-spacing);
    position: relative;
  }

  .top-separator:after {
    background-color: var(--main-color);
    top: 0;
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 40px);
    position: absolute;
    width: 80px;
  }

  .content h1::after {
    background-color: var(--main-color);
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 75px);
    position: absolute;
    width: 150px;
  }

  .content li {
    padding-bottom: calc(var(--main-p-spacing) / 2);
    position: relative;
    margin-bottom: calc(var(--main-p-spacing) / 2);
  }

  .content li::after {
    background-color: var(--main-active-color);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: calc(50% - 10px);
    position: absolute;
    width: var(--main-default-spacing);
  }

  .content li:last-child::after {
    display: none;
  }

  .column img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: var(--main-default-spacing);
  }

  .graphic-separator {
    border-bottom: 2px solid var(--main-color);
    margin-top: 10px;
  }

  #nos-prestations {
    padding: unset;
  }

  #nos-prestations .gallery {
    margin-top: 60px;
  }

  .content-wrapper {
    padding-bottom: 70px;
  }

  .introduction-prestations-wrapper,
  .serre-dome-wrapper {
    background-color: #fafafa;
  }

  .introduction-prestations-wrapper {
    padding-top: calc(var(--header-default-height) + 15px);
  }

  .prebuild-products-wrapper,
  .serre-dome-wrapper {
    padding-top: 50px;
  }

  /* Products Gallery */
  .prebuild-products {
    margin-bottom: 30px;
  }

  .prebuild-products,
  .prebuild-products .row + .row,
  .prebuild-products .column + .column {
    margin-top: 60px;
  }

  .product p {
    margin-bottom: 0;
  }

  .product .top-separator {
    margin-bottom: 30px;
  }

  /* Contact part */
  .contact-container {
    background-color: var(--main-color);
    color: var(--main-typo-color);
    padding: 30px 0;
  }

  .contact-container h1 {
    color: var(--main-typo-color);
    font-family: 'Lato', arial, sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }

  .contact-container p {
    margin: 20px auto;
  }

  .contact-container a {
    color: #fff;
    text-decoration: none;
  }

  .contact-container a:hover {
    text-decoration: underline;
  }

  .socials-links li {
    display: inline-block;
    line-height: 0;
    margin: 0;
    padding: 0;
  }

  .socials-links li + li {
    margin-left: var(--main-default-spacing);
  }

  .socials-links li:after {
    display: none;
  }

  .socials-links a {
    display: inline-block;
  }

  .socials-links svg {
    width: 40px;
  }

  /* Us part */
  #qui-sommes-nous {
    background-color: #fff;
  }

  .row.our-team-gallery {
    margin: 60px auto calc(var(--main-default-spacing) * 2);
  }

  .training-gallery .row a,
  .partners-gallery .row a {
    display: inline-block;
  }

  .training-gallery .row p {
    max-width: 300px;
    margin-top: 0;
  }

  /* Prestations part */
  #nos-partenaires {
    padding-top: 0;
    padding-bottom: 100px;
  }

  .partners-gallery img {
    margin-bottom: 0;
  }

  .partners-gallery a {
    margin-bottom: var(--main-default-spacing);
  }

  /* Footer */
  footer {
    color: #fff;
    background-color: var(--main-color);
    font-size: 14px;
    padding: 30px 0;
    text-align: initial;
  }

  footer a {
    color: var(--main-typo-color);
  }

  footer address {
    font-style: normal;
    margin-bottom: 30px;
  }

  footer .socials-links {
    text-align: center;
    margin-bottom: 30px;
  }

  .copyleft {
    display: inline-block;
    transform: rotate(180deg);
  }

  .baseline {
    font-size: 12px;
  }

  /* Realisation Layout */
  .realisation-header {
    --realisation-accent: var(--main-color);
    margin-top: calc(var(--main-p-spacing) * 1.6);
    margin-bottom: calc(var(--main-p-spacing) * 0.9);
    text-align: left;
    padding: 4px 0 2px 16px;
    border-left: 4px solid var(--realisation-accent);
  }

  .realisation-header--conception {
    --realisation-accent: #7db8b0;
  }

  .realisation-header--installation {
    --realisation-accent: #e0b068;
  }

  .realisation-header--transmission {
    --realisation-accent: #b7c77f;
  }

  .realisation-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
  }

  .realisation-heading-copy {
    flex: 1;
    min-width: 0;
  }

  .realisation-heading-visual {
    position: relative;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    margin-top: 2px;
    background-color: var(--realisation-accent);
    color: #fff;
    font-family: 'Signika', arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    letter-spacing: 0.01em;
    overflow: hidden;
  }

  .realisation-heading-visual::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 2px solid #fff;
    pointer-events: none;
  }

  .realisation-header h1 {
    margin-bottom: 14px;
    text-align: left;
    color: var(--main-active-color);
    padding: 0;
  }

  .realisation-header h1::after {
    display: none;
  }

  .realisation-location {
    font-size: 16px;
    color: var(--main-color);
    margin: 0;
  }

  .realisation-tags {
    font-size: 14px;
    color: var(--realisation-accent);
    margin: 0 0 16px 0;
    text-transform: capitalize;
  }

  .realisation-main-image {
    display: block;
    margin: var(--main-p-spacing) auto;
    width: calc(100% + calc(var(--main-default-spacing) * 2));
    margin-left: calc(var(--main-default-spacing) * -1);
    margin-right: calc(var(--main-default-spacing) * -1);
  }

  .realisation-main-image img,
  .realisation-main-image figure {
    display: block;
    width: 100%;
    height: auto;
  }

  .realisation-body {
    margin: var(--main-p-spacing) 0;
    display: flow-root;
    text-align: left
  }

  .realisation-body p {
    margin: 0 auto var(--main-p-spacing);
    float: left;
    max-width: 100%;
  }

  .realisation-body img,
  .realisation-body figure,
  .realisation-body picture {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .realisation-body figure {
    margin: var(--main-p-spacing) 0;
  }

  .realisation-body picture {
    display: block;
    width: 100%;
    height: auto;
    margin: var(--main-p-spacing) 0;
  }

  /* Mobile: images stack vertically with spacing */
  .realisation-body picture:has(+ picture) {
    margin-bottom: var(--main-default-spacing);
  }

  .realisation-body picture + picture {
    margin-bottom: var(--main-default-spacing);
  }

  .realisation-body picture + picture + picture {
    margin-bottom: var(--main-p-spacing);
  }

  /* Hide empty p tags before and after image groups */
  .realisation-body p:has(+ picture:has(+ picture)) {
    display: none;
  }

  .realisation-body p:empty {
    display: none;
  }

  /* Mobile: reset 3-column layout to stacked */
  .realisation-body picture + picture,
  .realisation-body picture + picture + picture {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--main-p-spacing);
  }

  .realisation-body figcaption {
    font-size: 14px;
    color: var(--main-disabled-color);
    margin-top: 10px;
  }

  .realisation-testimonial {
    background-color: #fafafa;
    padding: var(--main-p-spacing);
    margin: calc(var(--main-p-spacing) * 2) 0;
    width: 100%;
  }

  .realisation-testimonial--with-cta {
    margin-top: var(--main-p-spacing);
  }

  .realisation-testimonial--no-cta {
    margin-top: var(--main-p-spacing);
  }

  .testimonial-content {
    margin: 0 auto;
    max-width: 840px;
    display: flex;
    flex-direction: column;
    gap: var(--main-default-spacing);
    align-items: center;
  }

  .testimonial-avatar {
    flex-shrink: 0;
    order: -1;
  }

  .testimonial-avatar img,
  .testimonial-avatar figure {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  .testimonial-avatar figcaption {
    display: none;
  }

  .testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--main-typo-color);
    margin: 0 0 var(--main-default-spacing) 0;
    line-height: 1.6;
    flex: 1;
    width: 100%;
    text-align:left;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }

  .testimonial-info {
    margin: 0;
    text-align: left;
  }

  .testimonial-name {
    margin: 0;
    font-weight: bold;
    color: var(--main-active-color);
    font-size: 16px;
  }

  .testimonial-role {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: var(--main-disabled-color);
  }

  .realisation-cta {
    text-align: center;
    margin: calc(var(--main-p-spacing) * 2) 0 var(--main-p-spacing);
  }

  .cta-button {
    display: inline-block;
    background-color: white;
    color: var(--main-active-color);
    padding: 15px 40px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .cta-button:hover {
    background-color: var(--main-color);
    color: var(--main-typo-color);
    text-decoration: none;
  }

  /* Two-line button text helpers */
  .cta-button .btn-top {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1;
  }

  .cta-button .btn-bottom {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--main-active-color);
    line-height: 1.1;
  }

  /* Footer buttons for realisation template (mobile-first: stacked) */
  .realisation-footer-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--main-default-spacing);
    align-items: stretch;
    width: 100%;
    margin: calc(var(--main-p-spacing) / 2) 0 0 0;
  }

  /* Smaller CTA variant used in footer */
  .cta-button.cta-small {
    padding: 10px 22px;
    border-width: 2px;
    font-size: 14px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  /* Make sure two-line buttons align nicely on small variant */
  .cta-button.cta-small .btn-top {
    font-size: 11px;
  }

  .cta-button.cta-small .btn-bottom {
    font-size: 13px;
  }

  /* Responsive mq :::::: mobile first */
  @media screen and (min-width: 521px) {
    /* generic Style */

    .site-header-inner {
      padding-top: 18px;
      padding-bottom: 18px;
    }

    .realisation-heading-visual {
      flex-basis: 84px;
      width: 84px;
      height: 84px;
      font-size: 32px;
    }

    .realisation-main-image {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    /* Testimonial layout on tablet+ */
    .testimonial-content {
      flex-direction: row;
      align-items: flex-start;
      gap: var(--main-default-spacing);
    }

    .testimonial-avatar {
      order: 0;
    }

    /* 3-column image grid on tablet+ */
    .realisation-body picture:has(+ picture),
    .realisation-body picture + picture,
    .realisation-body picture + picture + picture {
      float: left;
      width: calc(33.333% - calc(var(--main-default-spacing) * 2 / 3));
      margin-right: var(--main-default-spacing);
      margin-top: 0;
      margin-bottom: 0;
      margin-left: 0;
    }

    /* Remove right margin from last image in group */
    .realisation-body picture + picture + picture {
      margin-right: 0;
    }

    /* Gallery Skin on tablet and more */
    .row {
      display: flex;
      flex-wrap: wrap;
      max-width: 1020px;
      margin: 0 auto;
    }

    .column {
      flex: 1;
      padding: 0 calc(var(--main-default-spacing) / 2);
    }

    .schematic-explanations {
      flex-direction: row-reverse;
    }

    .schematic-text-container {
      padding-top: calc(var(--main-default-spacing) * 2);
    }

    .row .column > p {
      margin-top: 0;
    }

    .prebuild-products {
      max-width: 1020px;
      margin-left: auto;
      margin-right: auto;
    }

    .prebuild-products .row:last-child {
      max-width: 680px;
    }

    .prebuild-products .column + .column {
      margin-top: 0;
    }

    .product p {
      max-width: 300px;
    }

    /* Footer buttons: row on tablet+ */
    .realisation-footer-buttons {
      flex-direction: row;
      justify-content: stretch;
      align-items: stretch;
    }

    /* Increase spacing and align vertical center on tablet */
    .realisation-footer-buttons .cta-button {
      display: inline-flex;
      flex: 1 1 0;
      min-width: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 12px 28px;
    }
  }

  /* Responsive mq :::::: desktop part */
  @media screen and (min-width: 921px) {
    /* avoid lines to be too wide to be readable */
    .content {
        max-width: 1140px;
    }

    .site-header-toggle {
      display: none;
    }

    .site-navigation {
      position: static;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-end;
      gap: 22px;
      padding: 0;
      border: 0;
      background: transparent;
      flex: 0 0 auto;
    }

    .site-navigation-link {
      padding: 0;
      font-size: 13px;
    }

    .realisation-heading-visual {
      flex-basis: 92px;
      width: 92px;
      height: 92px;
      font-size: 34px;
    }

    footer .socials-links {
      text-align: initial;
      margin-bottom: 0px;
    }

    footer .wrapper {
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between;
    }
  }
  /* Realisations Gallery Page */
  .realisations-page {
    text-align: left;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 22px;
  }

  .realisations-intro h1 {
    font-size: 34px;
    color: var(--main-active-color);
    margin-bottom: 10px;
    padding-bottom: 14px;
    text-align: left;
  }

  .realisations-intro h1::after {
    left: 0;
    width: 80px;
  }

  .realisations-intro p {
    margin: 0 0 calc(var(--main-p-spacing) * 1.3) 0;
    padding-top: 6px;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.45;
  }

  .realisations-filters {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
  }

  .realisations-filters-label {
    font-size: 14px;
    margin-bottom: 0;
  }

  .realisations-filters-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .realisations-filter-btn {
    border: 0;
    background-color: #d5d7d2;
    color: #fff;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
  }

  .realisations-filter-btn[data-filter="tout"] {
    background-color: var(--main-active-color);
  }

  .realisations-filter-btn[data-filter="conception"] {
    background-color: #7db8b0;
  }

  .realisations-filter-btn[data-filter="installation"] {
    background-color: #e0b068;
  }

  .realisations-filter-btn[data-filter="transmission"] {
    background-color: #b7c77f;
  }

  .realisations-filter-btn.is-active {
    filter: saturate(1.1) contrast(1.1);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  }

  .realisations-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .realisations-column {
    min-width: 0;
  }

  .realisations-column.is-hidden {
    display: none;
  }

  .column-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .realisation-card {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    line-height: 0;
  }

  .realisation-card::before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .realisation-card-image {
    position: absolute;
    inset: 0;
  }

  .realisation-card-image picture,
  .realisation-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .realisation-card-image img {
    object-fit: cover;
    object-position: center;
  }

  .realisation-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 84, 78, 0.86);
    border-top: 2px solid #fff;
    color: #fff;
    text-align: center;
    padding: 8px 8px 6px;
    line-height: 1.2;
    min-height: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .realisation-card-title {
    margin: 0;
    font-size: 19px;
    line-height: 1;
    font-family: 'Signika', arial, sans-serif;
    text-transform: uppercase;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 38px;
  }

  .realisation-card-location {
    margin: 2px 0 5px;
    font-size: 11px;
    color: #f2f2f2;
    text-transform: uppercase;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    min-height: 12px;
  }

  .realisation-card-type {
    display: inline-block;
    margin: auto 0 0;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fff;
    color: var(--main-active-color);
    line-height: 1.1;
  }

  .realisations-column[data-type="conception"] .realisation-card-overlay {
    background: rgba(0, 111, 103, 0.86);
  }

  .realisations-column[data-type="installation"] .realisation-card-overlay {
    background: rgba(123, 78, 24, 0.86);
  }

  .realisations-column[data-type="transmission"] .realisation-card-overlay {
    background: rgba(78, 97, 29, 0.86);
  }

  .realisations-column[data-type="conception"] .realisation-card-type {
    color: #006f67;
  }

  .realisations-column[data-type="installation"] .realisation-card-type {
    color: #7b4e18;
  }

  .realisations-column[data-type="transmission"] .realisation-card-type {
    color: #4e611d;
  }

  @media screen and (min-width: 521px) {
    .realisations-gallery {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .column-items {
      gap: 10px;
    }
  }

  @media screen and (min-width: 921px) {
     .realisations-page {
        max-width: 1140px;
    }
    .realisations-gallery {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .realisations-gallery[data-current-filter="tout"] .realisations-column {
      display: block;
    }

    .realisations-gallery[data-current-filter]:not([data-current-filter="tout"]) .realisations-column:not(.is-hidden) {
      grid-column: 1 / -1;
    }

    .realisations-gallery[data-current-filter]:not([data-current-filter="tout"]) .realisations-column:not(.is-hidden) .column-items {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
  }