/* ==========================================
   Divine Connectionz
   7days_podcast.css
========================================== */

/* ==========================================
   Main Container
========================================== */

.podcast-page{

    max-width:1200px;

    margin:50px auto;

    padding:0 20px;

}

/* ==========================================
   Common Sections
========================================== */

.podcast-header,
.podcast-introduction,
.podcast-thanks,
.podcast-benefits,
.podcast-player-section,
.episodes-section{

    background:#ffffff;

    padding:45px;

    margin-bottom:40px;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

/* ==========================================
   Header
========================================== */

.podcast-header{

    background:linear-gradient(135deg,#fff7ea,#ffffff);

    border-left:8px solid #ff9800;

}

.podcast-header h1{

    font-size:42px;

    color:#d46a00;

    text-align:center;

    margin-bottom:25px;

}

.podcast-header p{

    font-size:21px;

    line-height:1.9;

    text-align:justify;

}

/* ==========================================
   Headings & Text
========================================== */

.podcast-page h2{

    color:#d46a00;

    font-size:34px;

    margin-bottom:20px;

}

.podcast-page p{

    font-size:20px;

    line-height:1.9;

    color:#444;

    text-align:justify;

}

/* ==========================================
   Benefits Grid
========================================== */

.benefit-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));

    gap:25px;

}

.benefit-card{

    background:#fff8ef;

    border-radius:12px;

    padding:25px;

    transition:.3s;

}

.benefit-card:hover{

    transform:translateY(-5px);

    box-shadow:0 8px 20px rgba(0,0,0,.10);

}

.benefit-card h3{

    color:#d46a00;

    margin-bottom:15px;

    font-size:24px;

}

.benefit-card p{

    font-size:18px;

    text-align:left;

}

/* ==========================================
   Podcast Card
========================================== */

.podcast-card{

    background:#fafafa;

    border:1px solid #eeeeee;

    border-radius:15px;

    padding:30px;

    text-align:center;

    max-width:800px;

    margin:30px auto;

}

.podcast-card h3{

    color:#d46a00;

    font-size:30px;

    margin-bottom:15px;

}

.podcast-card p{

    text-align:center;

    margin-bottom:25px;

}

/* ==========================================
   Button
========================================== */

.podcast-button{

    display:inline-block;

    padding:14px 30px;

    background:#ff9800;

    color:#ffffff;

    text-decoration:none;

    border-radius:8px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.podcast-button:hover{

    background:#d46a00;

    transform:translateY(-3px);

}

/* ==========================================
   Podcast Episodes
========================================== */

#podcastEpisodes{

    margin-top:30px;

}

.episode-card{

    background:#ffffff;

    border:1px solid #eeeeee;

    border-radius:15px;

    padding:30px;

    margin-bottom:25px;

    box-shadow:0 6px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.episode-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.episode-card h3{

    color:#d46a00;

    font-size:24px;

    margin-bottom:10px;

}

.episode-date{

    color:#777;

    font-size:15px;

    margin-bottom:20px;

}

.episode-card p{

    font-size:18px;

    text-align:left;

    margin-bottom:20px;

}

.episode-card audio{

    width:100%;

    margin-top:15px;

}

/* ==========================================
   Loading Message
========================================== */

#podcastEpisodes > p{

    text-align:center;

    color:#777;

    font-size:20px;

    padding:30px;

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:768px){

    .podcast-page{

        margin:25px auto;

        padding:15px;

    }

    .podcast-header,
    .podcast-introduction,
    .podcast-thanks,
    .podcast-benefits,
    .podcast-player-section,
    .episodes-section{

        padding:25px;

    }

    .podcast-header h1{

        font-size:30px;

    }

    .podcast-page h2{

        font-size:28px;

    }

    .podcast-page p{

        font-size:18px;

        text-align:left;

    }

    .benefit-grid{

        grid-template-columns:1fr;

    }

    .benefit-card h3{

        font-size:22px;

    }

    .episode-card{

        padding:20px;

    }

    .episode-card h3{

        font-size:21px;

    }

}
