/* Styles spécifiques à la page aide-problemes-pc.html */
.problemes-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
}
.probleme-card {
  background: #f7f9ff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0002;
  padding: 38px 24px 30px 24px;
  margin: 0;
  max-width: 370px;
  min-width: 240px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: box-shadow 0.2s;
}
.probleme-card:hover {
  box-shadow: 0 4px 24px #1f56ff33;
}
.probleme-imgbox {
  display: inline-block;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 8px #0001;
  margin-bottom: 22px;
}
.probleme-imgbox img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  display: block;
}
.probleme-card h3 {
  margin: 18px 0 12px 0;
  font-size: 1.28em;
  color: #1a237e;
}
.probleme-card p {
  font-size: 1.12em;
  color: #222;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .problemes-flex {gap: 24px;}
  .probleme-card {max-width: 98vw;}
  .probleme-imgbox, .probleme-imgbox img {width: 100px; height: 100px;}
}
