/*
Theme Name: VDB Media Platform
Version: 1.0
*/

body{
    margin:0;
    padding:0;
    background:#E9E9E9;
    font-family:Arial,sans-serif;
}

/* ==========================================
   HEADER
========================================== */

.vdb-header{
    width:100%;
    background:#333333;
    border-bottom:4px solid #F15A24;
}

.vdb-header-inner{

    display:flex;

    align-items:center;

    padding:10px 20px;

}

/* ==========================================
   LOGO
========================================== */

.vdb-logo{

    flex:0 0 auto;

    margin-right:200px;

}

.vdb-logo img{

    height:150px;

    width:auto;

    display:block;

}

/* ==========================================
   MENU
========================================== */

.vdb-menu{

    margin-left:0;

}

.vdb-menu ul{

    display:flex;

    align-items:center;

    list-style:none;

    margin:0;

    padding:0;

    gap:3px;

}

.vdb-menu li{

    margin:0;

    padding:0;

}

.vdb-menu a{

    display:block;

    background:#F15A24;

    color:#FFFFFF !important;

    text-decoration:none;

    padding:12px 13px;

    border-radius:6px;

    font-weight:bold;

    font-size:14px;

    white-space:nowrap;

}

.vdb-menu a:hover{

    background:#D84A17;

}

/* ==========================================
   CONTENT
========================================== */

.vdb-wrapper{

    max-width:1400px;

    margin:0 auto;

}

main{

    max-width:1400px;

    margin:40px auto;

    padding:0 20px;

}

.vdb-layout{

    display:grid;

    grid-template-columns:
        300px
        900px
        300px;

    gap:40px;

    max-width:1580px;

    margin:40px auto;

}

.vdb-card{

    background:#ffffff;

    border-radius:8px;

    padding:25px;

    margin-bottom:40px;

    box-shadow:
        0 2px 8px rgba(
            0,0,0,0.08
        );

}

/* ==========================================
   FOOTER
========================================== */

.vdb-footer{

    background:#333333;

    width:100%;

    padding:30px 0;

    margin-top:30px;

}

.vdb-footer-inner{

    width:100%;

    max-width:100%;

    padding:0 30px;

    box-sizing:border-box;

}

.vdb-footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    width:100%;

}

.vdb-footer-card{

    background:#F15A24;

    color:#FFFFFF;

    border-radius:8px;

    padding:20px;

    min-height:140px;

    width:100%;

    box-sizing:border-box;

}

.vdb-footer-card h3{

    color:#FFFFFF;

    margin-top:0;

}

.vdb-footer-card p{

    color:#FFFFFF;

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:1024px){

    .vdb-layout{

        grid-template-columns:
            250px
            1fr;

    }

    .vdb-footer-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}

/* ==========================================
   MOBIEL
========================================== */

@media(max-width:768px){

    .vdb-header-inner{

        flex-direction:column;

        text-align:center;

    }

    .vdb-logo{

        margin-right:0;

        margin-bottom:20px;

    }

    .vdb-logo img{

        height:100px;

    }

    .vdb-menu ul{

        justify-content:center;

        flex-wrap:wrap;

    }

    .vdb-layout{

        grid-template-columns:1fr;

    }

    .vdb-footer-grid{

        grid-template-columns:1fr;

    }

}

.vdb-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:20px;

}

.vdb-news-card{

    background:#FFFFFF;

    border-left:5px solid #F15A24;

    border-radius:8px;

    padding:20px;

    box-shadow:
        0 2px 8px rgba(
            0,0,0,0.08
        );

}

.vdb-button{

    display:inline-block;

    background:#F15A24;

    color:#FFFFFF;

    text-decoration:none;

    padding:10px 15px;

    border-radius:6px;

    margin-top:10px;

}

.vdb-button:hover{

    background:#D84A17;

}

.left-sidebar{

    background:#ffffff;

    padding:20px;

    border-radius:8px;

}

.right-sidebar{

    background:#ffffff;

    padding:20px;

    border-radius:8px;

}

.widget{

    background:#D84A17;

    color:#FFFFFF;

    border-radius:8px;

    padding:20px;

    margin-bottom:20px;

    box-shadow:
        0 2px 8px rgba(
            0,0,0,0.08
        );

}

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

.vdb-news-card{
    background:#ffffff;
    border-radius:8px;
    padding:15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.vdb-news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:15px;
}

.vdb-button{
    display:inline-block;
    background:#F15A24;
    color:#FFFFFF !important;
    text-decoration:none;
    padding:10px 15px;
    border-radius:6px;
    margin-top:10px;
    font-weight:bold;
}

.vdb-button:hover{
    background:#D84A17;
}

.vdb-partner-card img{

    width:100% !important;

    height:auto !important;

    max-height:180px !important;

    object-fit:contain !important;

    display:block;

    margin:0 auto;

}

.vdb-partner-card{

    background:#FFFFFF;

    border-radius:8px;

    padding:20px;

    text-align:center;

    box-shadow:0 2px 8px rgba(0,0,0,0.08);

}

.vdb-partner-card h3{

    margin-top:15px;

}

.vdb-partner-card img{

    width:100% !important;

    height:auto !important;

    max-height:180px !important;

    object-fit:contain !important;

}

.vdb-weekbar{

    display:flex;

    gap:8px;

    flex-wrap:nowrap;

    overflow-x:auto;

    margin-top:20px;

}

.vdb-weekbar a{

    display:inline-block;

    background:#F15A24;

    color:#FFFFFF !important;

    text-decoration:none;

    padding:8px 12px;

    border-radius:6px;

    font-weight:bold;

    font-size:13px;

    white-space:nowrap;

}

.vdb-weekbar a:hover{

    background:#D84A17;

}

.vdb-weekbar a.active{

    background:#B63C12 !important;

}

.vdb-player{

    margin:15px 0;

}

.vdb-player audio{

    width:100%;

}

.vdb-weekbar{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.vdb-weekbar a{

    background:#F15A24;

    color:#FFFFFF;

    text-decoration:none;

    padding:12px 20px;

    border-radius:6px;

    font-weight:bold;

}

.vdb-weekbar a:hover{

    background:#D84A17;

}

.vdb-program-card{

    background:#FFFFFF;

    border-radius:8px;

    padding:15px;

    box-shadow:0 2px 8px rgba(0,0,0,0.08);

}

.vdb-program-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:8px;

    margin-bottom:15px;

}

.vdb-program-card h3{

    margin-top:10px;

}

.vdb-program-time{

    font-weight:bold;

    color:#F15A24;

    margin-bottom:10px;

}