#container .news-list-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    box-sizing: border-box;
    color: #1e1e1e;
    text-align: left;
}

#container .news-list-header {
    margin-bottom: 32px;
    padding-bottom: 14px;
    border-bottom: 2px solid #c8a84b;
}

#container .news-list-header h1,
#container .news-list-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

#container .news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

#container .news-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    color: #1e1e1e;
    text-align: left;
}

#container .news-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    transform: translateY(-3px);
}

#container .news-item__image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0ede6;
    flex-shrink: 0;
}

#container .news-item__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

#container .news-item:hover .news-item__image-wrap img {
    transform: scale(1.04);
}

#container .news-item__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
}

#container .news-item__date {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
}

#container .news-item__date::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    background-color: #bbbbbb;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}

#container .news-item__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1.4;
    margin: 0 0 10px 0;
    text-align: left;
}

#container .news-item__title a,
#container .news-item__title a:link,
#container .news-item__title a:visited {
    color: #1e1e1e;
    text-decoration: none;
}

#container .news-item__title a:hover,
#container .news-item__title a:active {
    color: #c8a84b;
    text-decoration: none;
}

#container .news-item__intro {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

#container .news-item__meta-links {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

#container .news-item__meta-links a,
#container .news-item__meta-links a:link,
#container .news-item__meta-links a:visited {
    font-size: 0.75rem;
    color: #888888;
    text-decoration: none;
    border: 1px solid #dddddd;
    padding: 3px 9px;
    border-radius: 3px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

#container .news-item__meta-links a:hover {
    border-color: #c8a84b;
    color: #c8a84b;
}

#container .news-item__read-more,
#container .news-item__read-more:link,
#container .news-item__read-more:visited {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    font-size: 0.80rem;
    font-weight: 600;
    color: #c8a84b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, gap 0.2s ease;
}

#container .news-item__read-more:hover,
#container .news-item__read-more:active {
    color: #a8882e;
    gap: 11px;
    text-decoration: none;
}

#container .news-item__read-more::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-color: #c8a84b;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    transition: background-color 0.2s ease;
}

#container .news-item__read-more:hover::after {
    background-color: #a8882e;
}

#container .article-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 36px 40px 60px;
    box-sizing: border-box;
    display: block;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    color: #222222;
    text-align: left;
    font-size: 14px;
}

#container .article-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid #c8a84b;
}

#container .article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin: 0 0 14px 0;
    letter-spacing: -0.2px;
    text-rendering: optimizeLegibility;
    text-align: left;
}

#container .article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

#container .article-meta__date {
    font-size: 0.80rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#container .article-meta__date::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-color: #aaaaaa;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}

#container .article-meta__author {
    font-size: 0.80rem;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
}

#container .article-meta__author::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-color: #aaaaaa;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}

#container .article-meta__author a,
#container .article-meta__author a:link,
#container .article-meta__author a:visited {
    color: #c8a84b;
    text-decoration: none;
}

#container .article-meta__author a:hover {
    text-decoration: underline;
}

#container .article-image-wrap {
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

#container .article-image-wrap:empty {
    display: none;
}

#container .article-image-wrap img,
#container img.news-intro-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

#container .article-intro {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 1.75;
    margin-bottom: 28px;
    padding: 18px 22px;
    border-left: 4px solid #c8a84b;
    background: #faf7f0;
    border-radius: 0 6px 6px 0;
    text-align: left;
}

#container .article-intro:empty {
    display: none;
}

#container .article-video {
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

#container .article-video:empty {
    display: none;
}

#container .article-video iframe {
    width: 100%;
    display: block;
    border: none;
}

#container .article-body {
    font-size: 1rem;
    color: #222222;
    line-height: 1.85;
    margin-bottom: 36px;
    text-align: left;
}

#container .article-body p {
    margin: 0 0 1.3em 0;
    color: #222222;
    text-align: left;
}

