.photos {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
  background: #1a3a6b;
  padding: 16px;
  min-height: 738px;
}

.photos .section-title,
.photos__link {
  color: #fff;
}

.photos__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photos__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.photos__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-wrap: auto;
  margin-bottom: 16px;
}

.photos__link img {
  width: auto;
  height: 25px;
}

@media (max-width: 992px) {
  .photos {
    min-height: 300px;
    margin-bottom: 48px;
  }
}