.mp-podcast-tabs {
    width: 100%;
}

/* ── Tabs Nav ── */
.mp-podcast-tabs-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0;
    margin-bottom: 20px;
    border-bottom: none;
}

.mp-podcast-tab-btn {
    flex-shrink: 0;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 50px;
    transition: color 0.25s, border-color 0.25s, background-color 0.25s;
    white-space: nowrap;
    outline: none;
}

.mp-podcast-tab-btn:hover,
.mp-podcast-tab-btn:focus,
.mp-podcast-tab-btn:active {
    color: #F2FE54;
    border-color: #F2FE54;
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.mp-podcast-tab-btn.active,
.mp-podcast-tab-btn.active:hover,
.mp-podcast-tab-btn.active:focus,
.mp-podcast-tab-btn.active:active {
    color: #0a0a0a;
    background-color: #F2FE54;
    border-color: #F2FE54;
    font-weight: 600;
    outline: none;
    box-shadow: none;
}

/* ── Tab Panels ── */
.mp-podcast-tab-panel {
    display: none;
}

.mp-podcast-tab-panel.active {
    display: block;
}

/* ── Cards ── */
.mp-podcast-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 20px;
    margin-bottom: 16px;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.mp-podcast-card:hover {
    border-color: rgba(242, 254, 84, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ── Thumbnail ── */
.mp-podcast-card-thumb {
    width: 30%;
    min-width: 30%;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}

.mp-podcast-card-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

/* ── Content ── */
.mp-podcast-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.mp-podcast-card-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-podcast-card-meta {
    display: inline-block;
    margin-bottom: 12px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border-radius: 0;
}

.mp-podcast-card-excerpt {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

/* ── Button ── */
.mp-podcast-card-btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: 15px;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: #0a0a0a;
    background-color: #F2FE54;
    border: 2px solid #F2FE54;
    border-radius: 50px;
    transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.1s;
}

.mp-podcast-card-btn:hover {
    background-color: transparent;
    color: #F2FE54;
    border-color: #F2FE54;
    transform: translateY(-1px);
}

/* ── Load More ── */
.mp-podcast-load-more-wrap {
    text-align: center;
    margin-top: 24px;
}

.mp-podcast-load-more {
    display: inline-block;
    padding: 12px 36px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s, background-color 0.25s;
    outline: none;
}

.mp-podcast-load-more:hover,
.mp-podcast-load-more:focus {
    color: #F2FE54;
    border-color: #F2FE54;
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.mp-podcast-load-more.loading {
    opacity: 0.6;
    pointer-events: none;
}

.mp-podcast-empty {
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .mp-podcast-tabs-nav {
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 4px;
    }

    .mp-podcast-tab-btn {
        padding: 9px 18px;
        font-size: 13px;
    }

    .mp-podcast-card {
        flex-direction: column;
        gap: 0;
        padding: 14px;
        margin-bottom: 20px;
    }

    .mp-podcast-card-thumb {
        width: 100% !important;
        min-width: 100% !important;
        aspect-ratio: 16 / 9;
        border-radius: 10px;
        margin-bottom: 0;
    }

    .mp-podcast-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .mp-podcast-card-content {
        padding: 18px 4px 6px;
    }

    .mp-podcast-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .mp-podcast-card-meta {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .mp-podcast-card-excerpt {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .mp-podcast-card-btn {
        padding: 10px 26px;
        font-size: 12px;
    }

    .mp-podcast-load-more {
        padding: 10px 28px;
        font-size: 13px;
    }
}
