.runda_about_offer {
  padding: calc(var(--text-gap-lg) * 2) 0;
  background: var(--bg-primary);
}
.runda_about_offer .runda-title {
  margin-bottom: 16px;
  color: #000;
}

.runda_about_offer_list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--text-gap-lg) / 2);
  margin-top: var(--text-gap);
}

.runda_about_offer_item {
  width: calc((100% - var(--text-gap-lg) / 2 * 3) / 4);
}

.runda_about_offer_item_pic {
  position: relative;
}

.runda_about_offer_item_pic img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.runda_about_offer_item .runda-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  background: rgba(133, 116, 92, 0.60);
  padding: var(--text-gap-lg) var(--text-gap-sm);
  width: 87%;
  color: #fff;
  text-align: center;
  display: none;
}

.runda_about_offer_item:hover .runda-text {
  display: block;
}

.runda_about_offer_item .runda-sub-title {
  color: #000;
  text-align: center;
  max-height: calc(var(--title-size-h5) * 1.5625 * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 8px;
}

@media screen and (max-width: 992px) {
  .runda_about_offer_item {
    width: calc(50% - var(--text-gap-lg) / 2);
  }

  .runda_about_offer_item:hover .runda-text {
    display: none;
  }

  .runda_about_offer_item .runda-sub-title {
    max-height: calc(var(--title-size-h5) * 1.5625 * 1);
    -webkit-line-clamp: 1;
  }
}

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