#photos {
  padding: 40px 0 30px;
}

.photo-carousel {
  margin-top: 60px;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.photo-carousel .swiper-pagination {
  position: static;
  margin-top: 16px;
}

.photo-carousel .swiper-wrapper {
  align-items: center;
}

.photo-card {
  display: block;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(6, 12, 34, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(6, 12, 34, 0.12);
}

.photo-carousel .swiper-pagination-bullet {
  background: rgba(17, 35, 99, 0.3);
  opacity: 1;
}

.photo-carousel .swiper-pagination-bullet-active {
  background: #2157a6;
}

.photo-carousel .swiper-button-next,
.photo-carousel .swiper-button-prev {
  color: #2157a6;
  transition: transform 0.2s ease, color 0.2s ease;
}

.photo-carousel .swiper-button-next:hover,
.photo-carousel .swiper-button-prev:hover {
  color: #1a4a93;
  transform: scale(1.08);
}

.photo-empty {
  text-align: center;
  color: #112363;
  font-size: 18px;
}

@media (max-width: 991px) {
  .photo-card img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .photo-card {
    padding: 12px;
  }

  .photo-card img {
    height: 170px;
  }
}
