.epg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.epg-card h4 {
    display: none;
}
.epg-card {
    background: #cfeaff;
    padding: 12px;
    border-radius: 14px;
}

.epg-thumb {
    position: relative;
    cursor: pointer;
}

.epg-thumb img {
    width: 100%;
    border-radius: 10px;
}

.pdf-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}

.epg-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    display: none;
    z-index: 9999;
    top: 100px;
    height: 100%;
}

.epg-popup iframe {
    width: 80%;
    height: 80%;
    margin: 5% auto;
    display: block;
    background: #fff;
}

.epg-popup.active {
    display: block;
}

.epg-close {
    position: absolute;
    top: 62px;
    right: 20px;
    font-size: 21px;
    color: #202322;
    cursor: pointer;
    background: #fff;
    padding: 2px 4px;
}