/* RELATED PRODUCTS */
.techdRelatedProducts {
  position: relative;
  padding: 60px 15px;
  background-color: #f5f5f5;
}

.techdRelatedProducts__inner {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.techdRelatedProducts .title-accent {
  margin-top: 11px;
}

.techdRelatedProducts__subtitle {
  text-align: center;
  margin: 23px auto 0;
  max-width: 1075px;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--font-color-default, #363d49);
}

.techdRelatedProducts__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.techdRelatedProducts .video {
  width: 100%;
  max-width: 356px;
  display: flex;
  flex-direction: column;
}

.techdRelatedProducts .poster {
  position: relative;
}

.techdRelatedProducts .poster>.img-container {
  overflow: hidden;
  border-radius: 15px;
}

.techdRelatedProducts .poster::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  z-index: 1;
  pointer-events: none;
}

.techdRelatedProducts .video:nth-child(odd) .poster::after {
  background-color: color-mix(in srgb, var(--primary, #0f3732) 66%, transparent);
}

.techdRelatedProducts .video:nth-child(even) .poster::after {
  background-color: color-mix(in srgb, #262626 73%, transparent);
}

.techdRelatedProducts__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 15px;
  pointer-events: none;
  width: 100%;
}

.techdRelatedProducts__logo .img-container {
  margin: auto;
  height: 50px;
  max-width: 180px;
}

.techdRelatedProducts__logo .img-container::before {
  content: '';
  position: absolute;
  inset: -5px -10px;
  background-color: rgba(255, 255, 255, .5);
  z-index: 1;
  pointer-events: none;
  border-radius: 15px;
  z-index: -1;
}

.techdRelatedProducts .poster .tech-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  z-index: 2;
}

.techdRelatedProducts .poster .tech-badge .img-container {
  max-width: 90px;
  border-radius: 8px;
  overflow: hidden;
}

.techdRelatedProducts .video .title {
  display: block;
  font-size: clamp(20px, 1.375vw, 22px);
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  color: var(--font-color-title, #050505);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
}

.techdRelatedProducts .video > a:hover .title {
  color: var(--primary, #0f3732);
}

.techdRelatedProducts .video .description {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.85;
  margin-top: 15px;
  color: var(--font-color-default, #363d49);
}

.techdRelatedProducts .video .techdBanner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 5px;
}

.techdRelatedProducts .video .techdBanner__tags .banner-tag {
  font-size: 9px;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px;
  min-width: 83px;
  width: max-content;
  text-align: center;
  border: 1px solid var(--secondary, #06bda6);
  border-radius: 9999px 9999px 0 9999px;
  color: var(--font-color-default, #363d49);
}

@media screen and (min-width: 744px) {}

@media screen and (min-width: 1024px) {
  .techdRelatedProducts {
    padding: 55px 15px 70px;
  }

  .techdRelatedProducts__inner {
    max-width: 1920px;
    width: 88.125vw;
  }

  .techdRelatedProducts__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 23px;
  }

  .techdRelatedProducts .video {
    flex: 1 1 0;
    min-width: 0;
    max-width: 356px;
    width: auto;
  }

  .techdRelatedProducts .video .title {
    text-align: left;
  }

  .techdRelatedProducts .video .description {
    text-align: left;
  }

  .techdRelatedProducts .video .techdBanner__tags {
    justify-content: flex-start;
  }

  .techdRelatedProducts__logo .img-container {
    height: 60px;
    max-width: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .techdRelatedProducts__logo .img-container {
    height: 75px;
    max-width: 220px;
  }

  .techdRelatedProducts .poster .tech-badge {
    bottom: 12px;
    right: 25px;
  }
}