.top_section.top_news_section {
    padding: 0 0cqw 0 10cqw;
}

.top_news_list {
    display: flex;
    flex-direction: column;
    gap: 4cqw;
    margin-top: 1cqw;
}

.news_item {
    display: flex;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    overflow: visible;
    color: inherit;
    position: relative;
}

.news_thumb {
    width: 47%;
    position: relative;
}

.news_thumb img {
    width: 100%;
    max-width: 100%;
    max-height: auto;
    height: auto;
    display: block;
    border-radius: 15px 0 0 15px;
}

.news_pickup {
    position: absolute;
    top: -1.5cqw;
    left: -1.5cqw;
    background: #e60012;
    color: #fff;
    width: 4.5cqw;
    height: 4.5cqw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2cqw;
    line-height: 1.1;
    text-align: center;
    transform: rotate(-15deg);
    z-index: 10;
}

.news_info {
    width: 65%;
    padding: 1.5cqw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news_date {
    font-size: var(--font-xs);
    font-weight: 700;
    margin: 0 0.3em;
}

.news_title {
    font-size: var(--font-m);
    font-weight: bold;
    line-height: 1.3;
    margin: 0.2em 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;	}

@media (max-width: 767px) {
    .news_item {
        flex-direction: column;
        background: #fff;
        border-radius: 15px;
    }

    .news_thumb img {
        border-radius: 15px 15px 0 0;
    }

    .news_thumb,
    .news_info {
        width: 100%;
    }

    .news_info {
        padding: 4cqw;
    }

    .news_pickup {
        width: 9.5cqw;
        height: 9.5cqw;
        font-size: 2.2cqw;
    }

    .news_title {
        line-height: 1.4;
    }
}