#container .article-body h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2em 0 0.7em;
    padding-bottom: 7px;
    border-bottom: 1px solid #e8e3d8;
    text-align: left;
}

#container .article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.6em 0 0.5em;
    text-align: left;
}

#container .article-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333333;
    margin: 1.3em 0 0.4em;
    text-align: left;
}

#container .article-body a,
#container .article-body a:link,
#container .article-body a:visited {
    color: #c8a84b;
    text-decoration: underline;
}

#container .article-body a:hover,
#container .article-body a:active {
    color: #a8882e;
    text-decoration: none;
}

#container .article-body ul,
#container .article-body ol {
    padding-left: 1.6em;
    margin: 0 0 1.3em 0;
    color: #222222;
    text-align: left;
}

#container .article-body li {
    margin-bottom: 0.45em;
    line-height: 1.75;
    color: #222222;
}

#container .article-body blockquote {
    margin: 1.8em 0;
    padding: 18px 24px;
    border-left: 4px solid #c8a84b;
    background: #faf7f0;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #444444;
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: left;
}

#container .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 1.2em auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
}

#container .article-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    font-size: 0.93rem;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    color: #222222;
}

#container .article-body table th,
#container .article-body table td {
    padding: 10px 14px;
    border: 1px solid #e8e3d8;
    text-align: left;
}

#container .article-body table th {
    background: #f5f0e6;
    font-weight: 700;
    color: #2a2a2a;
}

#container .article-body table tr:nth-child(even) td {
    background: #fafaf8;
    color: #222222;
}

#container .article-gallery {
    margin-bottom: 32px;
}

#container .article-gallery:empty {
    display: none;
}

#container .article-poll {
    margin-bottom: 32px;
}

#container .article-poll:empty {
    display: none;
}

#container .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e8e3d8;
    margin-bottom: 32px;
}

#container .article-footer__share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#container .article-footer__print,
#container .article-footer__print:link,
#container .article-footer__print:visited {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.80rem;
    color: #777777;
    text-decoration: none;
    border: 1px solid #dddddd;
    padding: 7px 16px;
    border-radius: 4px;
    transition: border-color 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: #ffffff;
}

#container .article-footer__print:hover,
#container .article-footer__print:active {
    border-color: #c8a84b;
    color: #c8a84b;
    text-decoration: none;
}

#container .article-footer__print::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    background-color: #777777;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 6 2 18 2 18 9'/%3E%3Cpath d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/%3E%3Crect x='6' y='14' width='12' height='8'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 6 2 18 2 18 9'/%3E%3Cpath d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/%3E%3Crect x='6' y='14' width='12' height='8'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    transition: background-color 0.2s ease;
}

#container .article-footer__print:hover::before {
    background-color: #c8a84b;
}

#container .article-contact {
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid #e8e3d8;
    color: #222222;
    text-align: left;
}

#container .article-contact:empty {
    display: none;
}

@media (max-width: 1024px) {
    #container .news-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 860px) {
    #container .news-list-wrapper {
        padding: 20px 15px 40px;
    }

    #container .article-wrapper {
        padding: 24px 22px 40px;
        border-radius: 8px;
        margin: 0 10px;
    }

    #container .article-title {
        font-size: 1.6rem;
    }

    #container .article-intro {
        font-size: 1rem;
        padding: 14px 16px;
    }
}

@media (max-width: 640px) {
    #container .news-list-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #container .article-wrapper {
        padding: 18px 14px 32px;
        margin: 0 4px;
        border-radius: 6px;
    }

    #container .article-title {
        font-size: 1.3rem;
    }

    #container .article-meta {
        gap: 10px;
    }

    #container .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    #container .article-body h2 {
        font-size: 1.2rem;
    }

    #container .article-body h3 {
        font-size: 1.05rem;
    }

    #container .article-body table {
        font-size: 0.82rem;
    }

    #container .article-body table th,
    #container .article-body table td {
        padding: 7px 8px;
    }
}