@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#main{
    padding: 0;
}

.page-title{
    display: none;
}

#main > .wf-wrap{
    width: 100%;
    padding: 0;
}

body,input,::placeholder,button{
    font-family: "Geologica", Sans-serif;
        font-weight: 200;
}

button,a{
    transition: 0.3s all;
    cursor: pointer;
}

.container{
    width: 100%;
    max-width: 1290px;
    padding: 0 20px;
    margin: auto;
}

.hero_section{
background-color: #0076be;
padding: 80px;
}

.hero_section .container .content{
    width: 51%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hero_section .container .podcast_tag{
display: flex;
align-items: center;
gap: 8px;
padding: 6px;
border: solid white 1px;
font-size: 12px;
line-height: 14px;
color: white;
border-radius: 50px;
}

.hero_section .container h1,
.hero_section .container p{
    color: white;
    margin-bottom: 0;
}

.hero_section .container h1 span{
    background: #FEE685;
background: linear-gradient(to right, #FEE685 0%, #F6CFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero_section .container h1{
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
}

.search{
    padding: 10px;
    background-color: white;
    border-radius: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.search_suggest{
    list-style: none !important;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 85%;
    background-color: white;
    width: 100%;
    z-index: 2;
    left: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    margin: 0 !important;
}

.search_suggest li a{
    padding: 8px 20px;
    display: flex;
    border-bottom: solid rgba(0, 0, 0, 0.05) 1px;
    color: black;
}

.search form{
    display: flex;
    align-items: stretch;
    flex-grow: 1;

}

.search form input{
    padding: 12px;
    border: none;
    display: flex;
    flex-grow: 1;
    border: none !important;
    margin-bottom: 0 !important;
}

.search form input:focus{
    outline: none;
}

button,a.button{
    background-color: black;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 12px;
}

button:hover,
a.button:hover{
    transform: scale(0.975);
}

a.link{
    padding: 0;
    text-decoration: underline;
    text-decoration-color: black;
}

.availables{
    display: flex;
    align-items: center;
    gap: 10px;
}

.availables a{
    width: 38px;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 4px;
    display: grid;
    place-items: center;
    border: solid white 1px;
    border-radius: 100px;
}

.availables a img{
    width: 20px;
    height: auto;
}

a{
    text-decoration: none;
}

.page_tabs{
    padding: 16px 0;
    border-bottom: solid rgba(0, 0, 0, 0.137) 1px;
}

.page_tabs .container{
    display: flex;
    align-items: center;
    gap: 8px;
}

.page_tabs .container a{
    display: flex;
    align-items: center;
    gap: 4px;
    color: #717182;
    border: solid #71718271 1px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    ;line-height: 14px;
}

.page_tabs .container a.active,
.page_tabs .container a:hover{
    color: white;
    background-color: black;
}

.page_tabs .container a img{
    width: 16px;
    height: auto;
}

.page_tabs .container a.active img,
.page_tabs .container a:hover img{
    filter: invert(1) brightness(100);
}

.latest_episode{
    padding: 80px 0;
}



.latest_episode h2,
.all_episode h2{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 24px;
}

.latest_episode .episode,
.all_episode .episode{
    display: flex;
    border: solid rgba(0, 0, 0, 0.25) 1px;
    border-radius: 24px;
    overflow: hidden;
}

.all_episode .episodes_container{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.all_episode .episode{
    flex-direction: column;
    width: calc(33.33% - 20px);
}


.latest_episode .episode>div{
    width: 50%;
}

.latest_episode .episode .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all_episode .episode .image img{
    width: 100%;
    height: auto;
    float: left;
}

.latest_episode .episode .content{
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.all_episode .episode .content{
    padding: 20px;
     display: flex;
    flex-direction: column;
    gap: 16px;
}

.latest_episode .episode .content .tag{
    display: flex;
    padding: 4px 8px;
    width: fit-content;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.05);
    font-size: 12px;
    line-height: 20px;
}

.latest_episode .episode .content .title,
.all_episode .episode .content .title{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0;
}

.latest_episode .episode .content p,
.all_episode .episode .content p{
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;

}

.all_episode .episode .content p{
      display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
    margin-bottom: 0;

}


.latest_episode .episode .content .actions{
    margin-top: auto;
    padding-top: 16px;
    border-top: solid rgba(0, 0, 0, 0.25) 1px;
    display: flex;
    justify-content: space-between;
}

.latest_episode .episode .content .actions p{
    color: black;
    margin-bottom: 0;
    
}

.all_episode .episode .content .actions{
      display: flex;
    justify-content: space-between;
    align-items: center;
}

.latest_episode .episode .content .actions img,
.all_episode .episode .content .actions img{
    filter: invert(1) brightness(0);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(1),
.all_episode .episode .content .actions .availables a:nth-of-type(1){
    border-color: rgba(251, 44, 54, 0.25);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(1):hover,
.all_episode .episode .content .actions .availables a:nth-of-type(1):hover{
    border-color: rgb(251, 44, 54);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(2),
.all_episode .episode .content .actions .availables a:nth-of-type(2){
    border-color: rgba(0, 188, 125, 0.25);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(2):hover,
.all_episode .episode .content .actions .availables a:nth-of-type(2):hover{
    border-color: rgba(0, 188, 125);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(3),
.all_episode .episode .content .actions .availables a:nth-of-type(3){
    border-color: rgba(0, 167, 244, 0.25);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(3):hover,
.all_episode .episode .content .actions .availables a:nth-of-type(3):hover{
    border-color: rgba(0, 167, 244);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(4),
.all_episode .episode .content .actions .availables a:nth-of-type(4){
    border-color: rgba(142, 81, 255, 0.25);
}

.latest_episode .episode .content .actions .availables a:nth-of-type(4):hover,
.all_episode .episode .content .actions .availables a:nth-of-type(4):hover{
    border-color: rgba(142, 81, 255);
}