 .blog-page {
        padding: 3rem 0;
    }

    .blog-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .blog-header h1 {
        color: #233D63;
        font-weight: 700;
        margin-bottom: 3rem;
    }

    /* Стили для тегов категорий */
    .blog-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
        justify-content: center;
    }

    .blog-category {
        padding: 0.8rem 1.5rem;
        background: #fff;
        border-radius: 100px;
        color: #4a5568;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        border: 1px solid #e9ecef;
        font-size: 1.3rem;
    }

    .blog-category:hover,
    .blog-category.active {
        background: #233D63;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(35, 61, 99, 0.1);
    }

    /* Стили для карточек блога */
    .blog-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: auto;
        border: 1px solid #e9ecef;
    }

    .blog-card__main {
        display: flex;
        flex-direction: row;
    }

    .blog-card__image {
        position: relative;
        width: 300px;
        min-width: 300px;
        overflow: hidden;
    }

    .blog-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-card__content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-card__title {
        font-size: 1.6rem;
        font-weight: 700;
        color: #233D63;
        margin-bottom: 1rem;
    }

    .blog-card__title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .blog-card__title a:hover {
        color: #1a2d4a;
    }

    .blog-card__excerpt {
        color: #4a5568;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    .blog-card__footer {
        padding: 1rem 1.5rem;
        background: #f8fafc;
        border-top: 1px solid #e9ecef;
    }

    .blog-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blog-card__tag {
        padding: 0.3rem 0.8rem;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 4px;
        color: #4a5568;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .blog-card__tag:hover {
        background: #233D63;
        color: #fff;
        border-color: #233D63;
    }

    .blog-card__meta {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: #718096;
        font-size: 0.9rem;
    }

    /* Кнопка "Показать еще" */
    .load-more {
        text-align: center;
        margin-top: 3rem;
    }

    .load-more__button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: #233D63;
        color: #fff;
        border: none;
        border-radius: 100px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .load-more__button:hover {
        background: #1a2d4a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(35, 61, 99, 0.2);
    }

    /* Адаптивность */
    @media (max-width: 992px) {
        .blog-grid {
            max-width: 85%;
        }
    }

    @media (max-width: 768px) {
        .blog-grid {
            max-width: 100%;
        }

        .blog-card__main {
            display: flex;
            flex-direction: column;
        }

        .blog-card {
            flex-direction: column;
        }

        .blog-card__image {
            width: 100%;
            min-width: 100%;
            padding-top: 56.25%;
            /* Соотношение 16:9 */
        }

        .blog-card__image img {
            position: absolute;
            top: 0;
            left: 0;
        }

        .blog-card__content {
            padding: 1.25rem;
        }

        .blog-card__title {
            font-size: 1.8rem;
        }
    }
