.youtube-container {  
    position: relative;  
    width: 100%;  
    max-width: 100%;  
    margin: 2rem 0;  
    border-radius: 12px;  
    overflow: hidden;  
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);  
    transition: transform 0.3s ease;  
}  

.youtube-container:hover {  
    transform: translateY(-5px);  
}  

.youtube-thumbnail {  
    position: relative;  
    width: 100%;  
    height: 0;  
    padding-bottom: 56.25%; /* Ratio 16:9 */  
    background-size: cover;  
    background-position: center;  
    cursor: pointer;
    display: inline-block;  
}  

.youtube-play-button {  
    position: absolute;  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    width: 68px;  
    height: 48px;  
    background-color: rgba(33, 33, 33, 0.8);  
    border-radius: 12px;  
    cursor: pointer;  
    transition: background-color 0.3s ease;  
}  

.youtube-play-button::before {  
    content: '';  
    position: absolute;  
    top: 50%;  
    left: 55%;  
    transform: translate(-50%, -50%);  
    border-style: solid;  
    border-width: 12px 0 12px 20px;  
    border-color: transparent transparent transparent #fff;  
}  

.youtube-container:hover .youtube-play-button {  
    background-color: #ff0000;  
}  

.youtube-info {  
    padding: 1.5rem;  
    background: #fff;  
}  

.youtube-title {  
    font-size: 1.25rem;  
    font-weight: 600;  
    margin-bottom: 0.5rem;  
    color: #1a1a1a;  
}  

.youtube-meta {  
    display: flex;  
    align-items: center;  
    gap: 1rem;  
    font-size: 0.875rem;  
    color: #666;  
}  

.youtube-meta i {  
    font-size: 1rem;  
}  

@media (max-width: 768px) {  
    .youtube-play-button {  
        width: 48px;  
        height: 34px;  
    }  
    
    .youtube-play-button::before {  
        border-width: 8px 0 8px 14px;  
    }  
    
    .youtube-info {  
        padding: 1rem;  
    }  
    
    .youtube-title {  
        font-size: 1rem;  
    }  
}  
.news-summary {  
    max-width: 800px;  
    margin: 0 auto;  
    font-family: Arial, sans-serif;  
}  

.summary-section {  
    background: #f8f9fa;  
    padding: 20px;  
    border-radius: 8px;  
    margin-bottom: 30px;  
}  

.article-card {  
    display: flex;  
    margin-bottom: 30px;  
    padding: 20px;  
    border-radius: 8px;  
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);  
    background: white;  
}  

.article-image {  
    width: 200px;  
    min-width: 200px;  
    margin-right: 20px;  
}  

.article-image img {  
    width: 100%;  
    height: 150px;  
    object-fit: cover;  
    border-radius: 8px;  
}  

.article-content {  
    flex: 1;  
}  

.article-content h3 {  
    margin: 0 0 10px 0;  
    font-size: 18px;  
}  

.article-content a {  
    color: #1a0dab;  
    text-decoration: none;  
}  

.article-source {  
    margin: 10px 0;  
    color: #666;  
    font-size: 14px;  
}  

.source-name {  
    font-weight: bold;  
    margin-right: 10px;  
}  

.article-keywords {  
    margin-top: 10px;  
}  

.keyword {  
    background: #e9ecef;  
    padding: 4px 8px;  
    border-radius: 4px;  
    margin-right: 5px;  
    font-size: 12px;  
    color: #495057;  
} 

.wp-post-image {  
    transition: opacity 0.3s ease-out;  
}  

.wp-post-image.hidden {  
    opacity: 0;  
    visibility: hidden;  
    position: absolute;  
    pointer-events: none;  
} 
