/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* =========================
   CONTAINER
========================= */

.podcast-container{
    max-width:1300px;
    margin:auto;
    padding:40px 20px 80px;
}

/* =========================
   HERO
========================= */

.podcast-hero{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:60px;
    padding:45px;
    border-radius:28px;
    background:
    linear-gradient(
        135deg,
        #000000 0%,
        #111111 45%,
        #b30000 100%
    );
    color:#ffffff;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 40px rgba(0,0,0,0.25);
}

.podcast-hero:before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
}

.podcast-hero-image{
    min-width:260px;
}

.podcast-hero-image img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,0.35);
}

.podcast-label{
    display:inline-block;
    margin-bottom:15px;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.podcast-title{
    margin:0 0 18px;
    font-size:48px;
    line-height:1.1;
    color:#ffffff;
}

.podcast-description{
    font-size:16px;
    line-height:1.8;
    opacity:.92;
    max-width:760px;
}

.podcast-stats{
    display:inline-block;
    margin-top:22px;
    padding:12px 18px;
    border-radius:999px;
    background:#ffffff;
    color:#b30000;
    font-weight:700;
}

/* =========================
   EPISODES
========================= */

.podcast-grid{
    display:flex;
    flex-direction:column;
    gap:35px;
}

/* =========================
   CARD
========================= */

.podcast-card{
    display:flex;
    align-items:stretch;
    gap:24px;
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid #eeeeee;
    box-shadow:0 6px 24px rgba(0,0,0,0.08);
    transition:all .25s ease;
}

.podcast-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* =========================
   IMAGE
========================= */

.podcast-thumb{
    width:350px;
    min-width:350px;
    background:#111111;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.podcast-thumb img{
    width:100%;
    height:280px;
    object-fit:contain;
    background:#111111;
}

/* =========================
   CONTENT
========================= */

.podcast-info{
    padding:24px 24px 24px 0;
    display:flex;
    flex-direction:column;
}

.podcast-meta{
    font-size:13px;
    color:#888888;
    margin-bottom:12px;
    font-weight:600;
}

.podcast-episode-title{
    margin:0 0 14px;
    line-height:1.35;
}

.podcast-episode-title a{
    color:#111111;
    text-decoration:none;
    font-size:24px;
    font-weight:800;
    transition:.2s;
}

.podcast-episode-title a:hover{
    color:#b30000;
}

.podcast-excerpt{
    color:#555555;
    line-height:1.8;
    font-size:15px;
}

.podcast-button{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    align-self:flex-start;
    padding:12px 18px;
    border-radius:999px;
    background:#b30000;
    color:#ffffff;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.podcast-button:hover{
    background:#111111;
    color:#ffffff;
}

.podcast-pagination{
    margin-top:60px;
    text-align:center;
}

/* base buttons */
.podcast-pagination .page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    margin:0 4px;
    padding:0 12px;
    border-radius:12px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    transition:all .25s ease;
    box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

/* hover */
.podcast-pagination .page-numbers:hover{
    background:#b30000;
    transform:translateY(-2px);
}

/* current page */
.podcast-pagination .page-numbers.current{
    background:#b30000;
    color:#fff;
    box-shadow:0 10px 25px rgba(179,0,0,0.35);
    transform:scale(1.05);
}

/* prev / next special style */
.podcast-pagination .prev,
.podcast-pagination .next{
    background:#000;
    padding:0 16px;
}

.podcast-pagination .prev:hover,
.podcast-pagination .next:hover{
    background:#b30000;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .podcast-hero{
        flex-direction:column;
        text-align:center;
    }

    .podcast-description{
        max-width:100%;
    }

}

@media(max-width:768px){

    .podcast-card{
        flex-direction:column;
    }

    .podcast-thumb{
        width:100%;
        min-width:100%;
    }

    .podcast-thumb img{
        width:100%;
        height:auto;
        max-height:320px;
    }

    .podcast-info{
        padding:20px;
    }

    .podcast-title{
        font-size:34px;
    }

}



