﻿
.media-title {
    font-size: 28px;
    font-weight: 700;
    color: orange;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    border-left: 6px solid #0E516D;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    transition: all .35s cubic-bezier(.25,.1,.25,1);
    transform: translateY(0) scale(1);
}

    .video-card:hover {
        transform: translateY(-6px) scale(1.03);
        border-left-color: #FF8A00;
        box-shadow: 0 12px 30px rgba(0,0,0,.18);
    }

    .video-card img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

.tag {
    background: #0E516D;
    color: white;
    font-size: .75rem;
    padding: 3px 7px;
    border-radius: 6px;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,.85);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    .video-modal.show {
        display: flex;
    }

.video-modal-inner {
    width: 90%;
    max-width: 900px;
    background: #000;
    padding: 15px;
    border-radius: 12px;
}

#videoFrame {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.close-btn {
    float: right;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

.podcast-card {
    background: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    border-left: 5px solid #FF8A00;
}

    .podcast-card:hover {
        transform: translateY(-4px);
    }
