.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 97px;
}

.blog-title h1 {
    font-family: 'Tilda';
    font-size: 36px;
    line-height: 15px;
    font-weight: 600;
    color: #0A0D14;
    margin-bottom: 35px;
}

.blog-card {
    transition: 0.3s ease;
}

.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    margin-bottom: 20px;
}

.blog-card__title {
    font-family: 'Tilda';
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 24px;
}

.blog-card__date {
    font-size: 16px;
    font-family: 'Tilda';
    line-height: 24px;
    font-weight: 500;
    color: #686464;
}

.blog-card:hover {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 22px;
    }

    .blog-title h1 {
        font-size: 20px;
        line-height: 15px;
        margin-bottom: 10px;
    }
    .blog-filter {
        margin-bottom: 28px !important;
    }
}

.blog-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.blog-filter__btn {
    padding: 11px 55px;
    border-radius: 40px;
    background: #A1AFFE;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Tilda';
    font-size: 18px;
    line-height: 24px;
    transition: 0.3s;
}

@media(max-width: 768px) {
    .blog-filter__btn {
        font-size: 16px;
    }
}

.blog-filter__btn:hover {
    background: #5a6cff;
    color: #fff;
}

.blog-filter__btn.active {
    background: #546DFC;
}

.breadcrumbs {
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 70px;
    margin-top: 40px;
    color: #999999;
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow: hidden;
}

@media(max-width: 768px) {
    .breadcrumbs {
        gap: 10px;
        margin-bottom: 40px;
        margin-top: 5px;
    }
}

.breadcrumbs__link:last-child {
    display: block;
}

.breadcrumbs__link:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    max-width: 100%;
}