/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


.episode-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
.entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child){
	margin-top:0px;
}

.season-dropdown-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.season-dropdown {
    width: 200px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.episode-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    border: none;
    transition: transform 0.2s ease;
    align-items: baseline;
	text-decoration:none;
}

.episode-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0 auto;
}

.episode-item:hover {
    transform: translateY(-5px);
}

.one-container .inside-article>.featured-image{
	display:none;
}
.episode-item .episode-number {
    font-size: 12px;
    font-weight: bold;
    margin: 10px 10px 5px 10px;
    color: #333;
}

.episode-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 10px 5px 10px;
}

.episode-item p {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    margin: 0 10px 10px 10px;
}

.loading-indicator {
    display: none;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 20px 0;
}

.loading-active {
    display: block; /* Show the loader when active */
}

@media (max-width: 600px) {
    .episode-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 601px) {
    .episode-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .episode-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
.container {
    width: 100%;
    margin: 0 auto;
}
.container1 {
    padding: 20px;
    width: 100%;
	max-width:1000px;
    margin: 0 auto;
    text-align: center;
}

/* Video Player Wrapper */
.video-wrapper {
    margin-bottom: 20px;
}

iframe {
    width: 70%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Controls Section */
.controls {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.controls a {
    padding: 10px 20px;
    color: #ffffff;
	background:black;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.controls1 a {
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.controls a:hover {
    background: #9e3cb3;
}

/* Responsive Design */
@media (max-width: 600px) {
    iframe {
        height: 250px;
		width: 100%
    }

    .controls a {
        padding: 8px 15px;
        font-size: 14px;
    }
	h1{
		font-size:30px;
	}
	.container{
		font-size:15px;
	}

@media (max-width: 400px) {
    iframe {
        height: 200px;
		width: 100%
    }

    .controls {
        flex-direction: column;
        gap: 5px;
    }

    .controls a {
        width: 100%;
    }
}

