/*“®‰æŠÖ˜A*/
.container{
    max-width:1100px;
    margin:auto;
    padding:30px 20px;
}

.intro{
    margin-bottom:30px;
}
.section-title{
    font-size:22px;
    margin-bottom:15px;
    border-left:5px solid #003366;
    padding-left:10px;
}
.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.video-card{
    background:white;
    border-radius:8px;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    overflow:hidden;
}

.thumbnail{
    background:white;
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#666;
    font-size:14px;
}
.thumbnail img{
	height:180px;
	width:auto;
}

.video-content{
    padding:15px;
	text-align:left;
}

.video-title{
    font-weight:bold;
    margin-bottom:8px;
}

.video-meta{
    font-size:13px;
    color:#555;
    margin-bottom:10px;
}

.video-desc{
    font-size:14px;
    margin-bottom:12px;
}

.watch-btn{
    display:inline-block;
    background:#0066cc;
    color:white;
    padding:8px 14px;
    text-decoration:none;
    border-radius:4px;
    font-size:14px;
}

.watch-btn-ondemand{
    display:inline-block;
    background:#f39800;
    color:white;
    padding:8px 14px;
    text-decoration:none;
    border-radius:4px;
    font-size:14px;
}

.notice{
    margin-top:40px;
    background:#fff;
    padding:20px;
    border-radius:8px;
    font-size:14px;
}
footer{
    margin-top:40px;
    padding:20px;
    background:#eee;
    text-align:center;
    font-size:13px;
}