.bb-news-block {
    margin: 20px 0;
    background: #fff;
}

.bb-news-block__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bb-news-block__head-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.bb-news-block__all {
    font-size: 14px;
    color: #1e88e5;
    text-decoration: none;
    white-space: nowrap;
}

.bb-news-block__all:hover {
    text-decoration: underline;
}

.bb-news-block__list {
    border-top: 1px solid #e8e8e8;
}

.bb-news-block__item {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #e8e8e8;
}

.bb-news-block__date {
    width: 88px;
    min-width: 88px;
    text-align: center;
    flex-shrink: 0;
}

.bb-news-block__day {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 6px;
}

.bb-news-block__month {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: #7d8aa0;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.bb-news-block__year {
    font-size: 12px;
    line-height: 1.2;
    color: #9aa3b1;
}

.bb-news-block__content {
    min-width: 0;
    flex: 1 1 auto;
}

.bb-news-block__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
}

.bb-news-block__title a {
    color: #1c1c1c;
    text-decoration: none;
}

.bb-news-block__title a:hover {
    color: #1e88e5;
}

.bb-news-block__excerpt {
    font-size: 16px;
    line-height: 1.55;
    color: #333;
}

@media (max-width: 768px) {
    .bb-news-block__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .bb-news-block__item {
        gap: 16px;
    }

    .bb-news-block__date {
        width: 72px;
        min-width: 72px;
    }

    .bb-news-block__day {
        font-size: 34px;
    }

    .bb-news-block__title {
        font-size: 24px;
    }

    .bb-news-block__excerpt {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .bb-news-block__item {
        flex-direction: column;
        gap: 12px;
    }

    .bb-news-block__date {
        width: auto;
        min-width: 0;
        text-align: left;
    }

    .bb-news-block__day,
    .bb-news-block__month,
    .bb-news-block__year {
        display: inline-block;
        vertical-align: middle;
        margin: 0 8px 0 0;
    }
}