.article-section {
    padding: 4rem 0;
}

.research-section {
    padding: 4rem 0;
    background: #dcdddd;
}

    .research-section h2 {
        padding: 0 0 2rem 0;
    }

.article-hero {
    padding: 190px 0 1.5rem 0;
    position: relative;
    overflow: hidden;
}

    .article-hero .block {
        position: relative;
        z-index: 10;
    }

        .article-hero .block h1 {
            font-size: 2.6rem;
            color: #fff;
            margin-bottom: 1.3rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .article-hero .block p {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 400;
            line-height: 1.4;
            margin-bottom: 2.1rem;
        }

.blue-overlay:after {
    content: "";
    background: #0f253d;
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.download-box {
    padding: 2rem 2rem;
    border-radius: 8px;
    width: 300px;
    max-width: 300px;
    transition: box-shadow 0.3s ease;
}

    .download-box:hover {
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
    }

    .download-box h3 {
        font-size: 0.9rem;
        font-family: "Schibsted Grotesk", sans-serif;
    }

.download-img {
    background: #ffffff;
    padding: 3px;
    margin: 1.5rem 0;
}

.download-link {
    font-weight: 500;
    font-size: 0.9rem;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.7;
}

.article-content h2 {
    font-size: 2rem;
    margin: 2rem 0;
}

/* 文章圖片基本樣式 */
.article-content img {
    max-width: 100%;
    height: auto;
}

.article-content section::after,
.article-content p::after {
    content: '';
    display: table;
    clear: both;
}

/* 響應式圖片：小螢幕取消浮動 */
@media (max-width: 767px) {
    .article-content img[style*="float: left"],
    .article-content img[style*="float: right"] {
        float: none !important;
        display: block !important;
        margin: 15px auto !important;
        max-width: 100% !important;
    }
}


.share-bar {
    border-radius: 8px;
    width: 300px;
    padding: 0.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.share-bar .divider {
    width: 1px;
    background: #c9caca;
    margin: 0 8px;
    height: 24px;
    align-self: center;
}

.share-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9fa0a0;
}

.share-facebook {
    display: inline-block;
    width: 18px;
    height: 100%;
    background: url("../images/article/facebook.svg") center center no-repeat;
    background-size: 18px 18px;
    transition: background-image 0.2s;
}

    .share-facebook:hover {
        background-image: url("../images/article/facebook-hover.svg");
    }

.share-linkedin {
    display: inline-block;
    width: 16px;
    height: 100%;
    background: url("../images/article/linkedin.svg") center center no-repeat;
    background-size: 16px 16px;
    transition: background-image 0.2s;
}

    .share-linkedin:hover {
        background-image: url("../images/article/linkedin-hover.svg");
    }

.share-line {
    display: inline-block;
    width: 22px;
    height: 100%;
    background: url("../images/article/line.svg") center center no-repeat;
    background-size: 22px 22px;
    transition: background-image 0.2s;
}

    .share-line:hover {
        background-image: url("../images/article/line-hover.svg");
    }

.share-x-twitter {
    display: inline-block;
    width: 20px;
    height: 100%;
    background: url("../images/article/x-twitter.svg") center center no-repeat;
    background-size: 20px 20px;
    transition: background-image 0.2s;
}

    .share-x-twitter:hover {
        background-image: url("../images/article/x-twitter-hover.svg");
    }

.share-link-icon {
    display: inline-block;
    width: 18px;
    height: 100%;
    background: url("../images/article/link.svg") center center no-repeat;
    background-size: 18px 18px;
    transition: background-image 0.2s;
}

    .share-link-icon:hover {
        background-image: url("../images/article/link-hover.svg");
    }

.fixed-top-100 {
    position: fixed;
    top: 100px;
    z-index: 1050;
}

.card-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.swiper-pagination-bullet-active {
    box-shadow: 0 0 0 5px #dcdddd, 0 0 0 6px #e0b980;
}

@media (max-width: 767px) {
    .article-aside .navbar {
        background-color: #efefef !important;
    }
}

@media (max-width: 575px) {
    .article-hero {
        padding: 6.5rem 0 1rem 0;
    }

        .article-hero .block h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }

        .article-hero .block p {
            font-size: 1.1rem;
        }

    .download-box {
        padding: 2rem 2.5rem;
        border-radius: 8px;
        width: 100%;
    }

    .article-section {
        padding: 30px 0;
    }

    .research-section {
        padding: 30px 0;
    }
}
