/* Who we are – images section: clean grid, no clutter */
.about-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
}

.about-images-grid .about-cell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.1);
}

.about-images-grid .about-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .about-images-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.75rem;
  }
}

@media (max-width: 479px) {
  .about-images-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .about-images-grid .about-cell {
    aspect-ratio: 16 / 10;
  }
}

/* Footer – Follow us in our social media: clear section */
.footer-social-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-social-section .footer-content-block {
  margin-bottom: 1rem;
}

.footer-social-section .footer-content-block h5 {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.footer-social-section .social-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.footer-social-section .social-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.footer-social-section .social-wrap a:hover {
  opacity: 0.85;
}

.footer-social-section .social-wrap img {
  width: 24px;
  height: 24px;
}
