.home .tags-container,
.home .news-slider {
	margin-top:30px;
}

.news-slider .arrow-link.start img {
	position: relative;
	top: 0;
	width: 12px;
}

.news-slider .arrow-link.dark span {
	font-size: 24px;
}

.home .news-slider header {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.home .news-slider .arrow-link span {
	font-weight: 400;
}

/* News slider gradient overlay for the right edge of swiper */
.news-swiper {
	position: relative;
}

.news-swiper .swiper-gradient-right {
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
	height: 100%;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 200px;
	z-index: 2;
	opacity:0;
}


.home .news-slider .bleed-right {margin-right: calc(50% - 50vw)}
.home .news-slider .bleed-right.has-swipped {margin-left: calc(50% - 50vw)}
.news-swiper.has-swipped .swiper-gradient-left{opacity:1}
.home section.cards-container.mb-80:last-child {margin-bottom: 0}


.podcast-list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}

.podcast-player {
	position: relative;
}

.podcast-image {
	overflow: hidden;
	position: relative;
}

.podcast-image img {
	aspect-ratio: 12 / 9;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s ease;
	width: 100%;
}

.podcast-image:hover img {
	transform: scale(1.05);
}

.podcast-content {
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.00) 10%, var(--main-900, rgba(26, 26, 26, 0.80)) 100%);
	bottom: 0;
	display: flex;
	gap: 20px;
	left: 0;
	padding: 20px;
	position: absolute;
	width: 100%;
	padding-top: 40px;
}

.podcast-time-ago {
	color: var(--main-0, #FFFFFF);
	display: block;
	font-family: var(--font-family-inter);
	font-size: 10px;
	font-style: normal;
	font-weight: 550;
	line-height: 120%;
	margin-bottom: 10px;
}

.podcast-title {
	color: var(--main-0, #FFFFFF);
	font-family: var(--font-family-stag), sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	/* 28.8px */
}

.podcast-content svg {
	flex-shrink: 0;
	height: 64px;
	width: 64px;
}

@media screen and (max-width: 1023px) {
.podcast-content svg {height: 44px;width: 44px}
.podcast-list {grid-template-columns: 1fr!important}
}



@media screen and (max-width:768px) {
  .home .tags-container .tags-list {
      display: block;
      white-space: nowrap;
      overflow-x: scroll;
      padding: 8px 0 0; margin-right: -14px;
  }.home .tags-container .tags-list::-webkit-scrollbar {
      display: none;
  }.home .tags-container .tags-list .tag {
      display: inline-block;    margin-right: 8px;
  }
}