    .h1-title {
        font-family: "IBMPlexSans-Bold", sans-serif;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 0.4px;
        margin: 0 0 16px;
        font-size: 56px;
        line-height: 1.14;
        color: #303337;
    }

    @media (min-width: 0px) and (max-width: 767px) {
        .topPartsGray {
            background: #f7f7f9;
            border-bottom-right-radius: 2000px 200px;
            border-bottom-left-radius: 2000px 200px;
            padding-top: 30px;
        }
    }
    .h1-title-mob {
        font-family: "IBMPlexSans-Bold", sans-serif;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.14;
        letter-spacing: 0.4px;
        color: #303337;
        font-size: 38px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    /* Blog cards — same style as ПОЛЕЗНЫЕ СТАТЬИ ПО ТЕМЕ */
    .blog-articles-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        min-height: 260px;
        aspect-ratio: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0;
        box-sizing: border-box;
        transition: box-shadow 0.2s ease;
        text-decoration: none;
        color: inherit;
        width: 100%;
    }
    .blog-articles-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        border: 4px solid #EEEDF2;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 1;
    }
    .blog-articles-card:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        color: inherit;
    }
    .blog-articles-card:hover::after {
        opacity: 1;
    }
    .blog-articles-card__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .blog-articles-card__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.77) 0%, rgba(0,0,0,0.42) 40%, transparent 75%);
        pointer-events: none;
    }
    .blog-articles-card__body {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 20px 24px 24px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
    }
    .blog-articles-card__text {
        font-family: 'IBMPlexSans-Medium', sans-serif;
        font-weight: 600;
        font-size: clamp(14px, 1vw + 6px, 18px);
        line-height: 1.35;
        color: #fff;
        text-align: left;
        margin: 0 0 12px 0;
        text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }
    .blog-articles-card__meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 16px;
        font-size: 14px;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.5);
    }
    .blog-articles-card__meta-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.5);
    }
    .blog-articles-card__meta-item img {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    .blog-articles-grid .col-md-4 {
        margin-bottom: 25px;
    }
    @media (max-width: 767px) {
        .blog-articles-card {
            min-height: 200px;
        }
        .blog-articles-card__body {
            padding: 16px 20px 20px;
        }
        .blog-articles-card__text {
            font-size: 20px;
        }
    }
