/* ======================================================
   Article : erreurs-frequentes-modules-prestashop
   Encarts visuels (3 blocs)
   ====================================================== */

/* ------ Bloc synthèse 3 erreurs (intro) ------ */

.art-3errors {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  padding: 32px 28px;
  background: #282120;
  border-radius: 20px;
}

.art-3errors__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
}

.art-3errors__item:last-child {
  padding-right: 0;
  border-right: none;
}

.art-3errors__num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fe6038;
  line-height: 1;
  margin: 0;
}

.art-3errors__title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -.01em;
}

.art-3errors__desc {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: .8125rem;
  color: #cfc5c5;
  line-height: 1.5;
  margin: 0;
}

/* ------ Bloc note technique PS9 ------ */

.art-note {
  margin: 28px 0;
  background: #ebecdb;
  border-radius: 20px;
  padding: 24px 28px;
}

.art-note__label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #75999b;
  margin: 0 0 12px;
}

.art-note__title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #282120;
  margin: 0 0 16px;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.art-note__items {
  display: flex;
  gap: 24px;
}

.art-note__item {
  flex: 1;
}

.art-note__item-num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: #282120;
  line-height: 1;
  margin: 0 0 4px;
}

.art-note__item-desc {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: .8125rem;
  color: #584c4c;
  line-height: 1.4;
  margin: 0;
}

/* ------ Responsive ------ */

@media (max-width: 700px) {
  .art-3errors {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }

  .art-3errors__item {
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .art-3errors__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .art-note__items {
    flex-direction: column;
    gap: 16px;
  }
}
