/* =====================================
   PODCAST LISTING
===================================== */

.gtxc-podcast-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.gtxc-podcast-card {
    background: #0d0d0d;
    border: 1px solid #4B330F;
    border-radius: 10px;
    overflow: hidden;
    transition: all .35s ease;
    position: relative;
    padding: 20px;
}



.gtxc-podcast-thumb {
    height: 260px;
    overflow: hidden;
}

.gtxc-podcast-thumb img {
    width: 100%;
    height: 250px !important;
    object-fit: contain;
    transition: .5s;
    border: 1px solid #4B330F !important;
    border-radius: 10px !important;
}

.gtxc-podcast-content {
    padding: 20px 0px;
}

.gtxc-featured-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: linear-gradient(90deg,
            #986d2c 0%,
            #e3a343 44.5%,
            #986d2c 100%) !important;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gtxc-episode-number {
    display: block;
    color: #C38C38;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gtxc-podcast-epi-name-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin: 10px 0px;
    border-bottom: 1px dashed #4B330F;
}


.gtxc-podcast-title {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 10px;
}

.gtxc-podcast-subtitle {
    color: #C38C38;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: capitalize;
}

.gtxc-podcast-description {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.gtxc-podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.gtxc-podcast-meta span {
    background: #6D4C1A;
    border: 1px solid #6D4C1A;
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
}

.gtxc-podcast-host {
    color: #ddd;
    font-size: 14px;
    font-weight: 700;
}

.gtxc-podcast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    background: linear-gradient(90deg, #986d2c 0%, #e3a343 44.5%, #986d2c 100%);
    color: #fff;
    height: 50px;
    border-radius: 5px;
    font-weight: 600;
    transition: .3s;
}

.gtxc-podcast-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media(max-width:768px) {

    .gtxc-podcast-wrapper {
        grid-template-columns: 1fr;
    }

    .gtxc-podcast-title {
        font-size: 24px;
    }
}









/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */




/* =====================================
   SINGLE PODCAST PAGE
===================================== */

.gtxc-single-podcast {
    background: #000;
    color: #fff;
    padding-bottom: 80px;
}

/* =====================================
   BANNER
===================================== */

.gtxc-single-podcast .gtxc-podcast-banner {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.gtxc-single-podcast .gtxc-podcast-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            #000 5%,
            rgba(0, 0, 0, .2));
}

