:root {
    --yubang-gold: #e6c26e;
    --yubang-dark: #222222;
    --yubang-light: #f5f5f5;
}
.video-section{
    background: #f5f5f7;
}
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom:100px;
}

.container-custom .content{
    border: 1px solid #69696b;
    margin: 0 auto;
    border-top-style: dashed;
    border-bottom-style: dashed;
    border-right:none;
}

/* Main Content */
.section-title {
    font-family: 'Georgia', serif;
    text-align: left;
    padding-top:150px;
    position: relative;
}

.product-row {
    border-bottom: 1px dashed #ccc;
    padding: 2rem;
}
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-card img {
    width: 300px;
    height: auto;
    object-fit: cover;
    border:1px solid #b1b1b3;
}
.product-name {
    color: #e6bf0c;
    text-align: center;
    padding: 0.5rem;
}
.product-desc {
    color: #000;
    text-align: center;
    padding: 0 0.5rem 0.5rem;
    height: calc(1.5em * 2);
    line-height: 1.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: normal;
}
.video-list{
    display: flex;
    flex-direction: column;
}
.title-list a{
    color:#535353;
    text-decoration: none;
}
.play-btn {
    width: 40px;
    height: 40px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}


/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.4rem;
        margin-left:0;
        padding-top:50px;
    }
    .product-row {
        padding: 1rem 0;
    }
    .video-placeholder {
        margin-bottom: 0.5rem;
    }

    .container-custom .content{
        margin:0;
    }
    .video-list{
        padding:20px;
        padding-top:0;
        line-height: 1.2;
    }

}