.etv-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 60px 0;
}

.etv-video-item {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

.etv-video-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.etv-video-thumbnail {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.etv-clear {
    clear: both;
}

/* Modal styles */
.etv-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.etv-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.etv-close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: -10px;
}


@media screen and (max-width: 1192px) {
	.etv-video-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 767px) {
	.etv-video-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}