.top_section.top_recommend_section {
    padding: 0 0cqw 0 10cqw;
}

.top_recommend_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2cqw;
}

.recommend_item {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.recommend_thumb {
    width: 100%;
    height: 100%;
}

.recommend_thumb img {
    max-width: 100%;
    max-height: auto;
    width: 100%;
    height: auto;
}

.recommend_info {
    padding: 1.5cqw;
}

.recommend_date {
    font-size: var(--font-xs);
    font-weight: 700;
    margin: 0 0.3em;
}

.recommend_title {
    font-size: var(--font-m);
    font-weight: bold;
    line-height: 2cqw;
    margin: 0.2cqw 0 0.5cqw;

    overflow: hidden;
    min-height: 2.8em;
}

@media (max-width: 767px) {
    .top_recommend_grid {
        grid-template-columns: 1fr;
        gap: 4cqw;
    }

    .recommend_info {
        padding: 4cqw;
    }

    .recommend_title {
        line-height: 1.4;
    }
}