.gtxc-single-podcast .gtxc-podcast-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gtxc-single-podcast .gtxc-podcast-container {
    max-width: 1400px;
    margin: -120px auto 0;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

/* =====================================
   HEADER
===================================== */

.gtxc-single-podcast .gtxc-podcast-header {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.gtxc-single-podcast .gtxc-podcast-thumb img {
    width: 100%;
    border-radius: 24px;
    border: 2px solid rgba(195, 140, 56, .25);
}

.gtxc-single-podcast .gtxc-featured-badge {
    display: inline-flex;
    background: linear-gradient(90deg, #986d2c 0%, #e3a343 44.5%, #986d2c 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.gtxc-single-podcast .gtxc-podcast-info h1 {
    font-family: "Playfair Display", serif;
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #fff;
}

.gtxc-single-podcast .gtxc-podcast-info h2 {
    color: #C38C38;
    font-size: 20px;
    margin-bottom: 25px;
}

.gtxc-single-podcast .gtxc-podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gtxc-single-podcast .gtxc-podcast-meta span {
    padding: 5px 15px;
    border-radius: 5px;
    background: #6D4C1A;
    text-transform: capitalize;
}

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

.gtxc-single-podcast .gtxc-media-section,
.gtxc-single-podcast .gtxc-short-description,
.gtxc-single-podcast .gtxc-full-description,
.gtxc-single-podcast .gtxc-host-section,
.gtxc-single-podcast .gtxc-chapters,
.gtxc-single-podcast .gtxc-streaming-links {
    background: #111;
    border: 1px solid #4B330F;
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 30px;
}

.gtxc-single-podcast .gtxc-media-section h3,
.gtxc-single-podcast .gtxc-short-description h3,
.gtxc-single-podcast .gtxc-full-description h3,
.gtxc-single-podcast .gtxc-host-section h3,
.gtxc-single-podcast .gtxc-chapters h3,
.gtxc-single-podcast .gtxc-streaming-links h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: #C38C38;
    margin-bottom: 20px;
}

/* =====================================
   AUDIO
===================================== */

.gtxc-single-podcast .gtxc-media-section audio {
    width: 100%;
}

.gtxc-single-podcast .gtxc-download-btn {
    display: inline-flex;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #986d2c 0%, #e3a343 44.5%, #986d2c 100%);
    text-decoration: underline;
    border-radius: 5px;
}

.gtxc-single-podcast .gtxc-download-btn:hover {
    background: #C38C38;
    text-decoration: none;
}

/* =====================================
   VIDEO
===================================== */

.gtxc-single-podcast .gtxc-media-section video {
    width: 100%;
    border-radius: 10px;
    height: 700px;
    border: 1px solid #4B330F;
}

/* =====================================
   DESCRIPTION
===================================== */

.gtxc-single-podcast .gtxc-short-description p,
.gtxc-single-podcast .gtxc-full-description p {
    color: rgba(255, 255, 255, .85);
    line-height: 2;
}

/* =====================================
   HOST
===================================== */

.gtxc-single-podcast .gtxc-host-card {
    display: flex;
    align-items: center;
    gap: 25px;
}

.gtxc-single-podcast .gtxc-host-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C38C38;
}

.gtxc-single-podcast .gtxc-host-card p {
    margin: 8px 0;
    font-size: 16px;
}

/* =====================================
   CHAPTERS
===================================== */

.gtxc-single-podcast .chapter {
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    margin-bottom: 20px;
    border-left: 4px solid #C38C38;
}

.gtxc-single-podcast .chapter strong {
    color: #C38C38;
    display: inline-block;
    min-width: 100px;
}

/* =====================================
   STREAMING LINKS
===================================== */

.gtxc-single-podcast .gtxc-streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.gtxc-single-podcast .gtxc-streaming-links a {
    padding: 7px 20px;
    text-decoration: underline;
    border-radius: 5px;
    background: linear-gradient(90deg,
            #986d2c 0%,
            #e3a343 44.5%,
            #986d2c 100%) !important;
    color: #fff;
    font-weight: 600;
}

.gtxc-single-podcast .gtxc-streaming-links a:hover {
    text-decoration: none !important;
    background: #C38C38 !important;
}

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

@media(max-width:1024px) {

    .gtxc-single-podcast .gtxc-podcast-header {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .gtxc-single-podcast .gtxc-podcast-info h1 {
        font-size: 40px;
    }

    .gtxc-single-podcast .gtxc-podcast-banner {
        height: 350px;
    }


    .gtxc-single-podcast .gtxc-media-section video {
        height: 500px;
    }

}

@media(max-width:768px) {

    .gtxc-single-podcast .gtxc-podcast-info h1 {
        font-size: 30px;
    }

    .gtxc-single-podcast .gtxc-media-section,
    .gtxc-single-podcast .gtxc-short-description,
    .gtxc-single-podcast .gtxc-full-description,
    .gtxc-single-podcast .gtxc-host-section,
    .gtxc-single-podcast .gtxc-chapters,
    .gtxc-single-podcast .gtxc-streaming-links {
        padding: 20px;
    }

    .gtxc-single-podcast .gtxc-media-section h3,
    .gtxc-single-podcast .gtxc-short-description h3,
    .gtxc-single-podcast .gtxc-full-description h3,
    .gtxc-single-podcast .gtxc-host-section h3,
    .gtxc-single-podcast .gtxc-chapters h3,
    .gtxc-single-podcast .gtxc-streaming-links h3 {
        font-size: 30px;
    }

    .gtxc-single-podcast .gtxc-media-section video {
        height: 400px;
    }

}



@media(max-width:468px) {

    .gtxc-single-podcast .gtxc-podcast-info h2 {
        font-size: 18px;
    }



    .gtxc-single-podcast .gtxc-podcast-info h1 {
        font-size: 28px;
    }

    .gtxc-single-podcast .gtxc-media-section h3,
    .gtxc-single-podcast .gtxc-short-description h3,
    .gtxc-single-podcast .gtxc-full-description h3,
    .gtxc-single-podcast .gtxc-host-section h3,
    .gtxc-single-podcast .gtxc-chapters h3,
    .gtxc-single-podcast .gtxc-streaming-links h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .gtxc-single-podcast .gtxc-media-section video {
        height: 300px;
    }


    .gtxc-single-podcast .gtxc-host-card img {
        width: 90px;
        height: 90px;
    }


    .gtxc-single-podcast .chapter {
        padding: 10px 15px;
    }


    .gtxc-single-podcast .gtxc-streaming-links {
        flex-direction: column;
    }

	.gtxc-single-podcast .gtxc-streaming-links h3{
		margin-bottom:5px;
	}


}