.runda-we-build {
  padding: calc(var(--text-gap-lg) * 2) 0;
}

.runda-we-build-top {
  position: relative;
}

.runda-we-build-top h2 {
  color: #000;
  font-size: var(--title-size-h2);
  font-weight: 400;
  line-height: normal;
}

.runda-we-build-top p {
  color: rgba(0, 0, 0, 0.60);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
}

.runda-we-build-top-link {
  position: absolute;
  top: calc(16 / 60 * var(--title-size-h2));
  right: 0;
}

.runda-we-build-top-link svg {
  height: var(--text-size);
  aspect-ratio: 22 / 16;
}

.runda-we-build-content {
  margin-top: var(--text-gap);
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  overflow-x: auto;
}

.runda-we-build-content::-webkit-scrollbar {
  height: 6px;
  background: transparent;
  border-radius: 6px;
}

.runda-we-build-content::-webkit-scrollbar-thumb {
  background: #c2c2c2;
  border-radius: 6px;
}

.runda-we-build-content::-webkit-scrollbar-thumb:hover {
  background: #c2c2c2;
}

.runda-we-build-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}

.runda-we-build-content-item {
  position: relative;
}

.runda-we-build-content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.runda-we-build-content-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.60);
  height: 20.8%;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.runda-we-build-content-item-content h3 {
  color: #FFF;
  font-size: var(--title-size-h5);
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.56px;
}

.runda-we-build-content-item-content p {
  color: rgba(255, 255, 255, 0.60);
  font-size: var(--text-size);
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 15px;
  font-family: var(--semiBold-font-family);
}

.runda-we-build-content-item:hover .runda-we-build-content-item-content {
  height: 100%;
}

.runda-we-build-content-item:hover .runda-we-build-content-item-content p {
  height: auto;
}

@media screen and (max-width: 1200px) {
  .runda-we-build-content-item-content h3 {
    font-size: calc(var(--title-size-h5) * 16 / 18);
  }
}

@media screen and (max-width: 992px) {
  .runda-we-build-content {
    padding-bottom: 2px;
  }
}

@media screen and (max-width: 480px) {
  .runda-we-build-top-link {
    margin-top: 16px;
    position: static;
  }
}