.a-propos-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /*margin: 10px auto;*/
    max-width: 1100px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 8px;
    background-color: #f5f5f5;
}
.a-propos-image{
    display: flex;
    gap: 15px;
}
.a-propos-image img {
    height: auto;
    border-radius: 8px;
}
.a-propos-text {
    flex: 1;
    text-align: justify;
}
main p{
    font-size: 0.9em;
}
h3{
    font-size: 1.0rem;
    text-transform: capitalize;
}
/* Responsive */
@media (max-width: 768px) {
    .a-propos-container {
        flex-direction: column;
        text-align: justify;
    }
    .a-propos-image{
        flex-direction: column;
    }
    .a-propos-text {
        margin-top: 2px;
    }
}

.a-propos-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.a-propos-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.thumb-img {
  max-width: 180px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.thumb-img:hover {
  transform: scale(1.05);
}

.lire-suite {
  display: inline-block;
  margin-top: 8px;
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}
.lire-suite:hover {
  text-decoration: none;
  color: #00a0cc;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}