body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

.homepage-wrapper {
    background-color: #f0f2f5;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.section-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
}

.clear {
    clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo_img img {
    margin-bottom: 13px;
}

.logo_text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.nav_wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav_menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.nav_menu li a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav_menu li a:hover,
.nav_menu li.active a {
    color: #007bff;
}

.nav_menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav_menu li a:hover::after,
.nav_menu li.active a::after {
    width: 100%;
}

.lang_selector img {
    width: 28px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}


.hero-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 60%;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.btn-explore {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-explore:hover {
    background-color: #0056b3;
}

.hero-image {
    flex-shrink: 0;
    width: 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d0d9e8 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 0;
}


.news-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.news-section .section-title {
    margin-bottom: 13px;
    border-bottom: 1px solid #eee
}

.news-list {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.news-card.featured-card {
    grid-column: span 1;
}

.news-card-img {
    height: 220px;
    overflow: hidden;
}
.news-card.featured-card .news-card-img {
    height: 280px;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-category {
    color: #999;
    margin-bottom: 12px;
}

.category-icon, .card-icon {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.news-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.35;
}
.news-card.simple-card h3 {
    font-size: 20px;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: auto;
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}


.mid-content-section {
    padding-top: 20px;
    padding-bottom: 80px;
    background-color: #f0f2f5;
}

.mid-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.market-analysis-block,
.flash-news-block,
.editorial-block {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.market-analysis-block .section-title,
.flash-news-block .section-title,
.editorial-block .section-title {
    font-size: 22px;
    margin-bottom: 25px;
}

.chart-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chart-container img {
    max-width: 100%;
    height: auto;
    display: block;
}


.flash-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.flash-news-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    counter-increment: flash-counter;
    position: relative;
    padding-left: 30px;
    transition: color 0.3s ease;
}
.flash-news-list li a {
    color: #555;
    text-decoration: none;
}
.flash-news-list li a:hover {
    color: #007bff;
}

.flash-news-list li:before {
    content: counter(flash-counter) ".";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 25px;
    text-align: right;
}

.editorial-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}


.foot {
    background-color: #222a3a;
    color: #fff;
    padding: 50px 0 20px 0;
    background-image: url('/style/images/footer-bg.png ');
}

.foot-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.foot-section {
    padding: 0 15px;
}

.foot-about {
    padding-right: 30px;
}

.foot-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}
.foot-logo img {
    max-height: 40px;
    margin-bottom: 0;
}
.logo_text_footer {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.foot-about .foot-description {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

.foot-links h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}
.foot-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foot-links li {
    margin-bottom: 10px;
}
.foot-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.foot-links a:hover {
    color: #007bff;
}

.foot-subscribe-social {
    text-align: right;
}

.subscribe-form {
    display: flex;
    margin-top: 15px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
}
.subscribe-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 15px;
    background-color: #3a475d;
    color: #eee;
}
.subscribe-form input[type="email"]::placeholder {
    color: #999;
}
.subscribe-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.subscribe-form button:hover {
    background-color: #0056b3;
}

.social-icons {
    margin-top: 25px;
}
.social-icons a {
    display: inline-block;
    margin-left: 15px;
}
.social-icons img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}
.social-icons img:hover {
    transform: translateY(-3px);
}

.foot-bottom__line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    margin-bottom: 20px;
}

.foot-copyright {
    text-align: center;
    font-size: 14px;
    color: #bbb;
}
.foot-copyright p {
    margin: 0;
}

.main-list-content {
    flex: 2.5;
    padding-top: 30px;
    padding-bottom: 60px;
}

.main-sidebar {
    flex: 1;
    padding-top: 30px;
    padding-left: 30px;
    padding-bottom: 60px;
}

.main-sidebar .sidebar-block {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.main-sidebar .sidebar-block h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 8px;
}

.main-sidebar .sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-sidebar .sidebar-block ul li {
    margin-bottom: 12px;
}

