/* ============================================
   PODCAST SECTION STYLES - TONY ROBBINS INSPIRED
   BLACK & WHITE DESIGN
   ============================================ */

:root {
    --pod-bg: #ffffff;
    --pod-card-bg: #ffffff;
    --pod-text-dark: #000000;
    --pod-text-gray: #666666;
    --pod-text-light: #999999;
    --pod-border: #e0e0e0;
    --pod-accent: #000000;
    --pod-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.podcast-section-light {
    background-color: var(--pod-bg);
    padding: 100px 20px;
    color: var(--pod-text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
}

.pod-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.pod-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--pod-text-dark);
    letter-spacing: -0.5px;
}

.pod-link-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--pod-text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pod-link-all:hover {
    color: var(--pod-text-dark);
    transform: translateX(3px);
}

.podcast-card-wrapper {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.podcast-card-wrapper:hover {
    box-shadow: none;
}

.podcast-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.pod-featured {
    text-align: left;
}

.pod-cover-large {
    position: relative;
    display: block;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pod-shadow);
    cursor: pointer;
}

.pod-cover-large img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.play-circle svg {
    width: 36px;
    margin-left: 4px;
}

.pod-cover-large:hover img {
    transform: scale(1.05);
}

.pod-cover-large:hover .play-overlay {
    opacity: 1;
}

.pod-cover-large:hover .play-circle {
    transform: scale(1);
}

.pod-meta-featured {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--pod-text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.pod-title-featured {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--pod-text-dark);
    letter-spacing: -0.5px;
}

.audio-player-ui {
    max-width: 100%;
    margin: 0;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--pod-text-gray);
    font-family: 'Inter', monospace;
    margin-bottom: 20px;
    font-weight: 500;
}

.prog-line {
    flex-grow: 1;
    height: 4px;
    background: var(--pod-border);
    margin: 0 15px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.prog-line:hover {
    height: 6px;
}

.prog-line:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: var(--hover-position, 0%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--pod-text-dark);
    border-radius: 50%;
}

.prog-fill {
    width: 0%;
    height: 100%;
    background: var(--pod-text-dark);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.player-controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--pod-text-dark);
}

.ctrl-btn.sm {
    padding: 8px;
    border-radius: 50%;
}

.ctrl-btn.sm svg {
    width: 20px;
}

.ctrl-btn.sm:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

.ctrl-btn.sm:active {
    transform: scale(0.95);
}

.ctrl-btn.play-main {
    width: 56px;
    height: 56px;
    background: var(--pod-text-dark);
    border-radius: 50%;
    color: white;
}

.ctrl-btn.play-main svg {
    width: 24px;
    margin-left: 3px;
}

.ctrl-btn.play-main:hover {
    background: #222;
    transform: scale(1.05);
}

.ctrl-btn.play-main:active {
    transform: scale(1);
}

.pod-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pod-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 25px 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--pod-border);
    transition: all 0.2s ease;
    background: transparent;
    cursor: pointer;
}

.pod-item:last-child {
    border-bottom: none;
}

.pod-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.pod-thumb-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pod-item:hover .pod-thumb-wrapper {
    transform: none;
}

.pod-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pod-info {
    flex-grow: 1;
}

.pod-tags {
    font-family: 'Inter', sans-serif;
    \n font-size: 0.7rem;
    color: var(--pod-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.pod-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--pod-text-dark);
    transition: color 0.2s ease;
}

.pod-item:hover .pod-item-title {
    color: var(--pod-text-dark);
}

.pod-listen-btn {
    background: transparent;
    border: 1px solid var(--pod-text-dark);
    border-radius: 50px;
    padding: 10px 22px;
    color: var(--pod-text-dark);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-icon {
    display: flex;
    align-items: center;
    height: 12px;
}

.btn-icon svg {
    width: 12px;
}

.pod-listen-btn:hover {
    background: var(--pod-text-dark);
    color: white;
    transform: none;
}

.pod-listen-btn:active {
    transform: scale(0.98);
}

/* Loading state animation */
@keyframes pulse-btn {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.ctrl-btn.play-main.loading {
    animation: pulse-btn 1.5s ease-in-out infinite;
    cursor: wait;
}

.ctrl-btn.play-main.loading svg {
    opacity: 0.7;
}

/* Playing indicator - minimal */
.ctrl-btn.play-main.playing {
    background: #000;
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 1100px) {
    .podcast-grid {
        grid-template-columns: 350px 1fr;
        gap: 50px;
    }

    .pod-cover-large img {
        width: 350px;
        height: 350px;
    }

    .pod-title-featured {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .podcast-section-light {
        padding: 60px 20px;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pod-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
    }

    .pod-section-title {
        font-size: 1.5rem;
    }

    .pod-featured {
        max-width: 100%;
    }

    .pod-cover-large {
        max-width: 100%;
    }

    .pod-cover-large img {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }

    .pod-title-featured {
        font-size: 2rem;
    }

    .pod-item {
        padding: 16px 0;
    }

    .pod-thumb-wrapper {
        width: 70px;
        height: 70px;
    }

    .pod-item-title {
        font-size: 0.95rem;
    }

    .pod-listen-btn span {
        display: none;
    }

    .pod-listen-btn {
        padding: 10px;
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
        border-radius: 50%;
        margin-left: 0;
    }

    .btn-icon {
        height: 14px;
    }

    .btn-icon svg {
        width: 14px;
    }
}

@media (max-width: 480px) {
    .podcast-section-light {
        padding: 40px 16px;
    }

    .pod-section-title {
        font-size: 1.3rem;
    }

    .pod-cover-large img {
        max-width: 100%;
    }

    .pod-title-featured {
        font-size: 1.75rem;
    }

    .ctrl-btn.play-main {
        width: 48px;
        height: 48px;
    }

    .ctrl-btn.play-main svg {
        width: 20px;
    }
}