@charset "UTF-8";
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #f8f8f8;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.bloc {
  width: 100%;
}
.bloc .content {
  padding: 0 40px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.site-header,
.site-footer {
  background: #222;
  color: #fff;
  padding: 15px 0;
}

.site-footer {
  margin-top: 20px;
}

.logo {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/********************* bloc ******************/
.bloc-focus {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  border: 3px #256b4c solid;
}

.bloc-focus-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #256b4c;
  text-align: center;
}

.bloc-focus-texte {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.bloc-grand-titre {
  padding: 60px 0;
  text-align: center;
  color: #111;
  transition: background-color 0.3s;
}

.bloc-grand-titre .container {
  width: min(1000px, 90%);
  margin: 0 auto;
}

.grand-titre-titre {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  color: inherit;
}

.grand-titre-intro {
  font-size: 1.2rem;
  color: inherit;
  line-height: 1.6;
}

.bloc-grand-titre[style*="#256b4c"],
.bloc-grand-titre[style*="#337357"],
.bloc-grand-titre[style*="#000000"] {
  color: #fff;
}

.bloc-paragraphe {
  padding: 60px 0;
  background: #fff;
  color: #333;
}

.bloc-paragraphe .container {
  width: min(800px, 90%);
  margin: 0 auto;
}

.paragraphe-titre {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #256b4c;
  text-align: left;
}

.paragraphe-soustitre {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 25px;
  text-align: left;
}

.paragraphe-texte {
  font-size: 1.05rem;
  line-height: 1.7;
}

.paragraphe-texte p + p {
  margin-top: 1em;
}

/* ==========================================================
   🖼️ Bloc Images – Grille 3 colonnes responsive
   ========================================================== */
.bloc-images {
  padding: 60px 0;
  background: #fafafa;
}

.bloc-images .container {
  /* on élargit légèrement le container pour respirer */
  max-width: 1100px;
  margin: 0 auto;
}

.image-grid {
  display: grid;
  gap: 20px;
  /* ✅ Par défaut : 3 colonnes bien réparties */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

/* 🔹 Tablette : 2 colonnes */
@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* 🔹 Mobile : 1 colonne */
@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   🎨 Style des figures et images
   ========================================================== */
.image-grid figure {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.image-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ Image occupe toute la largeur de la cellule, sans la casser */
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ✅ Légende sous l’image */
.image-grid figcaption {
  text-align: center;
  font-size: 0.95rem;
  padding: 10px 8px;
  color: #555;
  background: #f7f7f7;
  flex-grow: 1;
}

.bloc-articles {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
}
.bloc-articles__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}
.bloc-articles__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bloc-articles__list li + li {
  margin-top: 1rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}
.bloc-articles__link {
  font-weight: 600;
  color: #256b4c;
  text-decoration: none;
}
.bloc-articles__link:hover {
  text-decoration: underline;
}
.bloc-articles__date {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.25rem;
}
.bloc-articles__excerpt {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

/* ===========================================================
   📰 Bloc Derniers articles
   =========================================================== */
.bloc-articles {
  margin: 3rem 0;
  padding: 2.5rem 2rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.bloc-articles:hover {
  background: #f8fcf9;
}

.bloc-articles img {
  width: 100%;
  display: block;
}

/* ----- Titre du bloc ----- */
.bloc-articles__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #256b4c;
  /* ton vert principal */
  text-align: left;
  position: relative;
}

.bloc-articles__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #256b4c;
  margin-top: 0.4rem;
  border-radius: 2px;
}

/* ----- Liste ----- */
.bloc-articles__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ----- Élément ----- */
.bloc-articles__item {
  padding: 1.5rem 0;
  border-top: 1px solid #e6e6e6;
}

.bloc-articles__item:first-child {
  border-top: none;
}

/* ----- Lien ----- */
.bloc-articles__link {
  color: #1f4037;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.bloc-articles__link:hover {
  color: #256b4c;
  text-decoration: underline;
}

/* ----- Nom de l’article ----- */
.bloc-articles__name {
  font-size: 1.1rem;
}

/* ----- Date ----- */
.bloc-articles__date {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

/* ----- Extrait ----- */
.bloc-articles__excerpt {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  max-width: 800px;
}

/* ----- Responsive ----- */
@media (min-width: 768px) {
  .bloc-articles__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .bloc-articles__item {
    border: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 1.2rem 1.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .bloc-articles__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}
/* ===========================================================
   📰 Page Article - Style cohérent avec page.php
   =========================================================== */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.article-illustration {
  margin-bottom: 1.5rem;
  text-align: center;
}

.article-illustration img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  justify-content: flex-start;
}

.article-meta span,
.article-meta time {
  background: #f1f5f3;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.article-body h2,
.article-body h3 {
  color: #256b4c;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body p + p {
  margin-top: 1rem;
}

.article-download {
  text-align: center;
  margin-top: 2rem;
}

.btn-download {
  background: #256b4c;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-download:hover {
  background: #1e4f39;
}

/* Sidebar */
.article-sidebar {
  margin-top: 3rem;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.article-sidebar h3 {
  color: #256b4c;
  margin-bottom: 1rem;
}

.article-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-sidebar li + li {
  margin-top: 0.5rem;
}

.article-sidebar a {
  color: #1f4037;
  text-decoration: none;
}

.article-sidebar a:hover {
  text-decoration: underline;
}

/* Admin edit button */
.article-admin-tools {
  margin-top: 3rem;
  text-align: center;
}

.article-admin-tools .btn-admin {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.article-admin-tools .btn-admin:hover {
  background: #1e40af;
}

.page-header {
  padding: 60px 0 30px;
  text-align: center;
}

.page-header .intro {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 10px auto 0;
}

.page-content {
  padding: 40px 0;
}

.page-image {
  margin-bottom: 30px;
  text-align: center;
}

.page-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.preview-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffeb3b;
  color: #222;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

/* ================================
   🦶 Footer Navigation
   ================================ */
footer .menu {
  text-align: center;
  margin: 2rem 0 1rem;
}

footer .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer .menu li {
  display: inline;
}

footer .menu a {
  color: #777;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

footer .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

footer .menu a:hover {
  color: #fff;
}

footer .menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ================================
   🖼️ HERO SECTION
   ================================ */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  /* hauteur flexible selon la taille d’écran */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  /* couleur de fond de secours */
}

.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: brightness(0.75);
  transition: transform 10s ease, filter 0.5s ease;
}

.hero:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Optionnel : effet de flou doux sur le bord bas */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

/* ================================
   💻 RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
  }
}
.page-cards {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.card-thumb img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==============================
   🌿 Bloc : Navigation page suivante
   ============================== */
.page-nav.buttons {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  margin: 4rem 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
.page-nav.buttons .nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.page-nav.buttons .nav-link img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.page-nav.buttons .nav-link:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
}
.page-nav.buttons .nav-link:hover img {
  transform: scale(1.05);
}
.page-nav.buttons .nav-link.prev {
  justify-content: flex-start;
  text-align: left;
}
.page-nav.buttons .nav-link.prev img {
  order: 0;
}
.page-nav.buttons .nav-link.next {
  justify-content: flex-end;
  text-align: right;
}
.page-nav.buttons .nav-link.next img {
  order: 1;
}
.page-nav.buttons:only-child, .page-nav.buttons > .nav-link:only-child {
  justify-content: center;
}
.page-nav.buttons:only-child .nav-link, .page-nav.buttons > .nav-link:only-child .nav-link {
  max-width: 320px;
}
@media (max-width: 768px) {
  .page-nav.buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .page-nav.buttons .nav-link {
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
  }
  .page-nav.buttons .nav-link img {
    width: 60px;
    height: 60px;
  }
}

.article-list {
  padding: 3rem 0;
}
.article-list .article-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.article-list .article-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-list .article-card .article-thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-list .article-card .article-body {
  padding: 1.5rem;
}
.article-list .article-card .article-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.article-list .article-card .article-title a {
  text-decoration: none;
  color: #111;
}
.article-list .article-card .article-title a:hover {
  color: #2563eb;
}
.article-list .article-card .article-date {
  color: #888;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.75rem;
}
.article-list .article-card .article-excerpt {
  color: #444;
  margin-bottom: 1rem;
}
.article-list .article-card .btn-readmore {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}
.site-header .container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: #2563eb;
  transition: color 0.2s ease;
}
.site-header .logo:hover {
  color: #1e40af;
}
.site-header .menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .menu a {
  text-decoration: none;
  color: rgb(64.0086206897, 72.5431034483, 84.4913793103);
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.site-header .menu a:hover {
  color: #2563eb;
  border-color: #2563eb;
}

.site-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  font-family: "Inter", "Segoe UI", sans-serif;
  padding: 2rem 1.25rem;
  margin-top: 4rem;
}
.site-footer .container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}
.site-footer .menu ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .menu a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-footer .menu a:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .site-header .menu ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
img.logo {
  max-height: 60px;
}

/* ================================
   🔽 Header réduit au scroll
   ================================ */
.site-header {
  transition: all 0.3s ease;
}
.site-header .container {
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
}
.site-header .logo {
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled .container {
  padding: 0.4rem 1.25rem;
}
.site-header.scrolled .logo {
  font-size: 1rem;
}
.site-header.scrolled img.logo {
  max-height: 40px;
}

.animCanvas {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 50px 0;
}

.animCanvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.reveal {
  opacity: 0;
  will-change: opacity, transform;
}

.page-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.page-card:hover {
  transform: translateY(-4px);
}

.page-card img {
  max-width: 100%;
  border-radius: 10px;
}

.page-content {
  line-height: 1.7;
  font-size: 1.1em;
}

/* ===========================================================
   🧱 PAGES LIST — Front
   =========================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.container h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #222;
}

/* -----------------------------------------------------------
   GRID
   ----------------------------------------------------------- */
.pages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .pages-list {
    gap: 1.5rem;
  }
}

/* -----------------------------------------------------------
   PAGE CARD
   ----------------------------------------------------------- */
.page-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 350px;
}
.page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.page-card:hover img {
  transform: scale(1.05);
}
.page-card a {
  text-decoration: none;
  color: inherit;
}
.page-card img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.page-card h2 {
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem 0 1.25rem;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}
.page-card h2 a {
  color: inherit;
}
.page-card h2 a:hover {
  color: #0077cc;
}

/* -----------------------------------------------------------
   DARK MODE (optionnel)
   ----------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  .page-card {
    background: #1c1c1c;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.08);
  }
  .page-card h2 {
    color: #f2f2f2;
  }
  .container h1 {
    color: #f2f2f2;
  }
}
.double-image {
  display: flex;
  
  justify-content: center;
  gap: 2rem;
  margin: 0rem 0;
}
.double-image .image-block {
  flex: 1 1 45%;
  max-width: 45%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.double-image .image-block img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}





.image-block {
  
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .image-block img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}



.double-image .image-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
@media (max-width: 900px) {
  .double-image .image-block {
    flex: 1 1 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */