/**
 * URAUA.INFO - Оригинальный дизайн
 * Воссоздание дизайна с uraua.info
 */
:root {
    --color-primary: #1128a2;
    --color-text: #2F3A4A;
    --color-text-light: rgba(47, 58, 74, 0.4);
    --color-border: rgba(47, 58, 74, 0.4);
    --color-bg: #ffffff;
    --font-primary: 'Muller', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --container-width: 1000px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; 
}
body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; 
}
#page {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}
#content {
    flex: 1;
}
.container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.5s;
}
a:hover {
    opacity: 0.8;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.site-header {
    background: var(--color-bg);
}
.header-top {
    padding: 17px 0 10px 0;
    position: relative;
}
.header-top::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: calc(100% - 40px);
    max-width: 1510px;
    height: 1px;
    background: var(--color-border);
}
.header-top .container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header-date {
    color: var(--color-text);
    text-transform: uppercase;
    font-family: 'Muller400', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    opacity: 0.4;
}
.header-search {
    display: flex;
    align-items: center;
}
.header-search {
    flex-shrink: 0;
    margin-left: auto;
    padding-bottom: 5px; 
}
.header-search form {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}
.header-search input[type="search"] {
    padding: 10px 45px 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: 25px;
    font-size: 14px;
    min-width: 280px;
    transition: all 0.3s;
    font-family: var(--font-primary);
    background: white;
    color: var(--color-text);
}
.header-search input[type="search"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(17, 40, 162, 0.1);
}
.header-search input[type="search"]::placeholder {
    color: #999;
}
.header-search button {
    position: absolute;
    right: 5px;
    padding: 8px 12px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-search button:hover {
    background: #0d1f7a;
    transform: scale(1.05);
}
.header-search button i {
    font-size: 14px;
}
.header-middle {
    padding: 20px 0;
    position: relative;
}
.header-middle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: calc(100% - 40px);
    max-width: 1510px;
    height: 1px;
    background: var(--color-border);
}
.header-middle .container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.header-content {
    display: flex;
    align-items: flex-end; 
    justify-content: space-between;
    gap: 30px;
}
.header-logo {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-logo a {
    display: inline-block;
}
.header-logo img {
    height: 90px;
    width: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-social a {
    color: var(--color-text);
    font-size: 24px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.header-social a:hover {
    opacity: 1;
}
.header-bottom {
    background: white;
    position: relative;
}
.header-bottom::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: calc(100% - 40px);
    max-width: 1510px;
    height: 1px;
    background: var(--color-border);
}
.header-bottom .container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}
.topmenu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: fit-content;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 8px;
}
.topmenu li {
    position: relative;
}
.topmenu a {
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Muller400', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    opacity: 0.7;
    padding: 16px 25px;
    display: block;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.topmenu a:hover,
.topmenu .current-menu-item a {
    opacity: 1;
    border-bottom-color: var(--color-primary);
    background: rgba(17, 40, 162, 0.05);
}
.site-content {
    padding: 20px 0 0; 
}
.page-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
.page-article {
    background: white;
}
.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-border);
}
.page-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 0;
}
.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}
.page-content > div[style] {
    max-width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}
