.runda_about_photo {
  background: var(--bg-primary);
}

.runda_about_photo .container {
  position: relative;
}

.runda_about_photo .runda-title {
  color: #FFF;
}

.runda_about_photo .runda-text {
  color: #FFF;
}

.runda_about_photo .runda-text p {
  min-height: calc(var(--text-gap) / 2);
}

.runda_about_photo_list_content {
  width: 100%;

}

.runda_about_photo_item_box_content {
  max-height: 300px;
  overflow-y: auto;
}

.runda_about_photo_item_box_content::-webkit-scrollbar {
  display: none;
}

.runda_about_photo .swiper-button-prev,
.runda_about_photo .swiper-button-next {
  position: static;
}

.runda_about_photo .swiper-button-prev:hover svg path,
.runda_about_photo .swiper-button-next:hover svg path {
  fill: #FFF !important;
}

.runda_about_photo_content {
  position: absolute;
  top: 0;
  left: 15px;
  width: 60%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.runda_about_photo_content_wrapper {
  position: relative;
  height: 100%;
}

.runda_about_photo_content_wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.runda_about_photo_item {
  display: none;
}

.runda_about_photo_content_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--text-gap);
  padding: 0 150px 0 var(--component-gap-sm);
}

.runda_about_photo .swiper-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--text-gap-sm);
  margin-top: var(--text-gap);
}

.runda_about_photo_item.active {
  display: block;
}

.runda_about_photo_item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 1280px) {
  .runda_about_photo_item_box_content {
    max-height: 250px;
  }
}

@media screen and (max-width: 992px) {
  .runda_about_photo_item_box_content {
    max-height: 196px;
  }

  .runda_about_photo_content_wrapper .runda_about_photo_content_wrapper_svg {
    display: none;
  }

  .runda_about_photo_content {
    width: calc(100% - 30px);
    background: rgba(133, 116, 92, 0.9);
  }

  .runda_about_photo_content_box {
    padding: 0 var(--component-gap-sm);
  }
}

@media screen and (max-width: 768px) {
  .runda_about_photo_item_box_content {
    max-height: 100px;
  }

  .runda_about_photo_content_box {
    padding: 0 var(--text-gap-sm);
    gap: var(--text-gap-sm);
  }

  .runda_about_photo .runda-text p {
    min-height: 10px;
  }
}

@media screen and (max-width: 576px) {
  .runda_about_photo_item_box_content {
    max-height: 140px;
  }
}