/* Wrapper global de la page Fampiharana mivantana ny marika */
.examples-page {
  background-color: #f5f7fb;
  padding: 2rem 1rem 3rem;
}

@media (min-width: 992px) {
  .examples-page {
    padding: 3rem 2rem 4rem;
  }
}

/* Bloc d'introduction (hero) */
.examples-page .examples-hero {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.examples-page .examples-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.examples-page .examples-hero p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.98rem;
}

.examples-page .examples-hero ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Section des exemples (grille de visuels) */
.examples-page .examples-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

/* Titre de section – remplace le style inline */
.examples-page .section-title {
  font-family: 'ScoutsGTPlanarBold', sans-serif;
  font-size: 16px;
  color: #FF5655;
}

/* Grille des exemples */
.examples-page .brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.examples-page .brand-item {
  background-color: #f9fafb;
  border-radius: 10px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.examples-page .brand-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Effet hover sur les exemples */
.examples-page .brand-item:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 767.98px) {
  .examples-page .examples-hero {
    padding: 1.5rem 1.25rem;
  }

  .examples-page .examples-title {
    font-size: 1.4rem;
  }

  .examples-page .examples-hero p {
    font-size: 0.92rem;
  }

  .examples-page .examples-section {
    padding: 1.4rem 1.1rem;
  }

  .examples-page .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .examples-page .brand-item {
    padding: 0.8rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .examples-page .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
