*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;



}
html {
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
ol, ul{
    list-style: none;
}
.post .featured-bg {
    position: relative;
    width: 100%;
    min-height: 540px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    justify-content: center;
    align-items: end;
}

.post .mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.71%, rgba(0, 0, 0, 0.6) 100%);

}

.post .container-text {
    width: 900px;
    max-width: 100%;
    margin-bottom: 60px;
    z-index: 1;
}

.post .container-text h1 {
    color: #FFFFFF;
    font-family: Noto Sans TC;
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.post .author {
    font-family: Noto Sans TC;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: left;
    color: #FFFFFF;
}

.post .author span {
    color: rgba(255, 255, 255, 0.6);
}

.post .date span {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 16px;
}

.post .date {
    font-family: Noto Sans TC;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: left;
    color: #FFFFFF;
}

.post .content{
    display: flex;
    justify-content: center;
    padding-top: 80px;
    font-family: Noto Sans TC;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1px;
    text-align: justify;
}

.post .content img{
    width: 100%;
    height: auto;
    margin-top:60px ;
    margin-bottom: 60px;
}

.post .content .active{
   width: 810px;
}

.post .share-buttons{
    display: flex;
    flex-direction: column;
    padding: 0 20px;

}
.post .share-buttons a{
    height:30px;
    width: 30px;
    margin-bottom: 10px;

}
.post .share-buttons img{
    height:30px;
    width: 30px;
    margin: 0;

}




@media (max-width: 768px) { /* 768px 只是示範，您可以根據需要調整 */
    .post .content .active{
        padding-right: 10px;
    }
    .post .container-text{

        padding: 0 20px;
    }

}