/*
Theme Name: The Deen Show
Theme URI: https://www.thedeenshow.com
Author: Abdul Wahid
Author URI: https://www.thedeenshow.com
Description: A custom WordPress theme for The Deen Show video platform. This theme contains only the front-end design and rss feed for podcast.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deen
Tags: responsive, custom-menu, featured-images, video-platform
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
}

/* Typography - Poppins for headings (matching arabictees.com) */
h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.page-title,
.widget-title,
.section-title {
    font-family: 'Poppins', sans-serif;
}

/* Heading colors */
h1, h2 {
    color: #181818;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0073aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00a0d2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Site Content */
.site-content {
    /* Base padding removed - added only to specific page types below */
}

/* Add top padding to single posts and pages on desktop only, but not homepage */
@media (min-width: 768px) {
    .single .site-content,
    .page:not(.home):not(.front-page) .site-content {
        padding-top: 30px;
    }
}

/* Top Bar */
.top-bar {
    background-color: #000;
    padding: 8px 10px;
    color: #fff;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Support Section - Top Right */
.support-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.support-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.support-subtitle {
    color: #ccc;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 2px;
}

.support-button {
    background-color: #0be6af;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.support-button:hover {
    background-color: #0ac896;
    color: #fff;
    text-decoration: none;
}

/* Hide support text on mobile, keep button visible */
@media (max-width: 767px) {
    .support-text {
        display: none;
    }
    
    .support-button {
        display: inline-block;
        font-size: 12px;
    }
    
    .header-menu a {
        font-size: 12px !important;
    }
}

/* Reset all top link styles and ensure no underlines */
.top-link, .top-links a, .top-links div, .top-links span {
    text-decoration: none !important;
    border-bottom: none !important;
    background: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* New top link styles with no possibility of underlines */
.top-links {
    display: flex;
    gap: 10px;
}

.top-link {
    cursor: pointer;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    padding: 0 5px;
    position: relative;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.top-link:hover, .top-link:focus, .top-link:active {
    text-decoration: none;
    color: #fff;
}

/* Header Menu */
.header-menu-container {
    display: flex;
    align-items: flex-start;
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    align-items: flex-start;
}

.header-menu li {
    margin: 0;
    display: flex;
    align-items: flex-start;
}

.header-menu a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding: 0 5px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    vertical-align: top;
}

.header-menu a:hover,
.header-menu a:focus,
.header-menu a:active {
    text-decoration: none;
    color: #fff;
}

/* Header */
.site-header {
    background-color: #000;
    padding: 10px 0 30px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    padding-left: 10px;
}


/* Main Navigation */
.main-navigation {
    background-color: #000;
    padding: 0;
    margin-top: 0;
    border-top: none;
}

.main-menu-container {
    display: block;
    position: static;
    padding: 0;
    width: 100%;
    background-color: #000;
}

/* Menu Search Wrapper */
.menu-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.primary-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 10px;
    gap: 10px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    background-color: #000;
    justify-content: flex-start;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    color: #fff;
    font-weight: 720;
    padding: 8px 12px;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    border-bottom: none !important;
    text-decoration: none;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70% !important;
    height: 2px;
    background-color: #ff005b;
    transition: all 0.3s ease;
    display: block !important;
}

.primary-menu li:nth-child(1) a::after {
    background-color: #ff005b !important;
}

.primary-menu li:nth-child(2) a::after {
    background-color: #3498db !important;
}

.primary-menu li:nth-child(3) a::after {
    background-color: #2ecc71 !important;
}

/* Navigation Search */
.nav-search {
    display: flex;
    align-items: center;
    margin-left: 10px;
    position: relative; /* Ensure proper positioning */
}

.nav-search-toggle {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background-color: #333;
    border-radius: 4px;
    margin-left: 15px;
    position: relative;
    z-index: 101;
}

.search-text {
    font-size: 14px;
}

.nav-search-box {
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #000;
    padding: 10px;
    z-index: 100;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-search-box.active {
    width: 300px;
    display: flex;
}

.nav-search-form {
    display: flex;
    width: 100%;
    align-items: center;
}

.nav-search-field {
    width: 100%;
    padding: 8px 12px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.nav-search-submit {
    background-color: #ff005b;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    margin-left: -1px;
}

.nav-search-close {
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    color: #fff;
    font-size: 16px;
}

/* Featured Video Section */
.featured-video-section {
    background-color: #000;
    margin-bottom: 30px;
}

/* Add bottom padding to featured video section on homepage only */
.home .featured-video-section,
.front-page .featured-video-section {
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .featured-video-section {
        margin-bottom: 0;
    }
}

.featured-video-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
}

.video-embed {
    position: relative;
    flex: 0 0 66.67%;
    max-width: 66.67%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video-info {
    background-color: #000;
    color: #fff;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.featured-video-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.featured-video-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-top: 15px;
}

.featured-video-description .description-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7 !important;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    max-height: none;
}

.featured-video-description .description-text p {
    margin-bottom: 0.5em;
}

.featured-video-description .description-text p:last-child {
    margin-bottom: 0;
}

.read-more-link {
    display: inline-block;
    color: #0be6af;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #0ac99a;
    text-decoration: underline;
}

/* Mobile responsive for featured video */
@media (max-width: 767px) {
    .featured-video-section {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .featured-video-wrapper {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        margin: 0;
    }
    
    .video-embed {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: auto;
    }
    
    .featured-video-info {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 15px 15px 0 15px;
        margin-top: 0;
    }
    
    .featured-video-label {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        padding: 0 15px;
        text-align: center;
    }
    
    .featured-video-title {
        display: none;
}

.featured-episode-number {
        display: none !important;
    }
    
    .featured-video-description {
    display: block;
        margin-top: 15px;
    }
    
    .featured-video-description .description-text {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.6;
        color: #ccc;
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .read-more-link {
        display: inline-block;
        color: #0be6af;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        margin-top: 5px;
    }
    
    .read-more-link:hover {
        color: #0ac99a;
        text-decoration: underline;
    }
}

.featured-video-label {
    display: none;
}

.featured-episode-number {
    display: block;
    font-size: 13px;
    color: #b3002d;
    font-weight: 500;
}

/* Shows Grid Section */
.tabs-section {
    padding: 20px 0;
}

.tabs-container {
    margin-bottom: 30px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Video Card */
.video-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    display: block;
    width: 100%;
    background-color: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.play-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.episode-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 2;
}

.video-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    height: auto !important;
}

.video-meta {
    font-size: 14px;
    color: #777;
}

.video-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 30px;
}

.load-more-btn {
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.load-more-btn:hover {
    background-color: #eee;
}

/* Support Mission Section */
.support-mission-section {
    padding: 30px 0;
    background-color: #f9f9f9;
    margin-bottom: 30px;
}

.support-mission-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.support-mission-text {
    flex: 1;
}

.support-mission-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.support-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.btn-primary {
    background-color: #ff005b;
    color: #fff;
}

.btn-secondary {
    background-color: #333;
    color: #fff;
}

.support-mission-image {
    flex: 1;
}

.support-mission-image img {
    border-radius: 8px;
    width: 100%;
}

/* About Eddie Section */
.about-eddie-section {
    padding: 80px 20px;
    background-color: #000;
    border-top: 1px solid #333;
}

.about-eddie-heading {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.about-eddie-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-eddie-image {
    flex: 0 0 600px;
    text-align: center;
}

.about-eddie-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-eddie-content {
    flex: 1 1 auto;
    text-align: left;
}

.about-eddie-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.more-about-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.more-about-link:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

@media (max-width: 767px) {
    .about-eddie-section {
        padding: 50px 15px;
    }
    
    .about-eddie-heading {
        font-size: 26px;
        margin-bottom: 30px;
        color: #fff;
    }
    
    .about-eddie-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-eddie-image {
        flex: 0 0 auto;
        max-width: 250px;
    }
    
    .about-eddie-content {
        text-align: center;
    }
    
    .about-eddie-content p {
        font-size: 16px;
        color: #fff;
    }
    
    .more-about-link {
        font-size: 14px;
        padding: 10px 25px;
        color: #fff;
        border-color: #fff;
    }
    
    .more-about-link:hover {
        background-color: #fff;
        color: #000;
    }
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-site-logo {
    max-height: 40px;
    width: auto;
}

.footer-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ff005b;
}


.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

/* Social media brand colors */
.footer-youtube {
    background-color: #FF0000;
}

.footer-youtube:hover {
    background-color: #cc0000;
}

.footer-apple {
    background-color: #872EC4;
}

.footer-apple:hover {
    background-color: #6d24a0;
}

.footer-spotify {
    background-color: #1DB954;
}

.footer-spotify:hover {
    background-color: #1aa34a;
}

.footer-castbox {
    background-color: #F55B23;
}

.footer-castbox:hover {
    background-color: #d44a1c;
}

.footer-instagram {
    background-color: #E4405F;
}

.footer-instagram:hover {
    background-color: #c9354f;
}

.footer-twitter {
    background-color: #1DA1F2;
}

.footer-twitter:hover {
    background-color: #1a8cd8;
}

.footer-facebook {
    background-color: #1877F2;
}

.footer-facebook:hover {
    background-color: #1565c7;
}

.site-info {
    background-color: #111;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    width: 100%;
    margin: 0;
}

.site-info p {
    margin: 0;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Styles */
@media (max-width: 767px) {
    /* Mobile Container */
    .container {
        padding: 0;
    }
    
    /* Mobile Entry Title */
    .entry-title {
        font-size: 22px !important;
    }
    
    /* Mobile H2 */
    .entry-content h2,
    .single .entry-content h2,
    .page .entry-content h2 {
        font-size: 18px !important;
    }
    
    /* Mobile HR - reduce padding */
    .entry-content hr,
    .single .entry-content hr,
    .page .entry-content hr {
        margin: 1.5em 0 !important;
    }
    
    /* Mobile Paragraph - reduce padding slightly */
    .entry-content p,
    .single .entry-content p,
    .page .entry-content p {
        margin-bottom: 1.2em !important;
    }
    
    /* Mobile Images - center in description */
    .entry-content img,
    .single .entry-content img,
    .page .entry-content img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile List Items - reduce padding */
    .entry-content li,
    .single .entry-content li,
    .page .entry-content li {
        margin-bottom: 0 !important;
    }
    
    /* Mobile Video Grid - rounded corners */
    .video-grid .video-thumbnail,
    .video-grid .video-thumbnail img,
    .archive-grid .video-thumbnail,
    .archive-grid .video-thumbnail img,
    .search-results-grid .video-thumbnail,
    .search-results-grid .video-thumbnail img {
        border-radius: 8px;
    }
    
    /* Mobile Support Mission Text / Membership Description */
    .support-mission-text p,
    .membership-description {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    
    /* Mobile Video Title */
    .video-title {
        line-height: 1.3 !important;
    }
    
    /* Mobile LISTEN and FOLLOW Sections */
    .listen-follow-sections {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
        padding: 0 15px;
    }
    
    .listen-section,
    .follow-section {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .listen-section .section-title,
    .follow-section .section-title {
        font-size: 14px;
        font-weight: 700;
        color: #181818;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0;
    }
    
    .listen-platforms-list,
    .follow-platforms-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .listen-platform-link,
    .follow-platform-link {
        display: inline-block;
        padding: 8px 16px;
        background-color: transparent;
        color: #333;
        text-decoration: none;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .listen-platform-link:hover,
    .follow-platform-link:hover {
        background-color: #f5f5f5;
        border-color: #ccc;
        color: #000;
    }
    
    /* Hide "Search" text on mobile, keep only icon */
    .search-submit {
        font-size: 0;
        padding: 0 15px;
    }
    
    .search-submit i {
        font-size: 16px;
    }
    
    /* Mobile Logo - 20% smaller */
    .site-logo {
        max-width: 90% !important;
        max-height: 90% !important;
        transform: scale(0.8);
        transform-origin: left center;
    }
    
    /* Mobile Header */
    .site-header {
        background-color: #000;
        padding: 10px 0 30px 0;
    }
    
    .menu-toggle {
        display: none !important;
    }
    
    .screen-reader-text {
        clip: rect(1px, 1px, 1px, 1px);
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }
    
    .menu-toggle-icon {
        display: flex;
        flex-direction: column;
        width: 24px;
        height: 18px;
        justify-content: space-between;
    }
    
    .menu-toggle-icon span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .main-navigation.toggled .menu-toggle-icon span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    
    .main-navigation.toggled .menu-toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .main-navigation.toggled .menu-toggle-icon span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    
    .main-menu-container {
        display: block !important;
        position: static;
        background-color: transparent;
        padding: 0;
        width: 100%;
    }
    
    .primary-menu {
        flex-direction: row;
        gap: 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .primary-menu li {
        margin-right: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .primary-menu a {
        display: block;
        padding: 8px 12px;
        white-space: nowrap;
    }
    
    /* Mobile Mission Bar */
    .mission-support-bar {
        background-color: #000;
        padding: 8px 10px;
    }
    
    .mission-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mission-links {
        margin-top: 8px;
        flex-wrap: wrap;
    }
    
    /* Mobile Video Grid */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Mobile Video Card */
    .video-card {
        display: flex;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee;
        align-items: flex-start;
    }
    
    .video-thumbnail {
        width: 40%;
        padding-top: 0;
        height: auto;
        aspect-ratio: 16/9;
        flex-shrink: 0;
    }
    
    .video-content {
        width: 60%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-width: 0;
        align-self: flex-start;
    }
    
    .video-title {
        font-size: 14px;
        margin-bottom: 5px;
        margin-top: 0;
        line-height: 1.5;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        height: auto !important;
        width: 100% !important;
        max-height: calc(1.5em * 4) !important;
    }
    
    .video-meta {
        font-size: 12px;
    }
    
    .play-icon {
        display: none;
    }
    
    .episode-number {
        top: 5px;
        left: 5px;
        padding: 2px 5px;
        font-size: 10px;
    }
    
    /* Mobile Support Mission */
    .support-mission-content {
        flex-direction: column;
    }
    
    /* Mobile Footer */
    .footer-top {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-menu {
        order: 2;
        justify-content: center;
    }
    
    .footer-menu ul {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social {
        order: 3;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 0;
        width: 100%;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    /* Remove white background from site content */
    .site-content {
        background-color: transparent;
    }
    
    /* Remove top padding from single posts and pages on mobile/tablet */
    .single .site-content,
    .page:not(.home):not(.front-page) .site-content {
        padding-top: 0;
    }
    
    /* Ensure homepage has no top padding */
    .home .site-content,
    .front-page .site-content {
        padding-top: 0 !important;
    }
} 

/* Single Post Mobile Styles */
@media (max-width: 767px) {
    .single .entry-header {
        margin: 0 0 15px 0;
        padding: 0 10px;
    }
    
    .single .entry-title {
        font-size: 20px;
        line-height: 1.3;
        margin: 0 0 10px 0;
        padding: 0;
    }
    
    .single .entry-meta {
        font-size: 12px;
        margin: 0 0 10px 0;
        padding: 0;
    }
    
    .single .entry-content {
        padding: 0 10px 30px 10px;
    }
    
    .single .entry-content ul,
    .single .entry-content ol {
        margin-left: 20px;
        margin-bottom: 1em;
        padding-left: 20px;
    }
    
    .single .entry-content li {
        margin-bottom: 0.5em;
        line-height: 1.6;
    }
    
    .single .entry-footer {
        margin: 0 10px;
    }
    

    
    .page .entry-content p,
    .single .entry-content p {
        margin-bottom: 1.25em;
    }
    
    .page .entry-content h1,
    .single .entry-content h1 {
        font-size: 1.75em;
        margin-top: 1.5em;
        margin-bottom: 0.75em;
    }
    
    .page .entry-content h2,
    .single .entry-content h2 {
        font-size: 1.5em;
        margin-top: 1.5em;
        margin-bottom: 0.75em;
    }
    
    .page .entry-content h3,
    .single .entry-content h3 {
        font-size: 1.25em;
        margin-top: 1.25em;
        margin-bottom: 0.5em;
    }
    
    .page .entry-content hr,
    .single .entry-content hr {
        margin: 2em 0;
    }
    
    .page .entry-content blockquote,
    .single .entry-content blockquote {
        margin: 1.25em 0;
        padding: 0.75em 1em;
        padding-left: 1.5em;
    }
    
    
    .single-video-wrapper {
        display: block;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .single-video-main {
        flex: none;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .single-video-main article.single-video {
        margin: 0;
        padding: 0;
    }
    
    .single-video-sidebar {
        flex: none;
        max-width: 100%;
        width: 100%;
        position: static;
        margin-top: 20px;
        padding: 0 15px 30px 15px;
    }
    
    .single .video-container {
        margin: 0;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .single .video-meta-section {
        margin: 0 !important;
        margin-bottom: 0px !important;
        padding: 0 10px 10px 10px;
    }
    
    .single .mp3-player-standalone {
        margin: 0 0 15px 0;
        padding: 0 15px;
    }
    
    .single .video-embed,
    .single .youtube-embed {
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 56.25%;
        box-sizing: border-box;
    }
    
    .single .video-embed iframe,
    .single .youtube-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .single-video-sidebar {
        margin-top: 20px;
        padding-bottom: 30px;
    }
    
    .single-video-sidebar .related-videos {
        margin: 0;
        padding: 0;
    }
    
    .single-video-sidebar .related-videos .section-title {
        font-size: 18px;
        margin: 0 0 15px 0;
        padding: 0;
    }
    
    .single-video-sidebar .related-video-list {
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    /* Match homepage video card mobile styles exactly */
    .single-video-sidebar .related-video-card {
        display: flex;
        gap: 0;
        margin: 0;
        padding: 0;
        background: #fff;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee;
        align-items: stretch;
    }
    
    .single-video-sidebar .related-video-card:last-child {
        border-bottom: none;
    }
    
    .single-video-sidebar .related-video-thumbnail {
        width: 40%;
        padding-top: 0;
        height: auto;
        aspect-ratio: 16/9;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }
    
    .single-video-sidebar .related-video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .single-video-sidebar .related-video-thumbnail .play-icon {
        display: none;
    }
    
    .single-video-sidebar .related-video-content {
        width: 60%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .single-video-sidebar .related-video-title {
        font-size: 14px;
        margin: 0 0 5px 0;
        padding: 0;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        font-weight: 600;
    }
    
    .single-video-sidebar .related-video-title a {
        color: #333;
        text-decoration: none;
    }
    
    .single-video-sidebar .related-video-meta {
        font-size: 12px;
        margin: 0;
        padding: 0;
        color: #777;
    }
    
    .single-video-sidebar .related-video-date {
        color: #777;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .single-video-wrapper {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
    }
    
    .single-video-main {
        flex: 0 0 60%;
        max-width: 60%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .single-video-sidebar {
        flex: 0 0 40%;
        max-width: 40%;
        position: sticky;
        top: 20px;
        align-self: flex-start;
        padding-bottom: 30px;
    }
    
    .single .video-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .single .video-embed,
    .single .youtube-embed {
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 56.25%;
        box-sizing: border-box;
    }
    
    .single .video-embed iframe,
    .single .youtube-embed iframe {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .single-video-sidebar .related-video-list {
        gap: 12px;
    }
    
    .single-video-sidebar .related-video-thumbnail {
        flex: 0 0 38%;
    }
}

/* Mobile: Single column layout */
@media (max-width: 767px) {
    .header-menu a {
        font-size: 12px !important;
    }
    
    .support-button {
        font-size: 12px !important;
    }
    
    .single-video-wrapper {
        display: block;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .single-video-main {
        flex: none;
        max-width: 100%;
        width: 100%;
        display: block;
    }
    
    .single-video-sidebar {
        flex: none;
        max-width: 100%;
        width: 100%;
        position: static;
        margin-top: 30px;
        display: block;
        padding-bottom: 30px;
    }
    
    .single .video-downloads {
        padding: 10px;
    }
    
    .single .mp3-player-container {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .single .mp3-player {
        height: 44px;
    }
    
    .single .video-meta-top {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-bottom: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
    }
    
    .single .view-count {
        display: block !important;
        flex: 0 0 auto;
    }
    
    .single .listen-platforms-icons.desktop-socials {
        display: flex !important;
        margin-left: auto;
        gap: 4px;
    }
    
    .single .listen-platforms-icons.desktop-socials .social-platform-button {
        display: none !important;
    }
    
    .single .listen-platforms-icons.desktop-socials .share-button,
    .single .listen-platforms-icons.desktop-socials .download-button-popup {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .single .listen-platforms-icons .share-button,
    .single .listen-platforms-icons .download-button-popup {
        background-color: transparent !important;
        color: #666 !important;
        width: auto;
        height: 40px;
        padding: 0 14px;
        margin: 0;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 18px;
        font-size: 14px;
        font-weight: 500;
        box-sizing: border-box;
        min-width: auto;
        min-height: 40px;
        border: none;
        text-decoration: none;
        vertical-align: middle;
        white-space: nowrap;
        box-shadow: none !important;
        text-shadow: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .single .listen-platforms-icons .share-button i,
    .single .listen-platforms-icons .download-button-popup i {
        font-size: 18px;
        margin-right: 0;
        color: #666 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    .single .listen-platforms-icons .share-button:hover,
    .single .listen-platforms-icons .download-button-popup:hover {
        background-color: transparent !important;
        color: #666 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .single .listen-platforms-icons.mobile-socials {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin: 20px 0;
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .single .listen-platforms-icons.mobile-socials .social-platform-button {
        background-color: #e0e0e0 !important;
        color: #333 !important;
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        font-size: 16px;
        box-sizing: border-box;
        text-decoration: none;
    }
    
    .single .listen-platforms-icons.mobile-socials .social-platform-button i {
        font-size: 18px;
        color: #333 !important;
    }
    
    .single .listen-platforms-icons.mobile-socials .social-platform-button:hover {
        background-color: #d0d0d0 !important;
    }
    
    .single .listen-platforms-icons::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .single .listen-platforms-icons .social-platform-button,
    .single .listen-platforms-icons .share-button,
    .single .listen-platforms-icons .download-button-popup {
        background-color: transparent !important;
        color: #666 !important;
        width: auto;
        height: 40px;
        padding: 0 14px;
        margin: 0;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 18px;
        font-size: 14px;
        font-weight: 500;
        box-sizing: border-box;
        min-width: auto;
        min-height: 40px;
        border: none;
        text-decoration: none;
        vertical-align: middle;
        white-space: nowrap;
        box-shadow: none !important;
        text-shadow: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .single .listen-platforms-icons .social-platform-button i,
    .single .listen-platforms-icons .share-button i,
    .single .listen-platforms-icons .download-button-popup i {
        font-size: 18px;
        margin-right: 0;
        color: #666 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    .single .listen-platforms-icons .social-platform-button:hover,
    .single .listen-platforms-icons .share-button:hover,
    .single .listen-platforms-icons .download-button-popup:hover {
        background-color: transparent !important;
        color: #666 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .listen-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .listen-platforms {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .download-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .download-options {
        padding: 12px;
    }
    
    .download-option {
        padding: 14px;
    }
    
    .single .mp3-player-compact {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .single .mp3-player-compact .mp3-player {
        height: 48px;
    }
    
    .single .mp3-player-info-compact {
        font-size: 11px;
        gap: 10px;
    }
    
    .single .download-links {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .single .download-button {
        padding: 12px 14px;
    }
    
    .single .download-button i {
        font-size: 15px;
    }
    
    .single .download-button .download-text {
        font-size: 13px;
    }
    
    .single .download-button .download-size {
        font-size: 10px;
    }
} 

/* Archive Page */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}

.archive .video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    display: block;
}

.archive .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Archive Header and Search */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #181818;
    text-transform: uppercase;
}

.archive-description {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.archive-search {

    padding: 15px;
}

.search-input-wrapper {
    display: flex;
    position: relative;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-field:focus {
    border-color: #ff005b;
}

.search-submit {
    background-color: #ff005b;
    color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    font-size: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-submit i {
    font-size: 16px;
}

.search-submit:hover {
    background-color: #c0392b;
}

/* Improved Pagination */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.pagination {
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background-color: #ff005b;
    color: #fff;
    border-color: #ff005b;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.pagination .prev,
.pagination .next {
    padding: 8px 16px;
    font-weight: 500;
}

.page-count {
    font-size: 14px;
    color: #777;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 30px;
}

.no-results h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.no-results p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Views */
.video-views {
    display: inline-flex;
    align-items: center;
    color: #777;
    font-size: 14px;
}

.video-views i {
    margin-right: 5px;
    font-size: 12px;
} 

/* Related Videos */
.related-videos {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.related-videos .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #181818;
}

.related-videos .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-videos .video-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-videos .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-videos .video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    display: block;
}

.related-videos .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-videos .video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.related-videos .video-content {
    padding: 15px;
}

.related-videos .video-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-videos .video-meta {
    font-size: 14px;
    color: #777;
}

/* Mobile styles for related videos */
@media (max-width: 767px) {
    .related-videos .video-grid {
        display: block;
    }
    
    .related-videos .video-card {
        display: flex;
        padding: 10px;
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
        border-radius: 0;
        box-shadow: none;
    }
    
    .related-videos .video-thumbnail {
        width: 40%;
        padding-top: 0;
        height: 80px;
        flex-shrink: 0;
    }
    
    .related-videos .video-content {
        width: 60%;
        padding-left: 10px;
    }
    
    .related-videos .video-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
} 

/* Desktop Header Styles */
@media (min-width: 768px) {
    /* Hide menu toggle on desktop */
    .menu-toggle {
        display: none !important;
    }
    
    /* Header layout to position menu and support button to the right */
    .site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-branding {
        flex: 0 0 auto;
    }
    
    .header-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }
    
    /* Make logo bigger - 30% larger with right gap */
    .site-logo {
        max-width: 234px;
        height: auto;
        margin-right: 30px;
    }
    
    /* Move primary menu to the right */
    .main-navigation {
        background-color: transparent;
        padding: 0;
        margin: 0;
        width: auto;
    }
    
    .main-menu-container {
        margin-left: auto;
        width: auto;
    }
    
    .menu-search-wrapper {
        justify-content: flex-end;
    }
    
    /* Primary Menu - Desktop Styles - CLEANED UP */
    .primary-menu {
        justify-content: flex-end !important;
        padding: 10px 15px !important;
        margin-left: auto !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .primary-menu a {
        font-size: 24px !important;
        color: #fff !important;
        font-weight: 750 !important;
    }
    
    .primary-menu li {
        margin: 0 !important;
    }
    
    /* Desktop support button */
    .desktop-support-button {
        display: block;
    }
    
    .desktop-support-button .support-button {
        padding: 8px 15px;
        font-size: 16px;
        font-weight: 600;
    }
    
    /* Hide top bar support button on desktop */
    .top-bar .support-button-wrap {
        display: none;
    }
} 

/* Mobile Menu Adjustments - CONSOLIDATED */
@media (max-width: 767px) {
    .primary-menu {
        padding: 0;
        gap: 5px;
        margin: 0;
    }
    
    .primary-menu a {
        padding: 5px 8px;
        font-size: 14px;
        margin: 0;
        font-weight: 600;
    }
    
    .primary-menu li {
        margin: 0;
    }
    
    .primary-menu li:not(:last-child) {
        margin-right: 5px;
    }
    
    .menu-search-wrapper {
        padding: 5px 0;
    }
    
    .menu-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 2px 0;
    }
    
    .mobile-support-button {
        margin-left: auto;
    }
    
    .mobile-support-button .support-button {
        padding: 3px 8px;
        font-size: 12px;
        font-weight: 600;
    }
} 

/* Mobile Top Bar Support Button */
@media (max-width: 767px) {
    .top-bar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .support-button-wrap {
        order: 2;
    }
    
    .top-links {
        order: 1;
    }
    
    .support-button {
        padding: 3px 8px;
        font-size: 14px;
        font-weight: 600;
    }
} 

/* Single Post Content Box Styles */


.single .entry-content {
    padding-bottom: 30px;
}

.single .entry-content ul,
.single .entry-content ol {
    margin-left: 20px;
    margin-bottom: 1em;
    padding-left: 20px;
}

.single .entry-content li {
    margin-bottom: 0;
    line-height: 1.6;
}

.single .entry-content ul li {
    list-style-type: disc;
}

.single .entry-content ol li {
    list-style-type: decimal;
}

.single .tags-links {
    font-size: 8px;
    color: #666;
}

.single .tags-links a {
    display: inline-block;
    background-color: #eee;
    color: #555;
    padding: 3px 8px;
    border-radius: 4px;
    margin: 0 4px 4px 0;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single .tags-links a:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Page Content Styles - Fix WordPress editor content */
.page .entry-content,
.single .entry-content {
    max-width: 100%;
    line-height: 1.8;
}

/* Paragraph spacing */
.page .entry-content p,
.single .entry-content p {
    margin-bottom: 1.5em;
    line-height: 1.5;
}

.page .entry-content p:last-child,
.single .entry-content p:last-child {
    margin-bottom: 0;
}

/* Fix H1 tags in content - style them as H2 since page title is already H1 */
.page .entry-content h1,
.single .entry-content h1 {
    font-size: 2em;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
    color: #000;
}

.page .entry-content h1:first-child,
.single .entry-content h1:first-child {
    margin-top: 0;
}

/* H2-H6 headings */
.page .entry-content h2,
.single .entry-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
    color: #000;
}

.page .entry-content h2:first-child,
.single .entry-content h2:first-child {
    margin-top: 0;
}

.page .entry-content h3,
.single .entry-content h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 1.75em;
    margin-bottom: 0.75em;
    line-height: 1.3;
    color: #000;
}

.page .entry-content h4,
.single .entry-content h4 {
    font-size: 1.25em;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    line-height: 1.3;
    color: #000;
}

.page .entry-content h5,
.single .entry-content h5 {
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 1.25em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    color: #000;
}

.page .entry-content h6,
.single .entry-content h6 {
    font-size: 1em;
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    color: #000;
}

/* HR tags with padding */
.page .entry-content hr,
.single .entry-content hr {
    margin: 2.5em 0;
    border: 0;
    border-top: 1px solid #ddd;
    padding: 0;
    clear: both;
}

/* Blockquotes with proper indentation */
.page .entry-content blockquote,
.single .entry-content blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    padding-left: 2em;
    border-left: 4px solid #0073aa;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.page .entry-content blockquote p,
.single .entry-content blockquote p {
    margin-bottom: 1em;
}

.page .entry-content blockquote p:last-child,
.single .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Blockquote citations */
.page .entry-content blockquote cite,
.single .entry-content blockquote cite {
    display: block;
    margin-top: 0.75em;
    font-size: 0.9em;
    font-style: normal;
    color: #666;
}

.page .entry-content blockquote cite:before,
.single .entry-content blockquote cite:before {
    content: "— ";
}

/* Lists */
.page .entry-content ul,
.page .entry-content ol,
.single .entry-content ul,
.single .entry-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
    line-height: 1.8;
}

.page .entry-content li,
.single .entry-content li {
    margin-bottom: 0;
}

.page .entry-content ul li,
.single .entry-content ul li {
    list-style-type: disc;
}

.page .entry-content ol li,
.single .entry-content ol li {
    list-style-type: decimal;
}

/* Nested lists */
.page .entry-content ul ul,
.page .entry-content ol ol,
.page .entry-content ul ol,
.page .entry-content ol ul,
.single .entry-content ul ul,
.single .entry-content ol ol,
.single .entry-content ul ol,
.single .entry-content ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Strong and emphasis */
.page .entry-content strong,
.single .entry-content strong {
    font-weight: 700;
    color: #000;
}

.page .entry-content em,
.single .entry-content em {
    font-style: italic;
}

/* Links in content */
.page .entry-content a,
.single .entry-content a {
    color: #0073aa;
    text-decoration: underline;
}

.page .entry-content a:hover,
.single .entry-content a:hover {
    color: #00a0d2;
    text-decoration: none;
}

/* Images */
.page .entry-content img,
.single .entry-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
}

/* YouTube-style Share Button */
.share-section {
    margin-top: 20px;
}

.share-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.share-button:hover {
    background-color: #333;
}

.share-button i {
    font-size: 16px;
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease;
}

.share-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.share-modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.share-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.share-modal-close:hover {
    background-color: #f0f0f0;
}

.share-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
}

.share-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
}

.share-platform:hover {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
}

.share-platform-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.share-platform[data-platform="facebook"] .share-platform-icon {
    background-color: #1877f2;
}

.share-platform[data-platform="twitter"] .share-platform-icon {
    background-color: #1da1f2;
}

.share-platform[data-platform="linkedin"] .share-platform-icon {
    background-color: #0077b5;
}

.share-platform[data-platform="whatsapp"] .share-platform-icon {
    background-color: #25d366;
}

.share-platform[data-platform="email"] .share-platform-icon {
    background-color: #666;
}

.share-platform[data-platform="reddit"] .share-platform-icon {
    background-color: #ff4500;
}

.share-platform span {
    font-size: 13px;
    font-weight: 400;
}

.share-url-section {
    padding: 16px 24px 24px;
    border-top: 1px solid #e0e0e0;
}

.share-url-section label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
}

.share-url-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.share-url-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #000;
}

.share-url-input:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

.share-copy-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.share-copy-btn:hover {
    background-color: #333;
}

.share-copy-feedback {
    display: none;
    font-size: 13px;
    color: #0f9d58;
    margin-top: 8px;
}

.share-copy-feedback.show {
    display: block;
}

/* Mobile styles for share modal */
@media (max-width: 767px) {
    .share-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .share-platforms {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
    }

    .share-platform {
        padding: 12px;
    }

    .share-platform-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .share-url-input-wrapper {
        flex-direction: column;
    }

    .share-copy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Improve entry header styles */
.single .entry-header {
    margin-bottom: 20px;
}

.single .entry-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.single .entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.single .entry-meta .posted-on {
    margin-right: 15px;
}

/* Video container styles */
/* Desktop: 2-column layout */
@media (min-width: 1025px) {
    .single-video-wrapper {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
    }

    .single-video-main {
        flex: 0 0 66%;
        max-width: 66%;
        width: 100%;
        min-width: 0; /* Prevents flex item from overflowing */
        box-sizing: border-box;
    }

    .single-video-main article.single-video {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .single-video-sidebar {
        flex: 0 0 34%;
        max-width: 34%;
        position: sticky;
        top: 20px;
        align-self: flex-start;
        padding-bottom: 30px;
    }
}

.single-video-sidebar .related-videos {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.single-video-sidebar .related-videos .section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #181818;
}

.single-video-sidebar .related-video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single-video-sidebar .related-video-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    transition: none;
}

.single-video-sidebar .related-video-card:hover {
    transform: none;
    box-shadow: none;
}

.single-video-sidebar .related-video-thumbnail {
    flex: 0 0 40%;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 9;
}

.single-video-sidebar .related-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-video-sidebar .related-video-card:hover .related-video-thumbnail img {
    transform: scale(1.05);
}

.single-video-sidebar .related-video-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.single-video-sidebar .related-video-card:hover .related-video-thumbnail .play-icon {
    background-color: rgba(255, 0, 91, 0.9);
}

.single-video-sidebar .related-video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.single-video-sidebar .related-video-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.single-video-sidebar .related-video-title a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-video-sidebar .related-video-title a:hover {
    color: #ff005b;
}

.single-video-sidebar .related-video-meta {
    font-size: 12px;
    color: #666;
}

.single-video-sidebar .related-video-date {
    color: #999;
}

.single .video-container {
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    box-sizing: border-box;
}

.single .video-embed,
.single .youtube-embed {
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.single .video-embed iframe,
.single .youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    border: none;
    box-sizing: border-box;
}

/* Video Meta Section - Compact Design */
.single .video-meta-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    overflow: visible;
}

.single .video-meta-section {
    margin-bottom: 20px;
    overflow: visible;
}

.single .view-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 0;
}

.single .share-section {
    margin: 0;
}

.single .share-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: background-color 0.2s ease;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    min-width: 40px;
    min-height: 40px;
}

.single .share-button:hover {
    background-color: #333;
}

.single .share-button i {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}


.single .listen-platforms-icons {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 0;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    box-shadow: none;
    text-shadow: none;
}

@media (min-width: 768px) {
    .single .listen-platforms-icons.desktop-socials {
        display: flex !important;
    }
    
    .single .listen-platforms-icons.desktop-socials .share-button,
    .single .listen-platforms-icons.desktop-socials .download-button-popup {
        display: inline-flex !important;
    }
    
    .single .listen-platforms-icons.mobile-socials {
        display: none !important;
    }
    
    /* Hide LISTEN and FOLLOW sections on desktop */
    .listen-follow-sections.mobile-socials {
        display: none !important;
    }
}

.single .listen-platforms-icons .share-button,
.single .listen-platforms-icons .download-button-popup {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 0 5px;
    margin: 0;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    width: auto;
    height: 40px;
    box-sizing: border-box;
    flex-shrink: 0;
    min-width: auto;
    min-height: 40px;
    vertical-align: middle;
    white-space: nowrap;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Desktop: Remove background grey and change padding for share/download buttons */
@media (min-width: 768px) {
    .single .listen-platforms-icons.desktop-socials .share-button,
    .single .listen-platforms-icons.desktop-socials .download-button-popup {
        background-color: transparent !important;
        padding: 0 5px;
    }
    
    .single .listen-platforms-icons.desktop-socials .share-button:hover,
    .single .listen-platforms-icons.desktop-socials .download-button-popup:hover {
        background-color: transparent !important;
    }
}

.single .listen-platforms-icons .share-button:hover,
.single .listen-platforms-icons .download-button-popup:hover {
    background-color: #d0d0d0;
    color: #333;
    transform: none;
    box-shadow: none !important;
    text-shadow: none !important;
}

.single .listen-platforms-icons .social-platform-button i,
.single .listen-platforms-icons .share-button i,
.single .listen-platforms-icons .download-button-popup i {
    font-size: 18px;
    margin-right: 0;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.single .download-button-popup {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: background-color 0.2s ease;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    min-width: 40px;
    min-height: 40px;
}

.single .download-button-popup:hover {
    background-color: #333;
}

.single .download-button-popup i {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

/* Standalone MP3 Player */
.single .mp3-player-standalone {
    margin-top: 20px;
    margin-bottom: 20px;
}

.single .mp3-player-standalone .mp3-player {
    width: 100%;
    height: 48px;
    outline: none;
}

/* Download Modal */
.download-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.download-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.download-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.download-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.download-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.download-modal-close:hover {
    background-color: #f0f0f0;
}

.download-options {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
}

.download-option:hover {
    background-color: #f8f8f8;
    border-color: #e0e0e0;
}

.download-option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 8px;
    flex-shrink: 0;
}

.download-option-icon i {
    font-size: 20px;
    color: #000;
}

.download-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.download-option-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.download-option-size {
    font-size: 13px;
    color: #666;
}

/* Listen Modal */
.listen-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.listen-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.listen-modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.listen-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.listen-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.listen-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.listen-modal-close:hover {
    background-color: #f0f0f0;
}

.listen-platforms {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.listen-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.listen-platform:hover {
    background-color: #f8f8f8;
    border-color: #e0e0e0;
    transform: translateY(-2px);
}

.listen-platform-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    font-size: 24px;
    color: #000;
    transition: all 0.2s ease;
}

.listen-platform:hover .listen-platform-icon {
    background-color: #e8e8e8;
}

/* Platform-specific colors */
.listen-platform[href*="spotify"] .listen-platform-icon {
    background-color: #1DB954;
    color: #fff;
}

.listen-platform[href*="apple"] .listen-platform-icon,
.listen-platform[href*="podcasts.apple"] .listen-platform-icon {
    background-color: #000;
    color: #fff;
}

.listen-platform[href*="google"] .listen-platform-icon {
    background-color: #4285F4;
    color: #fff;
}

.listen-platform[href*="youtube"] .listen-platform-icon {
    background-color: #FF0000;
    color: #fff;
}

.listen-platform[href*="amazon"] .listen-platform-icon {
    background-color: #FF9900;
    color: #fff;
}

.listen-platform[href*="iheart"] .listen-platform-icon {
    background-color: #C6002B;
    color: #fff;
}

.listen-platform[href*="rss"] .listen-platform-icon {
    background-color: #FFA500;
    color: #fff;
}

.listen-platform span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.no-platforms-message {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
    grid-column: 1 / -1;
}

/* Compact MP3 Player (legacy - kept for backward compatibility) */
.single .mp3-player-compact {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.single .mp3-player-compact .mp3-player {
    width: 100%;
    height: 48px;
    outline: none;
}

.single .mp3-player-info-compact {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

.single .mp3-player-info-compact span {
    display: inline-block;
}

/* Legacy MP3 Player Styles (kept for backward compatibility) */
.single .mp3-player-container {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background-color: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.single .mp3-player-label {
    font-size: 15px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.single .mp3-player {
    width: 100%;
    height: 48px;
    outline: none;
}

.single .download-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.single .download-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.single .download-button:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.single .download-button i {
    font-size: 16px;
    flex-shrink: 0;
}

.single .download-button-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.single .download-button .download-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single .download-button .download-size {
    font-size: 11px;
    color: #999;
    font-weight: 400;
}

.single .download-button:hover .download-size {
    color: #666;
} 

/* Tags Container with Horizontal Scroll for Mobile */
.tags-container {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

@media (max-width: 767px) {
    .tags-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px; /* Space for scrollbar */
        margin-bottom: 10px;
    }
    
    .tags-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: max-content;
    }
    
    .tags-links a {
        white-space: nowrap;
    }
} 

/* Hide title and sidebar on Become Muslim page */
/* Hide page title for support page */
.page-id-support .entry-header,
body.page-slug-support .entry-header,
.page-support .entry-header,
body.page-template-page-support .entry-header {
    display: none !important;
}

.page-id-become-muslim .entry-header,
body.page-slug-become-muslim .entry-header,
.page-become-muslim .entry-header,
body.page-template-page-become-muslim .entry-header {
    display: none !important;
}

/* Hide sidebar on Become Muslim page */
.page-id-become-muslim #secondary,
body.page-slug-become-muslim #secondary,
.page-become-muslim #secondary,
body.page-template-page-become-muslim #secondary,
.page-id-become-muslim .widget-area,
body.page-slug-become-muslim .widget-area,
.page-become-muslim .widget-area,
body.page-template-page-become-muslim .widget-area {
    display: none !important;
}

/* Make content full width on Become Muslim page */
.page-id-become-muslim #primary,
body.page-slug-become-muslim #primary,
.page-become-muslim #primary,
body.page-template-page-become-muslim #primary {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
} 

/* Ensure primary menu is visible on Become Muslim page */
.page-id-become-muslim .main-navigation,
body.page-slug-become-muslim .main-navigation,
.page-become-muslim .main-navigation,
body.page-template-page-become-muslim .main-navigation,
body[class*="become-muslim"] .main-navigation,
.become-muslim .main-navigation {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.page-id-become-muslim .primary-menu,
body.page-slug-become-muslim .primary-menu,
.page-become-muslim .primary-menu,
body.page-template-page-become-muslim .primary-menu,
body[class*="become-muslim"] .primary-menu,
.become-muslim .primary-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
} 

/* Archive Grid Styles */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Archive Grid Responsive Breakpoints */
@media (max-width: 1200px) {
    .archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 767px) {
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Match homepage mobile video card styles */
    .archive-grid .video-card {
        display: flex;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee;
        align-items: flex-start;
        padding: 10px;
    }
    
    .archive-grid .video-thumbnail {
        width: 40%;
        padding-top: 0;
        height: auto;
        aspect-ratio: 16/9;
        flex-shrink: 0;
    }
    
    .archive-grid .video-content {
        width: 60%;
        padding-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-width: 0;
        align-self: flex-start;
    }
    
    .archive-grid .video-title {
        font-size: 14px;
        margin-bottom: 5px;
        margin-top: 0;
        line-height: 1.5;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        height: auto !important;
        width: 100% !important;
        max-height: calc(1.5em * 4) !important;
    }
    
    .archive-grid .video-meta {
        font-size: 12px;
    }
} 

/* Search Results Grid Styles */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 767px) {
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.search-results-count {
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}

/* No results page improvements */
.no-results {
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.no-results h2 {
    margin-bottom: 20px;
    color: #333;
}

.no-results p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.search-suggestions {
    margin-bottom: 25px;
}

.search-suggestions h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.search-suggestions ul {
    margin-left: 20px;
}

.search-suggestions li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Search Suggestions Styles */
.search-suggestions {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-suggestions h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.search-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-suggestions li {
    margin-bottom: 8px;
}

.search-suggestions li a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.search-suggestions li a:hover {
    color: #00a0d2;
    text-decoration: underline;
}

/* Search Results Count */
.search-results-count {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    font-weight: 500;
}

/* Popular Categories */
.popular-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.category-link {
    display: inline-block;
    background-color: #eee;
    color: #555;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-link:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* No Results Message */
.no-results p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
} 

/* Social Platform Buttons */
.social-platform-button {
    display: inline-block;
    margin: 5px;
    padding: 1px;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

.social-platform-button:hover {
    transform: translateY(-2px);
    box-shadow: none;
    color: white;
    text-decoration: none;
}

.social-platform-button i {
    margin-right: 5px;
}

/* Social Links Sections */
.social-links-sections {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
}

.social-section {
    text-align: center;
    flex: 0 0 auto;
}

.social-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
} 

/* Homepage Social Platform Buttons */
.homepage-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.homepage-platforms .social-platform-button {
    min-width: auto;
    text-align: center;
    padding: 12px 15px;
    font-size: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.homepage-platforms .social-platform-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.homepage-platforms .social-platform-button i {
    font-size: 24px;
    margin-right: 0;
}

.follow-us-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 0;
}

.follow-us-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff005b;
}

.follow-us-section {
    padding: 0;
    background-color: #fff;
}

.subscribe-social-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.subscribe-section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

/* Stats and Membership Section */
.stats-membership-section {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}


.stats-heading {
    font-size: 36px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 30px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

.stats-membership-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stats-column-left {
    flex: 0 0 auto;
    min-width: 300px;
}

.stats-column {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex: 0 0 auto;
    position: relative;
}

.stats-column::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, #ddd 50%, transparent 100%);
}

.membership-column {
    flex: 1 1 400px;
    text-align: left;
    max-width: 500px;
}

.stats-combined {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    max-width: 100%;
    align-items: start;
}

.stats-combined .stat-item {
    text-align: center;
}

.stat-established {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.stat-established .stat-label {
    font-size: 16px;
    color: #666;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 500;
}

.membership-description {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 10px 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0be6af 0%, #ff005b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    word-break: break-word;
}

.stat-label {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}


.membership-button {
    display: inline-block;
    background: linear-gradient(135deg, #0be6af 0%, #0ac99a 100%);
    color: #000;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(11, 230, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.membership-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.membership-button:hover::before {
    left: 100%;
}

.membership-button:hover {
    background: linear-gradient(135deg, #0ac99a 0%, #0be6af 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(11, 230, 175, 0.4);
    color: #000;
    text-decoration: none;
}

.membership-text {
    margin-top: 12px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Subscribe and Social Row */
.subscribe-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Email Subscribe Section */
.email-subscribe-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.email-subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    width: 100%;
}

.email-subscribe-input {
    flex: 0 0 66.666%;
    padding: 16px 24px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
    width: 66.666%;
    box-sizing: border-box;
}

.email-subscribe-input:focus {
    border-color: #0be6af;
    box-shadow: 0 0 0 3px rgba(11, 230, 175, 0.1);
}

.email-subscribe-input::placeholder {
    color: #999;
}

.email-subscribe-button {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #0be6af 0%, #0ac99a 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    flex: 0 0 auto;
    letter-spacing: 0.5px;
}

.email-subscribe-button:hover {
    background: linear-gradient(135deg, #0ac99a 0%, #0be6af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 230, 175, 0.3);
}

/* Tablet and Medium Screens */
@media (max-width: 992px) and (min-width: 768px) {
    .stats-membership-section {
        padding: 35px 20px;
    }
    
    .stats-heading {
        font-size: 32px;
        margin-bottom: 28px;
    }
    
    .stats-membership-row {
        gap: 40px;
        margin-top: 35px;
    }
    
    .stats-column-left {
        min-width: 250px;
    }
    
    .stats-column {
        gap: 60px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .membership-column {
        flex: 1 1 350px;
        max-width: 450px;
    }
    
    .stats-combined {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 50px;
        margin-top: 25px;
        padding-top: 25px;
        max-width: 500px;
    }
    
    .membership-description {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .membership-button {
        padding: 15px 35px;
        font-size: 17px;
    }
    
    .subscribe-section-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .subscribe-social-row {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .email-subscribe-section {
        max-width: 90%;
    }
    
    .email-subscribe-input {
        padding: 14px 20px;
        font-size: 15px;
        flex: 0 0 66.666%;
        width: 66.666%;
    }
    
    .email-subscribe-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .about-eddie-heading {
        font-size: 32px;
    }
    
    .about-eddie-image {
        flex: 0 0 500px;
    }
    
    .about-eddie-heading {
        font-size: 32px;
    }
    
    .subscribe-social-row {
        flex-direction: row;
        align-items: center;
    }
    
    .social-links-sections {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .stats-heading {
        font-size: 26px;
        margin-bottom: 25px;
        letter-spacing: -0.3px;
    }
    
    .stats-membership-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-top: 15px;
    }
    
    .stats-column-left {
        width: 100%;
        min-width: 0;
    }
    
    .stats-column {
        gap: 50px;
        width: 100%;
        justify-content: center;
    }
    
    .stats-column::after {
        display: none;
    }
    
    .membership-column {
        flex: 1 1 100% !important;
        text-align: center;
        max-width: 100%;
        min-width: 0;
    }
    
    .stats-combined {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
        margin-top: 20px;
        padding-top: 20px;
        max-width: 100%;
    }
    
    .membership-description {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .stat-item {
        padding: 10px 15px;
    }
    
    .stat-number {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .stat-label {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .membership-button {
        padding: 14px 30px;
        font-size: 16px;
        letter-spacing: 0.8px;
    }
    
    .membership-text {
        font-size: 14px;
        margin-top: 10px;
    }
    
    .subscribe-social-section {
        padding: 40px 15px;
    }
    
    .subscribe-section-heading {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .subscribe-social-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .email-subscribe-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .email-subscribe-form {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        align-items: stretch;
        padding: 0;
    }
    
    .email-subscribe-input {
        width: 100%;
        padding: 14px 18px !important;
        font-size: 16px;
        box-sizing: border-box;
        min-width: 0;
        flex: 0 0 100%;
    }
    
    .email-subscribe-button {
        width: 100%;
        padding: 14px 25px;
        font-size: 16px;
    }
    
    .social-links-sections {
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .social-section {
        text-align: center;
        width: 100%;
    }
    
    .social-section-title {
        text-align: center;
    }
    
    .homepage-platforms {
        justify-content: center;
        gap: 6px;
        margin: 0;
    }
    
    .social-section {
        flex: 0 0 auto;
    }
    
    .social-section-title {
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .about-eddie-heading {
        font-size: 26px;
        margin-bottom: 30px;
        color: #fff;
    }
    
    .about-eddie-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-eddie-image {
        flex: 0 0 auto;
        max-width: 300px;
    }
    
    .about-eddie-content {
        text-align: center;
    }
    
    .about-eddie-content p {
        font-size: 16px;
        color: #fff;
    }
    
    .more-about-link {
        font-size: 14px;
        padding: 10px 25px;
        color: #fff;
        border-color: #fff;
    }
    
    .more-about-link:hover {
        background-color: #fff;
        color: #000;
    }
    
    .homepage-platforms .social-platform-button {
        min-width: 0;
        padding: 8px 12px;
        font-size: 0;
        flex: 0 0 auto;
        margin: 3px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .homepage-platforms .social-platform-button i {
        font-size: 20px;
        margin-right: 0;
    }
    
    .follow-us-title {
        font-size: 24px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .follow-us-title:after {
        width: 60px;
        height: 2px;
    }
    
    .follow-us-section {
        padding: 0;
    }
}

/* YouTube Shorts Playlist Section - BBC Style */
.youtube-shorts-section {
    padding: 40px 0;
    background-color: #fff;
}

.shorts-playlist-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #181818;
}

.shorts-playlist-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.shorts-playlist-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shorts-playlist-scroll {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    min-width: max-content;
}

.shorts-playlist-item {
    flex: 0 0 186.67px;
    width: 186.67px;
}

.shorts-item-link {
    display: block;
    text-decoration: none;
    color: #000;
}



.shorts-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.shorts-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin-top: 8px;
}

/* YouTube Shorts Horizontal Scroll Layout */
.shorts-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
    margin-top: 30px;
    padding-bottom: 10px;
}

.shorts-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.shorts-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.shorts-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.shorts-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.shorts-scroll-wrapper {
    display: flex;
    gap: 20px;
    min-width: max-content;
    padding-right: 20px;
}

.shorts-scroll-item {
    flex: 0 0 186.67px;
    width: 186.67px;
}

.shorts-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #181818;
}

.shorts-section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.shorts-item-link {
    display: block;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.shorts-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for YouTube Shorts (vertical) */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
    margin-bottom: 12px;
}

.shorts-thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shorts-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.shorts-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.shorts-item-link:hover .shorts-play-icon {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.shorts-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* YouTube Shorts Modal */
.shorts-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shorts-modal.active {
    opacity: 1;
    visibility: visible;
}

.shorts-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.shorts-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.shorts-modal.active .shorts-modal-content {
    transform: scale(1);
}

.shorts-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.shorts-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.shorts-modal-video-wrapper {
    width: 100%;
    background-color: #000;
}

.shorts-modal-video {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for YouTube Shorts */
    height: 0;
    overflow: hidden;
}

.shorts-modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.shorts-modal-title {
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Mobile responsive for shorts */
@media (max-width: 767px) {
    .youtube-shorts-section {
        padding: 30px 0;
    }
    
    .shorts-playlist-title,
    .shorts-section-title {
        font-size: 24px;
        padding-left: 10px;
    }
    
    .shorts-playlist-subtitle,
    .shorts-section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        padding-left: 10px;

    }
    
    .shorts-playlist-item {
        flex: 0 0 133.33px;
        width: 133.33px;
    }
    
    .shorts-playlist-scroll {
        gap: 15px;
    }
    
    .shorts-title {
        font-size: 14px;
    }
    
    .shorts-scroll-item {
        flex: 0 0 133.33px;
        width: 133.33px;
    }
    
    .shorts-scroll-wrapper {
        gap: 15px;
    }
    
    .shorts-play-icon {
        width: 50px;
        height: 50px;
    }
    
    .shorts-play-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .shorts-scroll-container {
        margin-top: 20px;
    }
    
    .shorts-modal-content {
        width: 95%;
        max-width: 100%;
    }
    
    .shorts-modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 5px;
        right: 5px;
    }
    
    .shorts-modal-title {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* YouTube Shorts on Single Post Pages */
.single-page-shorts {
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    clear: both;
}

.single-page-shorts .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

@media (max-width: 767px) {
    .single-page-shorts {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    

}

/* Adjust spacing for Shows category page without title */
.category-shows .page-header {
    padding-top: 20px;
}

.category-shows .archive-search {
    margin-top: 0;
}

/* Make search field wider on category pages */
.archive-search .search-input-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.archive-search .search-field {
    font-size: 16px;
    padding: 12px 15px;
} 

/* Enhanced Search Styles */
.search-form {
    position: relative;
    margin-bottom: 20px;
}

.search-form-inner {
    position: relative;
}

.search-input-wrapper {
    display: flex;
    position: relative;
}

.search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-field:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.search-submit {
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background-color: #005d8c;
}

/* Search Tips */
.search-tips-toggle {
    margin-top: 10px;
    font-size: 14px;
}

.toggle-search-tips {
    color: #0073aa;
    text-decoration: none;
    cursor: pointer;
}

.toggle-search-tips:hover {
    text-decoration: underline;
}

.search-tips {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
}

.search-tips ul {
    list-style: disc;
    margin-left: 20px;
}

.search-tips li {
    margin-bottom: 5px;
}

/* Search Results Enhancements */
.match-reason {
    display: inline-block;
    background-color: #f0f0f0;
    color: #666;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
}

/* Search Debug Info */
.search-debug {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    font-family: monospace;
    font-size: 14px;
}

.search-debug pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
} 

/* Fix for search results display */
.search-results-grid .video-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}

.search-results-grid .video-card:hover {
    transform: translateY(-5px);
}

.search-results-grid .video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    display: block;
}

.search-results-grid .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-results-grid .video-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.search-results-grid .video-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}

.search-results-grid .video-title a {
    color: #333;
    text-decoration: none;
    display: block;
}

.search-results-grid .video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.search-results-grid .video-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-results-grid .video-views i {
    font-size: 12px;
}

.search-results-grid .match-reason {
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

/* Fix for search results video card links */
.search-results-grid .video-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}

.search-results-grid .video-card-link:hover {
    transform: translateY(-5px);
}

.search-results-grid .video-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

.search-results-grid .video-card:hover {
    transform: none;
}

/* Mobile styles for search results */
@media (max-width: 767px) {
    .search-results-grid .video-card-link {
        display: flex;
        flex-direction: row;
    }
    
    .search-results-grid .video-card {
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    
    .search-results-grid .video-thumbnail {
        width: 40%;
        padding-top: 0;
        height: auto;
        aspect-ratio: 16/9;
        flex-shrink: 0;
    }
    
    .search-results-grid .video-content {
        width: 60%;
        padding: 10px;
    }
    
    .search-results-grid .video-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .search-results-grid .video-meta {
        font-size: 12px;
    }
} 

/* Simple video card for search results */
.simple-video-card {
    display: block;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.simple-card-link {
    text-decoration: none;
    color: #333;
    display: block;
}

.simple-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.simple-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.simple-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-thumbnail .play-icon i {
    color: white;
    font-size: 24px;
}

.simple-title {
    padding: 15px 15px 5px 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.simple-meta {
    padding: 0 15px 15px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.simple-date {
    display: inline-block;
}

.simple-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.simple-views i {
    font-size: 12px;
}

/* Contact Page Styles */
.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-page .entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page .entry-title {
    font-size: 42px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 20px;
}

.contact-notice {
    background-color: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #ff005b;
    margin-bottom: 40px;
}

.contact-notice h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.contact-sections {
    margin-bottom: 50px;
}

.contact-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-content strong {
    color: #000;
    font-weight: 600;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 70px;
    height: 70px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.method-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-phone,
.contact-email {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-phone a,
.contact-email a {
    color: #ff005b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: #000;
    text-decoration: underline;
}

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

.contact-privacy {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
}

/* Mobile styles for contact page */
@media (max-width: 767px) {
    .contact-page {
        padding: 20px 15px;
    }

    .contact-page .entry-title {
        font-size: 32px;
    }

    .contact-section {
        flex-direction: column;
        gap: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-content h3 {
        font-size: 16px;
    }

    .contact-content p {
        font-size: 15px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .method-content h3 {
        font-size: 18px;
    }

    .contact-phone,
    .contact-email {
        font-size: 20px;
    }
}

/* Mobile styles for simple video card */
@media (max-width: 767px) {
    .simple-video-card {
        display: flex;
        flex-direction: row;
    }
    
    .simple-card-link {
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    
    .simple-thumbnail {
        width: 40%;
        padding-top: 0;
        height: auto;
        aspect-ratio: 16/9;
        flex-shrink: 0;
    }
    
    .simple-title {
        width: 60%;
        padding: 10px;
        font-size: 14px;
    }
    
    .simple-meta {
        display: none;
    }
} 

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 15px;
        margin: 0 auto;
        max-width: 1200px;
    }

    .site-logo {
        max-height: 50px;
    }

    .mission-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mission-links {
        margin-top: 0;
    }

    .menu-toggle {
        display: none;
    }

    .main-menu-container {
        display: flex;
        position: static;
        padding: 0;
    }

    .primary-menu {
        flex-direction: row;
    }

    .primary-menu li {
        margin-right: 20px;
        margin-bottom: 0;
    }

    .featured-video-wrapper {
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .featured-video-info {
        padding: 15px;
    }

    .featured-video-title {
        font-size: 20px;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .video-card {
        display: block;
        border-radius: 8px;
        border-bottom: none;
    }

    .video-thumbnail {
        width: 100%;
        padding-top: 56.25%; /* 16:9 aspect ratio */
        aspect-ratio: auto;
    }

    .video-thumbnail img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .video-content {
        width: 100%;
        padding: 15px;
    }

    .video-title {
        font-size: 16px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .episode-number {
        left: 10px;
        font-size: 12px;
        padding: 3px 6px;
    }

    .support-mission-content {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .support-mission-text {
        flex: 1;
        margin-bottom: 0;
    }

    .support-mission-text h2 {
        font-size: 24px;
    }

    .support-buttons {
        justify-content: flex-start;
    }

    .support-mission-image {
        flex: 1;
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-menu ul {
        flex-direction: row;
    }
}

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

@media (min-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
} 