/**
* 2007-2026 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2026 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
/* ===== SECTION INFOS PRATIQUES ===== */
.infos-section {
  background: #ffffff;
  padding: 90px 8%;
  font-family: 'Montserrat', sans-serif;
}

.infos-container {
  max-width: 1920px;
  margin: 0 auto;
}

/* BADGE */
.infos-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244,182,64,0.15);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* TITRE */
.infos-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 50px;
}

/* GRID */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.infos-card-full {
  grid-column: span 3;
}

/* CARD */
.infos-card {
  background: #f9f9fb;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infos-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16,19,39,0.12);
}

/* TITRES BLOCS */
.infos-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

/* TEXTE */
.infos-card p,
.infos-card a {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
}

.infos-card a {
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
}

.infos-card a:hover {
  color: var(--orange);
}

/* MAP */
.infos-map {
  margin-top: 24px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.infos-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .infos-grid {
    grid-template-columns: 1fr;
  }

  .infos-card-full {
    grid-column: span 1;
  }

  .infos-section h2 {
    font-size: 32px;
  }
}
