.podcast{
	position: relative;
	display: flex;
	flex-direction: row-reverse;
}

.podcast .left, .podcast .right{
	position: relative;
	width: 50%;
}

.podcast .left{
	padding: 60px 100px;
	background: rgb(148,242,86);
	/*background: linear-gradient(135deg, rgba(148,242,86,1) 30%, rgba(95,173,85,1) 100%);*/
	background: linear-gradient(135deg, rgba(8,170,175,1) 30%, rgba(15,127,154,1) 100%);
}

.podcast h2{
	color: #fff;
	font-size: clamp(35px, 3vw, 60px);
	line-height: clamp(37px, 4vw, 70px);
	text-shadow: -1px 3px 8px rgba(0,0,0,0.23);
}

.podcast h2 .yellow{
	margin-left: -34px;
	color: var(--colorYellow);	
}

.podcast .btn{
	color: var(--colorBody);
	background-color: var(--colorYellow);
	border-color: var(--colorYellow);
}

.podcast .btn:hover{
	background-color: var(--colorBlue);
  color: var(--colorWhite);
  border-color: var(--colorBlue);
}

.podcast p{
	color: #fff;
	font-weight: 700;
	font-size: 30px;
	line-height: 35px;
	margin-bottom: 40px;
}

.podcast img{
	position: absolute;
	width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 1199px){
	.podcast{
		flex-direction: column-reverse;
	}
	
	.podcast .left, .podcast .right{
		width: 100%;
	}
	
	.podcast img{
		position: relative;
		width: 100%;
		height: auto;
		object-fit: auto;
	}
}

@media(max-width: 767px){
	.podcast .left{
		padding: 30px 25px;
	}
	
	.podcast h2 .yellow {
  	margin-left: -15px;
	}
	
	.podcast p {
	  font-size: 25px;
	  line-height: 30px;
	  margin-bottom: 30px;
	}
	
	.podcast .topline{
		font-size: 20px;
  	margin-bottom: 26px;
	}
	
	.podcast h2{
		font-size: clamp(30px, 3vw, 60px);
    line-height: clamp(34px, 4vw, 70px);
	}
	
}