        :root {
            --sitehub-primary: #667eea;
            --sitehub-primary-dark: #5a6fd8;
            --sitehub-secondary: #764ba2;
            --sitehub-light-blue: #a8c8f5;
            --sitehub-light-purple: #b8a8e8;
        }

        /* Контейнер статті */
        .blog-article {
            max-width: 980px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Заголовок статті */
        .blog-article .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #2d3748;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .blog-article .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            border-radius: 2px;
        }

        /* Мета-інформація */
        .blog-article .post-meta {
            background: rgba(102, 126, 234, 0.05);
            border-left: 4px solid var(--sitehub-primary);
            padding: 20px 25px;
            margin-bottom: 2.5rem;
            border-radius: 0 12px 12px 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #4a5568;
            position: relative;
            overflow: hidden;
        }

        .blog-article .post-meta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .blog-article .post-meta strong {
            color: var(--sitehub-primary);
            font-weight: 600;
        }

        /* Контент статті */
        .blog-article .description {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.3);
            line-height: 1.8;
            font-size: 1.1rem;
            color: #4a5568;
        }

        /* Зображення в статті */
        .blog-article .description .img-fluid {
            border-radius: 16px;
            margin: 0 0 2rem 0;
            width: 100%;
            height: auto;
            box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
            transition: all 0.3s ease;
        }

        .blog-article .description .img-fluid:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
        }

        /* Типографіка контенту */
        .blog-article .description h1,
        .blog-article .description h2,
        .blog-article .description h3,
        .blog-article .description h4,
        .blog-article .description h5,
        .blog-article .description h6 {
            color: #2d3748;
            font-weight: 600;
            margin: 2rem 0 1rem 0;
            line-height: 1.3;
        }

        .blog-article .description h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 0.5rem;
        }

        .blog-article .description h3 {
            font-size: 1.5rem;
            color: var(--sitehub-primary);
        }

        .blog-article .description p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .blog-article .description p:first-of-type {
            font-size: 1.2rem;
            font-weight: 500;
            color: #2d3748;
            margin-bottom: 2rem;
        }

        .blog-article .description p:first-of-type::first-letter {
            float: left;
            font-size: 4rem;
            line-height: 3.5rem;
            padding-right: 8px;
            margin-top: 4px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Списки */
        .blog-article .description ul,
        .blog-article .description ol {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        .blog-article .description li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .blog-article .description ul li::marker {
            color: var(--sitehub-primary);
        }

        /* Цитати */
        .blog-article .description blockquote {
            border-left: 4px solid var(--sitehub-primary);
            background: rgba(102, 126, 234, 0.05);
            margin: 2rem 0;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            position: relative;
        }

        .blog-article .description blockquote::before {
            content: '\f10d'; /* Quote icon */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            color: var(--sitehub-primary);
            font-size: 1.5rem;
            opacity: 0.3;
        }

        /* Код */
        .blog-article .description code {
            background: #f7fafc;
            color: var(--sitehub-primary);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.9em;
            border: 1px solid #e2e8f0;
        }

        .blog-article .description pre {
            background: #2d3748;
            color: #e2e8f0;
            padding: 1.5rem;
            border-radius: 12px;
            overflow-x: auto;
            margin: 1.5rem 0;
            box-shadow: 0 10px 30px rgba(45, 55, 72, 0.3);
        }

        .blog-article .description pre code {
            background: transparent;
            color: inherit;
            padding: 0;
            border: none;
        }

        /* Посилання */
        .blog-article .description a {
            color: var(--sitehub-primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .blog-article .description a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            transition: width 0.3s ease;
        }

        .blog-article .description a:hover {
            color: var(--sitehub-primary-dark);
        }

        .blog-article .description a:hover::after {
            width: 100%;
        }

        /* Таблиці */
        .blog-article .description table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
        }

        .blog-article .description th {
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .blog-article .description td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .blog-article .description tr:hover {
            background: rgba(102, 126, 234, 0.05);
        }

        /* Анімації появи */
        .blog-article .page-title {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .blog-article .post-meta {
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeInLeft 0.8s ease 0.2s forwards;
        }

        .blog-article .description {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Адаптивність */
        @media (max-width: 768px) {
            .blog-article {
                padding: 30px 15px;
            }

            .blog-article .page-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .blog-article .post-meta {
                padding: 15px 20px;
                margin-bottom: 2rem;
                font-size: 0.9rem;
            }

            .blog-article .description {
                padding: 30px 25px;
                border-radius: 16px;
            }

            .blog-article .description p:first-of-type::first-letter {
                font-size: 3rem;
                line-height: 2.5rem;
            }

            .blog-article .description .img-fluid {
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .blog-article {
                padding: 20px 10px;
            }

            .blog-article .page-title {
                font-size: 1.8rem;
            }

            .blog-article .description {
                padding: 25px 20px;
                font-size: 1rem;
                line-height: 1.7;
            }

            .blog-article .description h2 {
                font-size: 1.5rem;
            }

            .blog-article .description h3 {
                font-size: 1.3rem;
            }

            .blog-article .description p:first-of-type {
                font-size: 1.1rem;
            }

            .blog-article .description p:first-of-type::first-letter {
                font-size: 2.5rem;
                line-height: 2rem;
            }
        }
		
		.author-bio {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin: 3rem 0;
            box-shadow: 0 15px 45px rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .author-bio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
        }

        .author-bio:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
        }

        /* Заголовок секції */
        .author-bio .author-header {
            margin-bottom: 25px;
            position: relative;
        }

        .author-bio .author-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-bio .author-header h3::before {
            content: '\f007'; /* User icon */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
        }

        /* Контент автора */
        .author-bio .author-content {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        /* Аватар автора */
        .author-bio .author-avatar {
            flex-shrink: 0;
            position: relative;
        }

        .author-bio .author-avatar img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid transparent;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%) padding-box,
                        linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%) border-box;
            transition: all 0.3s ease;
        }

        .author-bio .author-avatar img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .author-bio .author-avatar::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            z-index: -1;
            opacity: 0.3;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        /* Інформація про автора */
        .author-bio .author-info {
            flex: 1;
        }

        .author-bio .author-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .author-bio .author-title {
            font-size: 0.75rem;
            color: var(--sitehub-primary);
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .author-bio .author-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        /* Статистика автора */
        .author-bio .author-stats {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .author-bio .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 70px;
        }

        .author-bio .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .author-bio .stat-label {
            font-size: 0.8rem;
            color: #718096;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        /* Соціальні мережі */
        .author-bio .author-social {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .author-bio .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(102, 126, 234, 0.1);
            color: var(--sitehub-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .author-bio .social-link:hover {
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .author-bio .social-link.email:hover { background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%); }
        .author-bio .social-link.linkedin:hover { background: linear-gradient(135deg, #0077b5 0%, #005885 100%); }
        .author-bio .social-link.telegram:hover { background: linear-gradient(135deg, #0088cc 0%, #006699 100%); }

        /* Кнопка "Більше статей" */
        .author-bio .more-articles {
            margin-top: 20px;
        }

        .author-bio .btn-more {
            background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .author-bio .btn-more:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        /* Адаптивність */
        @media (max-width: 768px) {
            .author-bio {
                padding: 25px 20px;
                margin: 2rem 0;
            }

            .author-bio .author-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .author-bio .author-avatar {
                align-self: center;
            }

            .author-bio .author-stats {
                justify-content: center;
                gap: 20px;
            }

            .author-bio .author-social {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .author-bio {
                padding: 20px 15px;
                border-radius: 16px;
            }

            .author-bio .author-header h3 {
                font-size: 1.3rem;
            }

            .author-bio .author-name {
                font-size: 1.2rem;
            }

            .author-bio .author-stats {
                gap: 15px;
            }

            .author-bio .stat-item {
                min-width: 60px;
            }

            .author-bio .stat-number {
                font-size: 1.3rem;
            }
        }
		
		.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовок сторінки */
.blog-container .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #2d3748;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.blog-container .page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
    border-radius: 2px;
}

/* Контейнер списку статей */
.blog-container .posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Елемент статті */
.blog-container .posts-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.blog-container .posts-item:nth-child(1) { animation-delay: 0.1s; }
.blog-container .posts-item:nth-child(2) { animation-delay: 0.2s; }
.blog-container .posts-item:nth-child(3) { animation-delay: 0.3s; }
.blog-container .posts-item:nth-child(4) { animation-delay: 0.4s; }
.blog-container .posts-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-container .posts-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-container .posts-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.12);
}

.blog-container .posts-item:hover::before {
    opacity: 1;
}

/* Зображення статті */
.blog-container .posts-item .post-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.blog-container .posts-item .post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-container .posts-item .post-image:hover img {
    transform: scale(1.05);
}

.blog-container .posts-item .post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-container .posts-item .post-image:hover::after {
    opacity: 1;
}

/* Заголовок статті */
.blog-container .posts-title {
    margin-bottom: 15px;
}

.blog-container .posts-title a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: block;
}

.blog-container .posts-title a:hover {
    background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Опис статті */
.blog-container .posts-descr {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Кнопка "Читати далі" */
.blog-container .read-more-posts {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sitehub-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.blog-container .read-more-posts::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--sitehub-primary) 0%, var(--sitehub-secondary) 100%);
    transition: width 0.3s ease;
}

.blog-container .read-more-posts:hover {
    color: var(--sitehub-primary-dark);
    transform: translateX(5px);
}

.blog-container .read-more-posts:hover::after {
    width: 100%;
}

/* Варіант без зображення */
.blog-container .posts-item.no-image {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.blog-container .posts-item.no-image .posts-title a {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* Мета-інформація */
.blog-container .post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #718096;
}

.blog-container .post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-container .post-meta i {
    color: var(--sitehub-primary);
}

/* Теги статей */
.blog-container .post-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-container .post-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--sitehub-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-container .post-tag:hover {
    background: var(--sitehub-primary);
    color: white;
    transform: translateY(-1px);
}

/* Адаптивність */
@media (max-width: 768px) {
    .blog-container {
        padding: 30px 15px;
    }

    .blog-container .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .blog-container .posts-item {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .blog-container .posts-item .post-image img {
        height: 180px;
    }

    .blog-container .posts-title a {
        font-size: 1.3rem;
    }

    .blog-container .posts-descr {
        font-size: 0.95rem;
    }

    .blog-container .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .blog-container .posts-item {
        padding: 20px 15px;
    }

    .blog-container .posts-item .post-image img {
        height: 160px;
    }

    .blog-container .posts-title a {
        font-size: 1.2rem;
    }

    .blog-container .posts-list {
        gap: 20px;
    }
}