    .gMewTMVg {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 80px 0px;
    }

    .gMewTMVg .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .gMewTMVg .head .title {
        font-size: 46px;
        line-height: 54px;
        font-weight: 700;
    }

    .gMewTMVg a.more {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        border: 1px solid #000;
        border-radius: 40px;
        gap: 5px;
        padding: 0 30px;
    }

    .gMewTMVg a.more:hover {
        background-color: #009AC5;
        border: 1px solid #009AC5;
        color: #fff;
    }

    .gMewTMVg a.more:hover path {
        fill: #fff;
    }

    .gMewTMVg .more.bottom {
        display: none;
    }

    .gMewTMVg .list {
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 20px;
    }

    .gMewTMVg img.poster {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }

    .gMewTMVg iframe {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }

    .gMewTMVg .thumb {
        margin: -20px;
        position: relative;
    }

    .gMewTMVg .list_item {
        background: #F3FBFD;
        border-radius: 12px;
        padding: 20px 20px 50px 20px;
        position: relative;
    }

    .gMewTMVg .read_more_div {
        position: absolute;
        bottom: 15px;
        font-weight: 500;
    }

    .gMewTMVg a.description {
        width: 100%;
        display: block;
        margin-top: 30px;
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
    }

    .gMewTMVg.single-videos .list_item {
        background: #F3FBFD;
        border-radius: 12px;
        padding: 20px 20px 20px 20px;
        position: relative;
    }

    .gMewTMVg.single-videos .play_button {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
    }

    .gMewTMVg.single-videos .play_button:hover {
        opacity: 0.8;
    }

    .gMewTMVg.single-videos .play_button svg {
        width: 60px;
        height: 60px;
    }

    .gMewTMVg .read_more {
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: #000;
    }

    .gMewTMVg .read_more::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #000;
        visibility: hidden;
        transition: all 0.2s ease-in-out;
    }

    .gMewTMVg .read_more:hover::after {
        visibility: visible;
        width: 100%;
    }

    @media (max-width:1024px) {
        .gMewTMVg .more.bottom {
            display: flex;
            max-width: 350px;
            margin: 0 auto;
        }

        .gMewTMVg {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 50px 0px;
        }

        .gMewTMVg .head .title {
            font-size: 36px;
        }

        .gMewTMVg a.more {
            display: none;
        }

        .gMewTMVg .head {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gMewTMVg .list {
            display: grid;
            grid-template-columns: auto;
            gap: 20px;
        }
    }
    