* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary: #8b5cf6;
    --primary-dark: #5b21b6;
    --secondary: #22d3ee;
    --accent: #f472b6;
    --dark: #050915;
    --darker: #0b1224;
    --light: rgba(255, 255, 255, 0.04);
    --light-bg: #0f172a;
    --gray: #cbd5e1;
    --light-gray: rgba(255, 255, 255, 0.12);
    --text-color: #e2e8f0;
    --text-secondary: #cbd5e1;
    --border-radius: 14px;
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    --glow: 0 18px 50px rgba(139, 92, 246, 0.35);
    --transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

body {
    background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.18), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.15), transparent 32%),
                radial-gradient(circle at 50% 80%, rgba(244, 114, 182, 0.1), transparent 30%),
                #050915;
    color: var(--text-color);
    line-height: 1.75;
    overflow-x: hidden;
    min-height: 100vh;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-icon-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.5px;
    text-shadow: 0 10px 35px rgba(139, 92, 246, 0.45);
}

nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

nav a {
    font-weight: 600;
    text-decoration: none;
    color: #e2e8f0;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.3px;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    border-radius: 999px;
    box-shadow: var(--glow);
}

nav a:hover, nav a.active {
    color: #f8fafc;
}

nav a:hover:after, nav a.active:after {
    transform: scaleX(1);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 100;
    position: relative;
    margin-left: auto;
    order: 3;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.breadcrumbs {
    padding: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--secondary);
}

.breadcrumbs a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 10px;
    color: var(--secondary);
    opacity: 0.7;
}

/* Article Styles */
.article-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.article-tag {
    padding: 0.6rem 1.3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.18));
    color: #e0f2fe;
    border-radius: 999px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--glow);
}

.article-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: #f8fafc;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
}

.author-details {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.author-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #f8fafc;
}

.publish-date {
    color: #94a3b8;
    font-size: 0.95rem;
}

.article-image {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(5, 9, 21, 0.7) 100%);
    pointer-events: none;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.article-section {
    margin-bottom: 2.5rem;
    color: var(--text-color); /* Явное указание цвета текста */
}

.article-section h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--light-gray);
    color: #f8fafc;
    letter-spacing: -0.3px;
}

.article-section h3 {
    font-size: 1.55rem;
    margin: 1.8rem 0 1rem;
    color: #f8fafc;
}

.article-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.article-section blockquote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    position: relative;
    color: var(--text-secondary);
    box-shadow: var(--shadow);
}

.article-section blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.18;
    font-family: serif;
}

.article-section ol, .article-section ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.article-section li {
    margin-bottom: 0.8rem;
}

/* Адаптивные изображения в контенте статьи */
.article-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-section p img,
.article-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

/* Изображения в параграфах */
.article-section p:has(img) {
    text-align: center;
    margin: 2rem 0;
}

/* Стили для больших изображений */
.article-section img[style*="width"] {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}

.statistics-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-card {
    text-align: center;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), var(--glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #a78bfa;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow);
}

.stat-label {
    font-weight: 600;
    color: #cbd5e1;
    font-size: 1rem;
}

.social-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 4rem;
}

.share-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    color: #e2e8f0;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.share-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35), var(--glow);
}

