.hodhoudInstagramSection {
  margin: 40px 0;
}

.hodhoudInstagramTitle {
  margin-bottom: 20px;
}

.hodhoudInstagramGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.hodhoudInstagramCard {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #f6f6f6;
  aspect-ratio: 1 / 1;
}

.hodhoudInstagramCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.hodhoudInstagramCard:hover img {
  transform: scale(1.04);
}

.hodhoudInstagramDate {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 1199px) {
  .hodhoudInstagramGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hodhoudInstagramGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hodhoudInstagramGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
