/* ─────────────────────────────────────────────
   Podcast Page Styles
   ───────────────────────────────────────────── */

.podcast-page-main {
    background: #ffffff;
}

.podcast-posts-grid-section {
    padding-bottom: 60px;
}

/* ── Hero Slider Section ── */
.hero-slider-section {
    padding: 60px 0;
    /* background: linear-gradient(to bottom,
            #4D3766 0%,
            #2A1D3A 100%); */
}

.hero-slider {
    position: relative;
}

.hero-slideshow-items {
    height: auto !important;
}

.hero-slideshow-items>li {
    position: relative;
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.hero-copy-card,
.hero-poster-card {
    overflow: hidden;
    border-radius: 20px;
}

.hero-copy-card {
    position: relative;
    padding: 18px 22px 20px;
    background: #8ac8e4;
    color: #111;
}

.hero-copy-card h1 {
    margin: 0 0 18px;
    color: #4D3766;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.7;
}

.hero-copy-card p {
    margin: 0;
    color: #4D3766;
    font-size: 18px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-more-button {
    position: absolute;
    left: 22px;
    bottom: 19px;
    display: inline-flex;
    min-width: 78px;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    padding: 8px 32px !important;
    border-radius: 999px;
    background: #FED305;
    color: #4D3766 !important;
    font-size: 18px;
    text-decoration: none;
}

.hero-more-button:hover {
    background: #FED305;
    color: #4D3766 !important;
    text-decoration: none;
}

.hero-poster-card {
    background: #bf6a32;
}

.hero-poster-card img,
.hero-poster-fallback {
    width: 100%;
}

.hero-poster-card img {
    display: block;
    height: auto;
    object-fit: cover;
}

.hero-poster-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 220, 90, 0.7), transparent 30%),
        linear-gradient(135deg, #9d4d27, #e38a34 48%, #5f251c);
    color: #ffdf4f;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
}

.hero-slider-controls {
    display: flex;
    margin: 24px auto 0;
    align-items: center;
    justify-content: space-between;
}

.hero-slider-controls .uk-dotnav {
    margin-left: -10px;
}

.hero-slider-controls .uk-dotnav>*>* {
    width: 7px;
    height: 7px;
    border: 0;
    background: rgba(255, 255, 255, 0.34);
}

.podcast-page-main .hero-slider-controls .uk-dotnav>*>*{
    background: #676767 !important;
}

.hero-slider-controls .uk-dotnav>.uk-active>* {
    background: #fff;
}

.podcast-page-main .hero-slider-controls .uk-dotnav>.uk-active>* {
    background: #2F233D !important;
}


.hero-slider-arrows {
    display: flex;
    gap: 6px;
}

.hero-slider-arrows a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 32px;
    border-radius: 999px;
    background: #5d4a7a;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(77, 55, 102, 0.12);
}

.hero-slider-arrows a:hover {
    background: #4D3766;
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(77, 55, 102, 0.25);
}

@media (max-width: 767px) {
    .hero-slide-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
	
	.hero-copy-card{
		order: 1;
		height: 280px;
	}

    .hero-copy-card,
    .hero-poster-card,
    .hero-poster-card img,
    .hero-poster-fallback {
        min-height: 240px;
    }

    .podcast-posts-grid-section {
        padding-bottom: 40px;
    }
}

/* ── Banner Header & Search ── */
.blog-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
.blog-banner-search {
    display: flex;
    align-items: center;
    max-width: 480px;
    width: 100%;
}
.blog-search-input-wrapper {
    position: relative;
    flex: 1;
}
.blog-banner-search .uk-input {
    height: 42px;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 20px 0 0 20px;
    background: #fff;
    color: #333 !important;
    padding: 0 20px;
    font-size: 14px;
    box-sizing: border-box;
}
.blog-banner-search .uk-input:focus {
    border-color: #4D3766 !important;
    background: #fff;
}
.blog-banner-search .uk-button {
    height: 42px;
    background: #fed305;
    color: #4D3766 !important;
    font-weight: 700;
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 0 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.blog-banner-search .uk-button:hover {
    background: #ffe338;
}
.blog-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e1ddec;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(77, 55, 102, 0.12);
    margin-top: 2px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 999;
}
.blog-search-suggestions-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}
.blog-search-suggestions-list li {
    margin: 0;
}
.blog-search-suggestions-list li a {
    display: block;
    padding: 10px 20px;
    color: #4D3766;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
    transition: background 0.15s ease, color 0.15s ease;
}
.blog-search-suggestions-list li a:hover {
    background: #f4f2f7;
    color: #2b1840;
}
.blog-search-no-results {
    padding: 15px 20px;
    color: rgba(77, 55, 102, 0.6);
    font-size: 13px;
    text-align: center;
}

/* ── Category Filter Section ── */
.blog-category-filter-wrap {
    margin-bottom: 0px;
}
.blog-cat-filter-btn {
    background: #4D3766;
    color: #ffffff !important;
    border-radius: 24px;
    padding: 0 24px;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(77, 55, 102, 0.15);
    min-width: 220px;
}
.blog-cat-dropdown {
    background: #ffffff !important;
    border: 1px solid #e1ddec;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(77, 55, 102, 0.12) !important;
    padding: 8px 0 !important;
    min-width: 180px;
}
.blog-cat-dropdown .uk-nav {
    padding: 0;
}
.blog-cat-dropdown .uk-dropdown-nav a {
    color: #4D3766 !important;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    transition: background 0.15s ease, color 0.15s ease;
}
.blog-cat-dropdown .uk-dropdown-nav a:hover,
.blog-cat-dropdown .uk-dropdown-nav a.uk-active {
    background: #f4f2f7;
    color: #2b1840 !important;
}