.main-sidebar .sidebar-block ul li a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-sidebar .sidebar-block ul li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.list-page-header {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
    margin-bottom: 30px;
    text-align: center;
}

.list-page-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.list-page-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.article-list-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-list-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-list-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.article-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-list-item:hover .article-thumb img {
    transform: scale(1.05);
}

.article-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.35;
}

.article-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-info h3 a:hover {
    color: #007bff;
}

.article-summary {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.article-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.publish-date, .read-count {
    display: flex;
    align-items: center;
    gap: 5px;
}
.publish-date::before {
    content: url('/style/images/icon-calendar.svg');
    width: 16px;
    height: 16px;
    display: inline-block;
}
.read-count::before {
    content: url('/style/images/icon-eye.svg');
    width: 16px;
    height: 16px;
    display: inline-block;
}


.pagination {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.pagination ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    display: inline-block;
    margin: 0 5px;
}

.pagination ul li a,
.pagination ul li span {
    display: block;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.pagination ul li a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pagination ul li.thisclass span,
.pagination ul li.current span {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-weight: bold;
}
.pagination .pageinfo b {
    font-weight: normal;
    color: #888;
    margin: 0 10px;
}
.pagination .pageinfo span {
    color: #007bff;
    font-weight: bold;
}

.flash-news-list-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    list-style: none;
    counter-reset: flash-news-counter;
    margin: 0;
}

.flash-news-list-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 40px;
    transition: background-color 0.3s ease;
}
.flash-news-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.flash-news-list-item:hover {
    background-color: #fcfcfc;
}

.flash-news-list-item::before {
    counter-increment: flash-news-counter;
    content: counter(flash-news-counter) ".";
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 5px;
    width: 30px;
    text-align: right;
}

.flash-news-list-item h5 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.flash-news-list-item h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.flash-news-list-item h5 a:hover {
    color: #007bff;
}

.flash-news-list-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flash-news-list-item .flash-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}
.flash-news-list-item .flash-meta .publish-date {
    content: none;
}
.flash-news-list-item .flash-meta .publish-date::before {
    content: "";
}

