.runda_pic_text {
  background: var(--bg-secondary);
  padding: var(--component-gap) 0;
  position: relative;
  overflow: hidden;
}

.runda_pic_text_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 41.1%;
  aspect-ratio: 395/533;
  transform: translateY(18%);
  z-index: 1;
}

.runda_pic_text .container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.runda_pic_text_content {
  width: 66.4%;
  display: flex;
  flex-wrap: wrap;
}

.runda_pic_text_content_item {
  width: 50%;
  border: 1px solid #E5E5E5;
  background: #F1F1F1;
  padding: 0 var(--text-gap-sm) var(--text-gap-sm);
}

.runda_pic_text_content_item:first-child {
  padding: var(--text-gap-sm);
  border: 1px solid #E5E5E5;
  background: #F4F4F4;
}

.runda_pic_text_big_pic {
  width: 33.6% !important;
  filter: brightness(0.8);
}

.runda_pic_text_content_item:first-child .runda-text {
  margin: 24px 0;
}

.runda_pic_text_content_item_content {
  padding: 24px var(--text-gap-lg) 0;
}

.runda_pic_text_content_item:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
}

.runda_pic_text_content_item img {
  width: calc(100% - 10px);
  aspect-ratio: 72/61;
  object-fit: cover;
}

.runda_pic_text_content_item:not(:first-child) .runda-text {
  height: calc(var(--text-size) * 5 * 1.5625);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-top: 16px;
  line-height: 1.5625;
}

@media screen and (max-width: 768px) {
  .runda_pic_text_big_pic {
    display: none;
  }

  .runda_pic_text_content {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .runda_pic_text_content_item{
    width: 100%;
  }
}