.ei-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* background: #dcdcdc; */
    padding: 20px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 30px auto;
}

.ei-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #000;
}

.ei-video-box img {
    width: 100%;
    max-width: 465px;
    height: auto;
    display: block;
}

/* play button */
.ei-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
}

.ei-play-btn::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 20px;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

/* bottom strip */
.ei-video-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #ddd;
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 14px;
}

.news-section {
    background: #f8fafc;
    padding: 20px;
}

.news-container {
    max-width: 1200px;
    margin: auto;
}

.news-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f766e;
    text-align: center;
}

/* .news-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #0f766e;
    position: absolute;
    bottom: -12px;
    left: 0;
    border-radius: 4px;
} */

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease;
    border: 1px solid #e5e7eb;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.news-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.news-btn {
    align-self: flex-end;
    background: #0f766e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background .3s;
}

.iframe {
    min-height: 350px;
}

/* Tablet */
@media (max-width: 768px) {
    .news-title {
        font-size: 32px;
    }

    .news-section {
        padding-top: 0;
    }

    .news-grid {
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .iframe {
        min-height: 250px;
    }

    .ei-video-grid {
        grid-template-columns: 1fr;
    }

    .news-title {
        font-size: 27px;
    }

    .news-grid {
        grid-template-columns: none;
    }
}