.tdk-video-poster {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.tdk-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

.tdk-play-icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-35%, -50%);
    border-width: 15px 0 15px 25px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.tdk-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.tdk-video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.tdk-video-popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

.tdk-video-popup-container video {
    width: 100%;
    height: auto;
}

.tdk-video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.secondary-subheading {
    color: #0046AD;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    text-transform: capitalize;
    margin: 0px;
}

ul.media-files-list {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

ul.media-files-list li {
    margin: 5px 0;
}

ul.media-files-list a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
}

ul.media-files-list a:hover {
    color: #0070f3; /* Optional: slight hover effect */
}