/* Video Section */
.video-section {
    max-width: 1240px;
    margin: 0 auto;
}

.video-section .section-header h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.video-section .section-header .arrow {
    color: #e41e26;
    margin-left: 10px;
    font-size: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    background-color: #eef6fc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-card .thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e41e26;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

.video-card .play-icon {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid white;
    margin-left: 3px;
}

.video-card .card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-card .card-content h3 {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 10px;
}

.video-card .card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card .news-tag {
    color: #e41e26;
    font-weight: bold;
    margin-right: 5px;
}

.video-card .time-stamp {
    font-size: 13px;
    color: #888;
    margin-top: auto;
}

@media (max-width: 768px) {
    .video-section {
        max-width: 90%;
    }
}