.page-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
}
.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px;
}
.page-content p {
    margin-bottom: 20px;
}
.page-content a {
    color: var(--color-primary);
    text-decoration: underline;
}
.page-content a:hover {
    opacity: 0.8;
}
.site-main {
    max-width: 1550px;
    margin: 0 auto;
    padding: 40px 20px;
}
.featured-post {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}
.category .featured-post,
.archive .featured-post {
    padding: 8px;
    margin-bottom: 15px;
    max-width: 50%;
}
.category .featured-post-image,
.archive .featured-post-image {
    margin-bottom: 6px;
    border-radius: 4px;
}
.category .featured-post-title,
.archive .featured-post-title {
    font-size: 16px;
    margin-bottom: 5px;
}
.category .featured-post-excerpt,
.archive .featured-post-excerpt {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.4;
}
.category .featured-post-meta,
.archive .featured-post-meta {
    font-size: 11px;
}
.featured-post:hover {
    box-shadow: 0 4px 25px rgba(17, 40, 162, 0.15);
    transform: translateY(-3px);
}
.featured-post-image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 16/9;
    margin-bottom: 12px;
}
.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}
.featured-post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.featured-post-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.featured-post-title a {
    color: var(--color-text);
    transition: color 0.3s;
}
.featured-post-title a:hover {
    color: var(--color-primary);
}
.featured-post-excerpt {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.85;
    margin-bottom: 12px;
    flex: 1;
}
.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}
.featured-post-date {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 500;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.post-card {
    background: white;
    transition: transform 0.3s;
}
.post-card:hover {
    transform: translateY(-2px);
}
.post-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}
.post-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s;
}
.post-card:hover .post-card-image img {
    transform: scale(1.05);
}
.post-card-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}
.post-card-title a {
    color: var(--color-text);
}
.post-card-title a:hover {
    color: var(--color-primary);
}
.post-card-excerpt {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 10px;
}
.post-card-date {
    font-size: 12px;
    color: var(--color-text-light);
    opacity: 0.6;
}
.load-more-wrap {
    text-align: center;
    margin: 40px 0;
}
.load-more-btn {
    padding: 12px 40px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    display: inline-block;
}
.load-more-btn:hover {
    opacity: 0.8;
}
.single-post-main {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}
.single-post-wrapper {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1025px) {
    .single-post-wrapper {
        display: grid;
        grid-template-columns: minmax(auto, 800px) 280px;
        gap: 30px;
        align-items: start;
        justify-content: center;
        max-width: 1150px;
        margin: 0 auto;
    }
}
.single-post-content-col {
    max-width: 800px;
}
.single-post-sidebar {
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
.single-post-sidebar::-webkit-scrollbar {
    width: 4px;
}
.single-post-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.single-post-sidebar::-webkit-scrollbar-thumb {
    background: rgba(17, 40, 162, 0.2);
    border-radius: 2px;
}
.single-post-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(17, 40, 162, 0.4);
}
.single-post-article {
    background: white;
}
.entry-header {
    margin-bottom: 30px;
}
.entry-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 20px;
}
.entry-featured-image {
    margin-bottom: 30px;
}
.entry-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.image-caption {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 10px;
    font-style: italic;
}
.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
}
.entry-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
}
.entry-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px;
}
.entry-content p {
    margin-bottom: 20px;
}
.entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
}
.entry-content a:hover {
    opacity: 0.8;
}
.author-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}
.author-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
}
.author-info {
    flex: 1;
}
.author-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}
.author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}
.entry-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--color-text-light);
}
.entry-meta i {
    margin-right: 5px;
}
.share-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s;
}
.share-btn:hover {
    transform: scale(1.1);
}
.share-btn.facebook {
    background: #1877f2;
}
.share-btn.twitter {
    background: #1da1f2;
}
.share-btn.telegram {
    background: #0088cc;
}
.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--color-border);
}
.related-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-text);
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}
.related-post-card {
    background: white;
    transition: transform 0.3s;
}
.related-post-card:hover {
    transform: translateY(-4px);
}
.related-post-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
}
.related-post-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s;
}
.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}
.related-post-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}
.related-post-title a {
    color: var(--color-text);
}
.related-post-title a:hover {
    color: var(--color-primary);
}
.related-post-date {
    font-size: 12px;
    color: var(--color-text-light);
}
.site-footer {
    background: #2F3A4A;
    color: white;
    padding: 50px 0 0; 
    margin-top: auto;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 0;
}
.footer-bottom-new {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 30px; 
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 10px;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.footer-content-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}
.footer-left {
}
.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.footer-center {
    text-align: center;
    padding: 0 20px; 
}
.footer-title-center {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px; 
    color: #ffffff;
    text-transform: uppercase;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; 
    max-width: 400px; 
    margin: 0 auto;
}
.footer-menu-col {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.footer-menu-col li {
    margin-bottom: 8px; 
    line-height: 1.4;
}
.footer-menu-col a {
    color: #b8c1d1;
    text-decoration: none;
    font-size: 14px; 
    transition: color 0.3s ease;
}
.footer-menu-col a:hover {
    color: #ffffff;
}
.footer-menu-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
}
.footer-menu-col a:hover {
    color: white;
    transform: translateX(3px);
}
.footer-right {
    text-align: center;
}
.footer-social-new {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.footer-social-new .social-icon {
    color: white;
    font-size: 32px;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-social-new .social-icon:hover {
    opacity: 1;
    transform: scale(1.15);
    color: var(--color-primary);
}
.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}
.footer-bottom-new {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 10px;
}
.footer-bottom-new p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-section {
}
.footer-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
    display: inline-block;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 12px;
    padding-left: 0;
}
.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
}
.footer-menu a:hover {
    color: white;
    padding-left: 5px;
    transform: translateX(5px);
}
.footer-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-social .social-icon {
    color: white;
    font-size: 32px;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-social .social-icon:hover {
    opacity: 1;
    transform: scale(1.15);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-bottom p {
    margin: 0;
    line-height: 1.8;
}
.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: var(--color-primary);
}
@media (max-width: 1024px) {
    .container {
        width: 100%;
        max-width: 960px;
    }
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .header-top {
        padding: 15px 20px;
    }
    .header-logo {
        padding-left: 0;
    }
    .header-social {
        display: none;
    }
    .topmenu {
        flex-direction: column;
    }
    .topmenu a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--color-border);
    }
    .featured-post {
        flex-direction: column;
    }
    .featured-post-image,
    .featured-post-content {
        width: 100%;
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .header-date {
        font-size: 10px;
    }
    .header-search input[type="search"] {
        min-width: 150px;
    }
    .featured-post-title {
        font-size: 20px;
    }
    .post-card-title {
        font-size: 16px;
    }
}
.main-content-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-content-column {
    flex: 0 0 75%;
}
.sidebar-news {
    flex: 0 0 23%;
}
.sidebar-news {
}
.sidebar-news-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px; 
    padding-bottom: 8px; 
    padding-left: 15px;
    border-bottom: 3px solid var(--color-primary);
}
.sidebar-news-list {
    background: white;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px; 
}
.sidebar-news-item {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}
.sidebar-news-item:last-child {
    border-bottom: none;
}
.sidebar-news-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}
.sidebar-news-link:hover {
    transform: translateX(5px);
}
.sidebar-news-time {
    display: inline-block;
    font-size: 11px;
    color: white;
    background: var(--color-primary);
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 5px;
    font-weight: 600;
}
.sidebar-news-item-title {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text);
    margin: 5px 0 0 0;
    font-weight: 500;
}
.sidebar-news-link:hover .sidebar-news-item-title {
    color: var(--color-primary);
}
.sidebar-all-news-btn {
    display: block !important; 
    text-align: center;
    background: var(--color-primary);
    color: white !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 0;
    transition: all 0.3s;
    opacity: 1 !important;
}
.sidebar-all-news-btn:hover {
    background: #0d1f7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 40, 162, 0.3);
    opacity: 1 !important;
}
.category-blocks {
    margin-top: 40px;
}
.category-block {
    margin-bottom: 50px;
}
.category-block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.category-logo {
    width: 50px;
    height: 25px;
    object-fit: contain;
}
.category-block-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}
.category-block-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}
.category-block-title a:hover {
    color: var(--color-primary);
}
.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
@media (max-width: 1400px) {
    .category-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}
