/* Fichier CSS : /asset/css/page/reality/index.css */
/* --- ZONE DE RÉGLAGE INDEX --- */
:root {
  --index-rond-taille: calc(45 / 16 * 1rem);
  --index-img-padding: calc(8 / 16 * 1rem);
}
.index-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(280 / 16 * 1rem), 1fr));
  gap: calc(10 / 16 * 1rem);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.index-step-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--source-color-white-transparent) !important;
  padding: calc(12 / 16 * 1rem) calc(15 / 16 * 1rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-z2);
  border: calc(1 / 16 * 1rem) solid var(--color-step-item-border);
  box-sizing: border-box;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
html[data-theme="dark"] .index-step-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000000 !important;
  padding: calc(12 / 16 * 1rem) calc(15 / 16 * 1rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-z2);
  border: none;
}
.index-step-item:hover {
  transform: scale(var(--transform-scale-md));
  box-shadow: var(--shadow-z3, 0 4px 12px rgba(0, 0, 0, 0.15));
  border-color: #4A813F;
}
html[data-theme="dark"] .index-step-item:hover {
  border-color: #ffffff;
}
.index-card-header {
  display: flex;
  align-items: center;
  gap: calc(15 / 16 * 1rem);
  margin-bottom: calc(10 / 16 * 1rem);
}
.index-step-icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(34 / 16 * 1rem);
  height: calc(34 / 16 * 1rem);
  border-radius: 50%;
  background-color: #4A813F;
  border: none;
  padding: var(--index-img-padding);
  box-sizing: border-box;
  box-shadow: var(--shadow-z2);
}
html[data-theme="dark"] .index-step-icon {
  background-color: #016F29;
  border: none;
}
.index-step-icon > img,
.index-step-icon > svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
html[data-theme="dark"] .index-step-icon > img,
html[data-theme="dark"] .index-step-icon > svg {
  filter: brightness(0) invert(1);
}
.index-step-item p {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  flex-grow: 1;
}
html[data-theme="dark"] .index-step-item p {
  color: var(--color-texte-dark-mode) !important;
}
.box {
  margin-bottom: calc(5 / 16 * 1rem);
}
html[data-theme="dark"] .box {
  background-color: #222222;
  border: none;
}
html[data-theme="dark"] .share-text {
  color: #a39f9f !important;
}
/*@media@media@media@media@media@media@media@media@media@media@media@media*/
/*@media@media@media@media@media@media@media@media@media@media@media@media*/
/*@media@media@media@media@media@media@media@media@media@media@media@media*/
@media (max-width: calc(635 / 16 * 1rem)) {
  .index-step-icon {
    width: calc(33 / 16 * 1rem) !important;
    height: calc(33 / 16 * 1rem) !important;
  }
  .index-step-icon {
    width: calc(33 / 16 * 1rem) !important;
    height: calc(33 / 16 * 1rem) !important;
  }
  h3 {
    font-size: 1.1rem !important;
  }
}
html[data-theme="dark"] h3 {
  font-size: 1.1rem !important;
}
/*@media@media@media@media@media@media@media@media@media@media@media@media*/
/*@media@media@media@media@media@media@media@media@media@media@media@media*/
/*@media@media@media@media@media@media@media@media@media@media@media@media*/
@media (max-width: calc(580 / 16 * 1rem)) {
  .index-container {
    margin-left: 0;
    margin-right: 0;
    padding-left: calc(12 / 16 * 1rem);
    padding-right: calc(12 / 16 * 1rem);
    width: 100%;
  }
  .index-step-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .index-step-item {
    width: 100%;
    box-sizing: border-box;
  }
}