.share-btn.vk { color: #0077FF; }
.share-btn.telegram { color: #2AABEE; }
.share-btn.twitter { color: #1DA1F2; }
.share-btn.whatsapp { color: #25D366; }

.related-news {
    margin: 5rem 0 4rem;
    padding-top: 2rem;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 999px;
    box-shadow: var(--glow);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.empty-state__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state__title {
    margin-bottom: 1rem;
}

.news-grid--spaced {
    margin-top: 2rem;
}

.news-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), var(--glow);
}

.card-image {
    height: 210px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(5, 9, 21, 0.75) 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .card-image img {
    transform: scale(1.07);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #cbd5e1;
}

.card-excerpt {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.card-tag {
    background: rgba(34, 211, 238, 0.15);
    color: #a5f3fc;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    display: inline-block;
    margin-bottom: 0.8rem;
    width: fit-content;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-title {
    font-size: 1.32rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    line-height: 1.35;
    color: #f8fafc;
}

.card-meta {
    display: flex;
    align-items: center;
    color: #94a3b8;
    font-size: 0.88rem;
    gap: 0.8rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: var(--glow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #0b1224;
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 50px rgba(34, 211, 238, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--light-gray);
    color: #e2e8f0;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.placeholder-text {
    text-align: center;
    color: #cbd5e1;
    padding: 2rem;
}

/* Кнопка в карточках - выравнивание вправо */
.card-content .btn,
.news-content .btn {
    margin-top: 1rem;
    margin-left: auto;
    display: block;
    width: fit-content;
}

/* Footer */
footer {
    background: #050915;
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 20px 60px rgba(0, 0, 0, 0.35);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: white;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 999px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(6px);
}

.footer-logo-block {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #0b1224;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--glow);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(34, 211, 238, 0.35);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 14, 26, 0.9);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 90;
    box-shadow: var(--shadow);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(14px);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    flex: 1;
}

.mobile-menu ul li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    text-decoration: none;
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-menu a:hover, .mobile-menu a.active {
    color: var(--secondary);
}

/* Responsive design */
@media (max-width: 1024px) {
    .statistics-box {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-image {
        height: 350px;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-section img {
        margin: 1.5rem auto;
    }

    .article-section h2 {
        font-size: 1.8rem;
    }
    
    /* Hide desktop navigation */
    nav ul {
        display: none;
    }

    /* Show mobile menu toggle */
    .menu-toggle {
        display: flex;
        margin-left: auto;
        order: 3;
    }
    
    .header-content {
        position: relative;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.9rem;
    }
    
    .menu-toggle {
        width: 44px;
        height: 44px;
    }
    
    .menu-toggle span {
        width: 24px;
    }
    
    .article-meta {
        flex-direction: column;
        text-align: center;
    }
    
    .author-details {
        margin-bottom: 1rem;
    }
    
    .statistics-box,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .page-container {
        padding: 0 1rem;
    }
    
    .header-content {
        height: 65px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 34px;
        height: 34px;
    }
    
    .menu-toggle {
        width: 42px;
        height: 42px;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .breadcrumbs {
        padding: 1.25rem 0;
        font-size: 0.9rem;
    }
    
    .article-title {
        font-size: 1.65rem;
        line-height: 1.4;
    }
    
    .article-tag {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
    
    .article-meta {
        gap: 1.25rem;
    }
    
    .author-img {
        width: 55px;
        height: 55px;
    }
    
    .article-image {
        height: 220px;
    }
    
    .article-content {
        padding: 1.25rem;
    }
    
    .article-section {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .article-section h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .article-section h3 {
        font-size: 1.15rem;
    }
    
    .article-section p {
        margin-bottom: 1rem;
    }
    
    .social-share {
        gap: 0.6rem;
    }
    
    .share-btn {
        width: 42px;
        height: 42px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.15rem;
        line-height: 1.4;
    }
    
    .card-tag {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
    
    .card-meta {
        font-size: 0.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .footer-links {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 320px) {
    .page-container {
        padding: 0 0.75rem;
    }
    
    .header-content {
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .breadcrumbs {
        padding: 1rem 0;
        font-size: 0.85rem;
    }
    
    .article-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .article-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .author-details {
        flex-direction: column;
        text-align: center;
    }
    
    .author-img {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.5rem;
    }
    
    .article-image {
        height: 200px;
        margin: 1.5rem 0;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-section {
        font-size: 0.9rem;
    }
    
    .article-section h2 {
        font-size: 1.3rem;
    }
    
    .article-section h3 {
        font-size: 1.1rem;
    }
    
    .article-section img {
        margin: 1rem auto;
    }
    
    .social-share {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-card {
        margin-bottom: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .card-meta {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        padding: 0;
    }
    
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        font-size: 0.85rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .social-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.75rem;
        padding: 1rem 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

/* Контрастность для лучшей читаемости */
.card-tag, .article-tag {
    color: var(--primary) !important;
}

/* Стили для блока перелинковки */
.internal-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.internal-links strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--darker);
}

.internal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internal-links li {
    margin-bottom: 0.8rem;
}

.internal-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.internal-links a:hover {
    color: var(--primary-dark);
    padding-left: 0.5rem;
}

.internal-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.internal-links a:hover::before {
    opacity: 1;
}