@media (max-width: 992px) {
    .header_content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .nav_wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .nav_menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .lang_selector {
        margin-top: 10px;
    }

    .hero-text h1 {
        font-size: 42px;
    }
    .hero-image {
        width: 300px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 80px 0;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-image {
        margin-top: 30px;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-card.featured-card {
        grid-column: span 2;
    }

    .mid-grid-layout {
        grid-template-columns: 1fr;
    }
    .market-analysis-block,
    .flash-news-block,
    .editorial-block {
        margin-bottom: 30px;
        min-height: unset;
    }
    .section-title {
        font-size: 24px;
        text-align: center;
    }

    .main {
        flex-direction: column;
        gap: 40px;
    }
    .main-list-content,
    .main-sidebar {
        flex: unset;
        width: 100%;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .main-sidebar .sidebar-block {
        margin-bottom: 20px;
    }
    .article-list-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .flash-news-list-container {
        padding: 25px;
    }
    .flash-news-list-item {
        padding-left: 35px;
    }
    .flash-news-list-item::before {
        top: 3px;
        width: 25px;
        font-size: 16px;
    }
    .flash-news-list-item h5 {
        font-size: 18px;
    }
    .flash-news-list-item p {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .foot-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .foot-section {
        padding: 0;
    }
    .foot-about, .foot-links, .foot-subscribe-social {
        padding-right: 0;
    }
    .foot-logo {
        justify-content: center;
    }
    .subscribe-form {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .social-icons {
        text-align: center;
        margin-top: 20px;
    }
    .social-icons a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    .logo_img img {
        width: 120px;
        height: auto;
    }
    .logo_text {
        font-size: 18px;
    }
    .nav_menu li a {
        font-size: 15px;
    }
    .lang_selector img {
        width: 24px;
    }

    .hero-text h1 {
        font-size: 36px;
    }
    .hero-text p {
        font-size: 16px;
    }
    .hero-image {
        width: 250px;
    }

    .news-list {
        grid-template-columns: 1fr;
    }
    .news-card.featured-card {
        grid-column: span 1;
    }
    .news-card-img {
        height: 180px;
    }
    .news-card.featured-card .news-card-img {
        height: 200px;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
        text-align: center;
    }

    .market-analysis-block .section-title,
    .flash-news-block .section-title,
    .editorial-block .section-title {
        font-size: 20px;
    }

    .list-page-header {
        padding: 25px 20px;
    }
    .list-page-header h2 {
        font-size: 28px;
    }
    .list-page-header p {
        font-size: 16px;
    }
    .article-list-container {
        grid-template-columns: 1fr;
    }
    .article-list-item {
        padding: 20px;
    }
    .article-thumb {
        height: 180px;
        margin-bottom: 15px;
    }
    .article-info h3 {
        font-size: 20px;
    }
    .article-summary {
        font-size: 14px;
    }
    .article-meta {
        font-size: 13px;
        padding-top: 10px;
    }
    .pagination {
        margin-top: 40px;
        padding-top: 20px;
    }
    .pagination ul li a, .pagination ul li span {
        padding: 8px 12px;
        font-size: 14px;
    }

    .flash-news-list-container {
        padding: 20px;
    }
    .flash-news-list-item {
        padding-left: 30px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .flash-news-list-item::before {
        font-size: 15px;
        top: 2px;
        width: 20px;
    }
    .flash-news-list-item h5 {
        font-size: 17px;
    }
    .flash-news-list-item p {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    .flash-news-list-item .flash-meta {
        font-size: 12px;
    }

    .foot {
        padding: 40px 0 15px 0;
    }
    .foot-logo img {
        max-height: 35px;
    }
    .logo_text_footer {
        font-size: 18px;
    }
    .foot-links h4 {
        font-size: 16px;
    }
    .foot-links li a {
        font-size: 14px;
    }
    .subscribe-form {
        max-width: 280px;
    }
    .subscribe-form input, .subscribe-form button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .social-icons {
        margin-top: 15px;
    }
    .social-icons img {
        width: 22px;
        height: 22px;
    }
    .foot-copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 0 15px;
    }
    .hero-text h1 {
        font-size: 30px;
    }
    .hero-text p {
        font-size: 15px;
    }
    .btn-explore {
        padding: 12px 30px;
        font-size: 15px;
    }
    .news-card-content {
        padding: 20px;
    }
    .news-card h3 {
        font-size: 18px;
    }
    .news-card.simple-card h3 {
        font-size: 16px;
    }
    .flash-news-list li {
        font-size: 15px;
    }
    .editorial-block p {
        font-size: 15px;
    }
    .subscribe-form {
        flex-direction: column;
        max-width: 200px;
    }
    .subscribe-form input, .subscribe-form button {
        border-radius: 5px;
        width: 100%;
        margin-bottom: 10px;
    }
    .subscribe-form button {
        margin-bottom: 0;
    }

    .list-page-header h2 {
        font-size: 24px;
    }
    .list-page-header p {
        font-size: 15px;
    }
    .article-list-item {
        padding: 15px;
    }
    .article-thumb {
        height: 160px;
    }
    .article-info h3 {
        font-size: 18px;
    }
    .article-summary {
        -webkit-line-clamp: 2;
    }
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .publish-date, .read-count {
        margin-right: 0;
    }

    .flash-news-list-container {
        padding: 15px;
    }
    .flash-news-list-item {
        padding-left: 25px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .flash-news-list-item::before {
        font-size: 14px;
        top: 1px;
        width: 18px;
    }
    .flash-news-list-item h5 {
        font-size: 16px;
    }
    .flash-news-list-item p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    .flash-news-list-item .flash-meta {
        justify-content: flex-start;
    }

    .foot {
        padding: 40px 0 15px 0;
    }
    .foot-logo img {
        max-height: 35px;
    }
    .logo_text_footer {
        font-size: 18px;
    }
    .foot-links h4 {
        font-size: 16px;
    }
    .foot-links li a {
        font-size: 14px;
    }
    .subscribe-form {
        max-width: 200px;
    }
    .subscribe-form input, .subscribe-form button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .social-icons {
        margin-top: 15px;
    }
    .social-icons img {
        width: 22px;
        height: 22px;
    }
    .foot-copyright {
        font-size: 13px;
    }
}
.detail-page-wrapper {
    padding-top: 30px;
    padding-bottom: 60px;
}

.detail-content-block {
    flex: 2.5;
}

.detail-page-header {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 40px;
    margin-bottom: 30px;
    text-align: center;
}

.detail-page-header .article-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.detail-page-header .article-meta {
    font-size: 15px;
    color: #888;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.detail-page-header .article-meta .publish-date::before,
.detail-page-header .article-meta .author::before,
.detail-page-header .article-meta .click-count::before {
    content: none;
}

.jiathis-share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.jiathis-share-buttons .i_save_btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.jiathis_style_24x24 a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.jiathis_style_24x24 a:hover {
    opacity: 1;
}

.article-content-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 40px;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}

.article-content-wrapper .neirong img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.related-articles-block h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 8px;
}

.related-articles-block .article-list-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-articles-block .article-list-item .article-thumb {
    height: 160px;
}

.related-articles-block .article-list-item .article-info {
    padding: 20px;
}

.related-articles-block .article-list-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.related-articles-block .article-list-item .article-summary {
    font-size: 14px;
    -webkit-line-clamp: 3;
}

.article-nav-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    font-size: 16px;
}
.article-nav-links a {
    color: #007bff;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #007bff;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.article-nav-links a:hover {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.article-nav-links .pre, .article-nav-links .next {
    flex: 1;
    text-align: center;
}
.article-nav-links .pre a { text-align: left; }
.article-nav-links .next a { text-align: right; }
.article-nav-links a.prev-article,
.article-nav-links a.next-article {
}

@media (max-width: 992px) {
    .detail-content-block {
        flex: unset;
        width: 100%;
    }
    .detail-page-header, .article-content-wrapper {
        padding: 25px 30px;
    }
    .detail-page-header .article-title {
        font-size: 28px;
    }
    .detail-page-header .article-meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }
    .related-articles-block .article-list-container {
        grid-template-columns: 1fr;
    }
    .related-articles-block .article-list-item .article-thumb {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .detail-page-header, .article-content-wrapper {
        padding: 20px 25px;
    }
    .detail-page-header .article-title {
        font-size: 24px;
    }
    .detail-page-header .article-meta {
        font-size: 14px;
    }
    .jiathis-share-buttons {
        gap: 10px;
    }
    .article-content-wrapper {
        font-size: 15px;
    }
    .related-articles-block h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .related-articles-block .article-list-item .article-thumb {
        height: 160px;
    }
    .related-articles-block .article-list-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .detail-page-header, .article-content-wrapper {
        padding: 15px 20px;
    }
    .detail-page-header .article-title {
        font-size: 20px;
    }
    .detail-page-header .article-meta {
        font-size: 13px;
        gap: 5px;
        margin-bottom: 15px;
    }
    .article-content-wrapper {
        font-size: 14px;
    }
    .article-content-wrapper .neirong img {
        margin: 15px auto;
    }
    .related-articles-block h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .related-articles-block .article-list-item .article-thumb {
        height: 140px;
    }
    .related-articles-block .article-list-item h3 {
        font-size: 15px;
    }
    .article-nav-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    .article-nav-links a {
        width: 100%;
        text-align: center;
    }
}
.detail-page-header .article-meta .tag-link {
    color: #888;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.detail-page-header .article-meta .tag-link:hover {
    color: #007bff;
}

.detail-page-header .article-meta .tag-link span {
    margin: 0 5px;
}