/* section podcast */
    .podcasts-container {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }
    
    .podcast-card {
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    
    .podcast-card:hover {
        transform: translateY(-5px);
    }
    
    .podcast-image {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .podcast-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .podcast-card:hover .podcast-image img {
        transform: scale(1.05);
    }
    
    .podcast-card .box_categorie_date{
        position: absolute;
        top: 8px; left: 8px;
        z-index: 100;
        display: flex;
        gap: 8px;
    }
    
    .podcast-card .item_categorie_date{
        padding: 8px;
        color: var(--white);
        border: 1px solid var(--light-white);
    }
    
    .podcast-card:nth-child(even) .item_categorie_date:first-child{
        background: var(--red);
    }
    
    .podcast-card:nth-child(even) .item_categorie_date:last-child{
        background: var(--blue);
    }
    
    .podcast-card:nth-child(odd) .item_categorie_date:first-child{
        background: var(--blue);
    }
    
    .podcast-card:nth-child(odd) .item_categorie_date:last-child{
        background: var(--red);
    }
    
    .play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .podcast-card:hover .play-overlay {
        opacity: 1;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .play-icon i {
        font-size: 30px;
        color: var(--primary-blue);
        margin-left: 5px;
    }
    
    .podcast-info {
        padding: 20px 8px;
        padding-top: 8px;
    }
    
    .podcast-views {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 3px;
    }
    
    .podcast-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-weight: 600;
        margin: 8px auto;
        text-align: justify;
    }
    
    .podcast-description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 8px auto;
        color: var(--gray);
        text-align: justify;
    }
    
    /* Modal video */
        .modal_video {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        
        .modal_video.active {
            display: flex;
        }
        
        .modal_content {
            position: relative;
            width: 90%;
            max-width: 800px;
            background: black;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .modal_content iframe {
            width: 100%;
            height: 450px;
            border: none;
        }
        
        .close_modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .close_modal:hover {
            background: red;
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .modal_content iframe {
                height: 250px;
            }
            .close_modal {
                top: -35px;
                right: 0;
                font-size: 24px;
                width: 30px;
                height: 30px;
            }
        }
    /* modal video */
/* section podcast */

/* responsive */
    /* section podcast */
        @media (max-width: 1100px) {
            .podcasts-container {
                grid-template-columns: repeat(3,1fr);
            }
        }
        
        @media (max-width: 768px) {
            .podcasts-container {
                grid-template-columns: repeat(2,1fr);
            }
        }
        
        @media (max-width: 520px) {
            .podcasts-container {
                grid-template-columns: repeat(1,1fr);
            }
        }
    /* section podcast */
/* responsive */