/* =========================
   PAGE BASE
========================= */

.podit-episode{
    background:#ffffff;
    color:#111;
    padding:60px 20px 100px;
}

/* =========================
   HERO
========================= */

.podit-hero{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    align-items:center;
    padding:40px 0;
}

/* IMPORTANT: NO fixed weird scaling */
.podit-hero-image img{
    width:340px;
    height:auto;
    max-width:340px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    display:block;
}

.podit-series{
    display:inline-block;
    background:#e60023;
    color:#fff;
    padding:6px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.podit-title{
    font-size:46px;
    margin:0;
    line-height:1.1;
}

.podit-meta{
    margin-top:10px;
    color:#666;
    font-size:14px;
}

/* =========================
   PLAYER
========================= */

.podit-player{
    max-width:1200px;
    margin:30px auto;
    padding:25px;
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* make SSP responsive */
.podit-player iframe,
.podit-player audio{
    width:100% !important;
}

/* =========================
   RELATED EPISODES
========================= */

.podit-related{
    max-width:1200px;
    margin:80px auto 0;
}

.podit-related h2{
    font-size:26px;
    margin-bottom:25px;
}

.podit-related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.podit-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#111;
    transition:.25s;
}

.podit-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

.podit-card-img img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.podit-card-info{
    padding:15px;
}

.podit-card-date{
    font-size:12px;
    color:#888;
    margin-bottom:8px;
}

.podit-card-title{
    font-size:16px;
    font-weight:600;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .podit-hero{
        flex-direction:column;
        text-align:center;
    }

    .podit-hero-image img{
        width:100%;
        max-width:100%;
    }

    .podit-title{
        font-size:30px;
    }

    .podit-related-grid{
        grid-template-columns:1fr;
    }
}


/* ================================
   PODIT SHOWS PAGE (FINAL)
================================ */

.podit-shows-wrapper{
    background:#fff;
    padding:40px 20px 80px;
}

/* HERO */

.podit-shows-hero{
    max-width:1200px;
    margin:0 auto 50px;
    border-radius:28px;
    overflow:hidden;
    background:linear-gradient(135deg,#b3001b,#ff1744);
    padding:70px 60px;
    position:relative;
}

.podit-shows-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 40%);
}

.podit-shows-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.podit-label{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.podit-shows-hero h1{
    color:#fff;
    font-size:52px;
    line-height:1.05;
    margin-bottom:20px;
    font-weight:800;
}

.podit-shows-hero p{
    color:rgba(255,255,255,0.92);
    font-size:18px;
    line-height:1.7;
}

/* GRID */

.podit-shows-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* CARD */

.podit-show-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:all .3s ease;
    border:1px solid #f1f1f1;
}

.podit-show-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(179,0,27,0.18);
}

/* IMAGE FIX (NO CROPPING) */

.podit-show-image{
    width:100%;
    aspect-ratio: 16 / 9;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.podit-show-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#f5f5f5;
}

/* CONTENT */

.podit-show-content{
    padding:30px;
}

.podit-show-meta{
    font-size:14px;
    font-weight:700;
    color:#b3001b;
    margin-bottom:14px;
}

.podit-show-title{
    margin:0 0 16px;
    font-size:28px;
    font-weight:800;
    line-height:1.2;
}

.podit-show-title a{
    color:#111;
    text-decoration:none;
}

.podit-show-title a:hover{
    color:#b3001b;
}

.podit-show-description{
    color:#666;
    line-height:1.8;
    font-size:16px;
    margin-bottom:26px;
}

/* BUTTON */

.podit-show-button{
    display:inline-block;
    background:#b3001b;
    color:#fff;
    padding:14px 22px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:all .25s ease;
}

.podit-show-button:hover{
    background:#8d0015;
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:900px){
    .podit-shows-grid{
        grid-template-columns:1fr;
    }

    .podit-shows-hero{
        padding:50px 30px;
    }

    .podit-shows-hero h1{
        font-size:38px;
    }
}

