#live-section {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 28px 15px;
}

#live-section .live-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#live-section .live-flex .container {
    align-self: center;
}

#live-section .live-flex .container .live-logo img {
    margin-bottom: 10px;
}

#live-section .live-flex .container .live-title {
    font-family: 'DB Heavent', sans-serif;
    color: #FFF;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

#live-section .live-flex .container .live-title span {
    background-color: #000;
}

#live-section .live-flex .live-screen .live-iframe {
    border-radius: 25px 25px 0 0;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden;
}

#live-section .live-flex .live-screen .live-caption {
    display: block;
    position: relative;
    background-color: #000;
    padding: 20px 15px;
    margin-top: 0px;
    border-radius: 0 0 25px 25px;
}

#live-section .live-flex .live-screen .live-caption .caption {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Kanit', sans-serif;
    color: #FFF;
    font-size: 14px;
}

#live-section .live-flex .live-screen .live-caption .caption span.caption-topic {
    background-color: #FF0000;
    padding: 5px 10px;
    font-family: 'Kanit', sans-serif;
    color: #FFF;
    font-size: 14px;
    border-radius: 5px;
    margin-right: 5px;
}


@media (min-width: 768px) and (max-width: 1018px) {
    #live-section .live-flex .container .live-logo img {
        width: 110px;
    }

    #live-section .live-flex .container .live-title {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    #live-section {
        padding: 28px 0px;
    }

    #live-section .live-flex {
        grid-template-columns: repeat(1, 1fr);
    }

    #live-section .live-flex .container {
        text-align: center;
    }

    #live-section .live-flex .container .live-logo img {
        width: 110px;
    }

    #live-section .live-flex .container .live-title {
        font-size: 30px;
    }
}