@media (min-width: 1401px) and (max-width: 1600px) {
    .category-posts-grid {
        gap: 12px;
    }
}
.category-post-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.category-post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(17, 40, 162, 0.12);
}
.category-post-image {
    position: relative;
    overflow: hidden;
    height: auto;
    aspect-ratio: 16/10;
}
.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.category-post-item:hover .category-post-image img {
    transform: scale(1.05);
}
.category-post-content {
    padding: 12px;
}
.category-post-title {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 8px 0;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-post-title a {
    color: var(--color-text);
    text-decoration: none;
}
.category-post-title a:hover {
    color: var(--color-primary);
}
@media (max-width: 1400px) {
    .category-post-title {
        font-size: 13px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }
}
@media (min-width: 1401px) and (max-width: 1600px) {
    .category-post-title {
        font-size: 13.5px;
        line-height: 1.35;
    }
}
.category-post-date {
    font-size: 11px;
    color: var(--color-text-light);
}
.category-separator {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD203 20%, #FFD203 80%, transparent 100%);
    margin: 40px 0;
    border-radius: 2px;
}
.category-block:last-child .category-separator {
    display: none;
}
.page-main {
    max-width: 900px;
}
.page-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.page-content > div[style],
.page-inner-content {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}
.page-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text);
}
.page-content p.p1,
.page-content p:first-of-type {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
}
.page-content strong {
    color: var(--color-primary);
    font-weight: 600;
}
.page-content a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}
.page-content a:hover {
    border-bottom-color: var(--color-primary);
}
.page-content script {
    display: none;
}
@media (max-width: 1024px) {
    .main-content-wrapper {
        flex-direction: column;
    }
    .main-content-column,
    .sidebar-news {
        flex: 0 0 100%;
    }
    .sidebar-news-sticky {
        position: static;
    }
    .category-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .category-posts-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 15px !important;
    }
    .category-post-item {
        display: block !important;
        width: 100% !important;
    }
    .category-post-image {
        height: auto !important;
        width: 100% !important;
    }
    .category-post-image img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
        object-fit: cover !important;
    }
    .category-block-title {
        font-size: 22px;
    }
    .category-logo {
        width: 40px;
        height: 20px;
    }
}
@media (max-width: 480px) {
    .category-posts-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    .main-content-wrapper {
        padding: 0 10px;
    }
}
.all-news-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
.all-news-wrapper {
    display: flex;
    gap: 30px;
}
.all-news-column {
    flex: 0 0 63%;
}
.now-reading-sidebar {
    flex: 0 0 35%;
}
.all-news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.all-news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}
.all-news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 40, 162, 0.12);
}
.all-news-date {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #1128a2 0%, #0d1f7a 100%);
    border-radius: 8px;
    color: white;
}
.news-day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.news-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}
.all-news-content {
    flex: 1;
}
.all-news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.news-time {
    font-size: 12px;
    color: white;
    background: var(--color-primary);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600;
}
.news-category {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
}
.all-news-title {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.all-news-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}
.all-news-title a:hover {
    color: var(--color-primary);
}
.all-news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}
.all-news-pagination {
    margin-top: 40px;
}
.all-news-pagination .page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.all-news-pagination .page-numbers li {
    display: inline-block;
}
.all-news-pagination .page-numbers a,
.all-news-pagination .page-numbers span {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s;
}
.all-news-pagination .page-numbers a:hover,
.all-news-pagination .page-numbers .current {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.now-reading-sticky {
    position: sticky;
    top: 20px;
}
.now-reading-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.now-reading-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    white-space: nowrap;
}
.title-separator-right {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #FFD203 100%);
    border-radius: 2px;
}
.now-reading-list {
    display: flex;
    flex-direction: column;
}
.now-reading-item {
    margin-bottom: 20px;
}
.now-reading-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}
.now-reading-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.now-reading-item:hover .now-reading-image img {
    transform: scale(1.05);
}
.now-reading-item-title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 15px 0;
    font-weight: 600;
}
.now-reading-item-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}
.now-reading-item-title a:hover {
    color: var(--color-primary);
}
.item-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFD203 50%, transparent 100%);
    margin: 15px 0;
}
.now-reading-item:last-child .item-separator {
    display: none;
}
@media (max-width: 1024px) {
    .all-news-wrapper {
        flex-direction: column;
    }
    .all-news-column,
    .now-reading-sidebar {
        flex: 0 0 100%;
    }
    .now-reading-sticky {
        position: static;
    }
}
@media (max-width: 768px) {
    .all-news-item {
        flex-direction: column;
    }
    .all-news-date {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 15px;
    }
    .news-day {
        font-size: 24px;
    }
}
.pagination-wrap {
    margin: 40px 0;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: 600;
}
.load-more-wrap {
    text-align: center;
    margin: 40px 0;
}
.load-more-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.load-more-btn:hover:not(:disabled) {
    background: #0d1f7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 40, 162, 0.3);
}
.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-loader svg {
    display: block;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.no-more-posts {
    color: var(--color-text-light);
    font-style: italic;
    margin: 20px 0;
}
.search-results-page {
    max-width: 1550px;
    margin: 0 auto;
    padding: 40px 20px;
}
.search-results-page .page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--color-primary);
}
.search-results-page .page-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
}
.search-results-page .page-title span {
    color: var(--color-primary);
}
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.no-results h2 {
    font-size: 28px;
    color: var(--color-text);
    margin-bottom: 20px;
}
.no-results p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}
.entry-content img,
.page-content img,
.post-content img,
article img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}
.entry-content .wp-block-image img,
.entry-content .aligncenter img,
.entry-content .alignleft img,
.entry-content .alignright img {
    max-width: 100%;
    height: auto;
}
.entry-content .aligncenter {
    text-align: center;
    margin: 20px auto;
}
.entry-content .alignleft {
    float: left;
    margin: 10px 20px 10px 0;
}
.entry-content .alignright {
    float: right;
    margin: 10px 0 10px 20px;
}
.single-post .entry-content img {
    width: 100%;
    max-width: 800px;
    height: 450px; 
    object-fit: cover; 
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 1600px) {
    .main-content-wrapper {
        max-width: 1400px;
    }
    .container {
        max-width: 1400px;
    }
}
@media (max-width: 1200px) {
    .main-content-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
    .main-content-column {
        flex: 0 0 70%;
    }
    .sidebar-news {
        flex: 0 0 28%;
    }
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .category-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .main-content-wrapper {
        flex-direction: column;
    }
    .main-content-column,
    .sidebar-news {
        flex: 0 0 100%;
    }
    .featured-post {
        grid-template-columns: 1fr;
    }
    .featured-post-image img {
        height: auto;
    }
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .header-logo img {
        height: 60px;
    }
    .header-social {
        gap: 10px;
    }
    .header-social a {
        font-size: 20px;
    }
    .topmenu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .topmenu a {
        padding: 10px 15px;
        font-size: 12px;
    }
    .featured-post {
        padding: 15px;
    }
    .featured-post-image img {
        height: auto;
    }
    .featured-post-title {
        font-size: 20px;
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .category-posts-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    .category-post-image {
        height: auto !important;
    }
    .sidebar-news-list {
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .header-bottom .topmenu {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 15px;
        background: var(--color-primary);
        color: white;
        border: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }
    .mobile-menu-toggle:hover {
        background: #0d1f7a;
    }
    .mobile-menu-toggle.active {
        background: #0d1f7a;
    }
    .mobile-menu-toggle.active i {
        transform: rotate(180deg);
    }
    .mobile-menu-toggle i {
        transition: transform 0.3s;
        font-size: 14px;
    }
        font-size: 18px;
        transition: transform 0.3s;
    }
    .mobile-menu-toggle.active i {
        transform: rotate(180deg);
    }
    .mobile-menu-dropdown {
        display: none;
        background: white;
        border-top: 2px solid var(--color-primary);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 999;
    }
    .mobile-menu-dropdown.active {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .mobile-menu-dropdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-menu-dropdown li {
        border-bottom: 1px solid #f0f0f0;
    }
    .mobile-menu-dropdown li:last-child {
        border-bottom: none;
    }
    .mobile-menu-dropdown a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        color: var(--color-text);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s;
    }
    .mobile-menu-dropdown a:hover,
    .mobile-menu-dropdown .current-menu-item a {
        background: rgba(17, 40, 162, 0.05);
        color: var(--color-primary);
        padding-left: 25px;
    }
    .mobile-menu-dropdown a i {
        font-size: 14px;
        opacity: 0.5;
    }
}
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-menu-dropdown {
        display: none !important;
    }
    .header-menu-search {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
.updated-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 5px;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 2px 5px rgba(255, 68, 68, 0.3);
}
@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(255, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(255, 68, 68, 0.5);
    }
}
.sidebar-news-item-title .updated-badge {
    display: inline-block;
    vertical-align: middle;
}
.header-middle {
    text-align: center;
}
.header-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.header-navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.header-nav-search {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.search-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
}
.search-toggle:hover {
    opacity: 0.8;
}
.header-search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.header-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-search-dropdown .search-form {
    display: flex;
    border: 1px solid #eee;
    border-radius: 4px;
}
.header-search-dropdown .search-field {
    border: none;
    padding: 10px;
    width: 100%;
    outline: none;
}
.header-search-dropdown .search-submit {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}
.sidebar-news {
    position: static; 
    height: auto;
    align-self: stretch; 
    margin-top: 0;
    padding-top: 5px;
}
.sidebar-news-list {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.sidebar-news-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    padding-left: 15px; 
    border-bottom: 3px solid var(--color-primary);
}
.sidebar-news-item {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}
.sidebar-news-item:last-child {
    border-bottom: none;
}
.sidebar-news-item:hover {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}
.sidebar-news-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}
.sidebar-news-link:hover {
    transform: translateX(5px);
}
.sidebar-news-time {
    display: inline-block;
    font-size: 11px;
    color: white;
    background: var(--color-primary);
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 5px;
    font-weight: 600;
}
.sidebar-news-item-title {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text);
    margin: 5px 0 0 0;
    font-weight: 500;
}
.sidebar-news-link:hover .sidebar-news-item-title {
    color: var(--color-primary);
}
.footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
}
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .sidebar-news {
        position: static; 
    }
}
@media (max-width: 768px) {
    .header-nav-search {
        position: static;
        transform: none;
        margin-left: 15px;
    }
    .header-navigation-wrapper {
        justify-content: space-between;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}
.header-menu-search {
    margin-left: auto !important;
    padding-left: 20px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
}
.header-menu-search form {
    display: flex !important;
    align-items: center !important;
    background: white !important; 
    border-radius: 25px !important;
    padding: 0 !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    overflow: visible !important;
    height: 38px !important;
    min-width: 250px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important; 
}
.header-menu-search input[type="search"] {
    background: white !important; 
    border: none !important;
    color: #2f3a4a !important; 
    padding: 8px 15px !important;
    width: 180px !important;
    font-size: 14px !important;
    outline: none !important;
    -webkit-appearance: none !important;
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
}
.header-menu-search input[type="search"]::placeholder {
    color: #999 !important; 
    opacity: 1 !important;
}
.header-menu-search button {
    background: var(--color-primary) !important; 
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 0 23px 23px 0 !important;
    transition: all 0.2s !important;
}
.header-menu-search button:hover {
    background: #0d1f7a !important; 
    color: white !important;
}
.header-menu-search button i {
    font-size: 16px !important;
    display: block !important;
    color: white !important;
}
@media (min-width: 769px) {
    .header-menu-search {
        display: flex !important;
    }
}
@media (max-width: 768px) {
    .header-menu-search {
        display: none !important;
    }
}
.header-nav-search-visible .search-submit:hover {
    transform: scale(1.1);
    opacity: 1;
}
@media (max-width: 768px) {
    .header-nav-search-visible {
        position: static;
        transform: none;
        margin: 10px 0;
        width: 100%;
    }
    .header-nav-search-visible .search-form {
        width: 100%;
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
    }
    .header-nav-search-visible .search-field {
        width: 100%;
        color: var(--color-text);
    }
    .header-nav-search-visible .search-field::placeholder {
        color: var(--color-text-light);
    }
    .header-nav-search-visible .search-submit {
        color: var(--color-primary);
    }
}
.box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}
.box-head {
    padding: 12px 15px;
    border-bottom: 3px solid #1128a2;
    background: white;
}
.box-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2F3A4A;
    margin: 0;
}
.box-sub {
    font-size: 11px;
    color: rgba(47, 58, 74, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.featured-news {
}
.featured-list {
    padding: 10px 15px;
}
.featured-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(47, 58, 74, 0.1);
    transition: background 0.2s ease;
}
.featured-item:last-child {
    border-bottom: none;
}
.featured-item:hover {
    background: rgba(17, 40, 162, 0.02);
}
.featured-item a {
    display: block;
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    font-size: 14px;
    color: #2F3A4A;
    transition: color 0.3s ease;
}
.featured-item a:hover {
    color: #1128a2;
}
.featured-meta {
    margin-top: 6px;
    font-size: 11px;
    color: rgba(47, 58, 74, 0.5);
    font-weight: 600;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.featured-tag {
    color: #1128a2;
    font-weight: 700;
    font-family: 'Muller', sans-serif;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
}
.featured-time {
    font-family: 'Muller', sans-serif;
    font-size: 11px;
    color: rgba(47, 58, 74, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.featured-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    background: #f8f9fa;
    color: #2F3A4A;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(47, 58, 74, 0.15);
}
.featured-pill.updated {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}
.right-featured-col::-webkit-scrollbar,
.single-post-sidebar::-webkit-scrollbar {
    width: 4px;
}
.right-featured-col::-webkit-scrollbar-track,
.single-post-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.right-featured-col::-webkit-scrollbar-thumb,
.single-post-sidebar::-webkit-scrollbar-thumb {
    background: rgba(17, 40, 162, 0.2);
    border-radius: 2px;
}
.right-featured-col::-webkit-scrollbar-thumb:hover,
.single-post-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(17, 40, 162, 0.4);
}
