.swiper__podcasts-container {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

.swiper__service-name {
  position: relative;
  font-family: var(--font-family-main);
  color: white;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0 16px 16px 16px;
  z-index: 3;
}

.swiper__service-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
  margin-left: -16px;
  margin-right: -16px;
}

.swiper__podcast-carousel::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: -32px;
  width: 90px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(0 0 0 / 50%) 25%,
    #000 80%
  );
  z-index: 2;
  pointer-events: none;
}

.swiper__podcast-carousel::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: -32px;
  width: 90px;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(0 0 0 / 50%) 25%,
    #000 80%
  );
  z-index: 2;
  pointer-events: none;
}

.swiper__podcast-carousel .swiper-wrapper {
  overflow-x: scroll;
}

.swiper__podcast-carousel .swiper__podcast-cover {
  width: 180px;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.swiper__podcast-carousel .podcast-card {
  width: 200px !important;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swiper__podcast-carousel .swiper__podcast-cover img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.swiper__podcast-carousel .swiper__podcast-title {
  color: white;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 16px 0 40px 0;
}

.swiper__podcast-carousel .swiper__podcast-show-more {
  background: rgba(255, 255, 255, 0.16);
  height: 180px;
  width: 180px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
