.feed-widget {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.feed-item {
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 40px;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-item h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.feed-item .date {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.feed-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 10;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.hidden {
    display: none;
}

.news-item img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    display: block;
}

.video-placeholder {
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

