.homepage_blog_4.type-art {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-gap: 1rem;
    padding: 1rem 0;
}

.homepage_blog_4.type-art .article {
    background-color: #f5f5f5;
    padding: .6rem;
    border-radius: 10px;
}

.homepage_blog_4.type-art .article:first-child {
    grid-column: 1/3;
    grid-row: span 3;
}

.homepage_blog_4.type-art .article:first-child .inner-article {
    padding: .5rem;
}

.homepage_blog_4.type-art .article:first-child .inner-article h3 {
    font-size: 1em;
}

.homepage_blog_4.type-art .article:nth-child(2) {
    grid-column: 3/5;
    grid-row: 1;
}

.homepage_blog_4.type-art .article:nth-child(3) {
    grid-column: 3/5;
    grid-row: 2;
}

.homepage_blog_4.type-art .article:nth-child(4) {
    grid-column: 3/5;
    grid-row: 3;
}

.homepage_blog_4.type-art .article:not(:first-child) {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.homepage_blog_4.type-art .article:not(:first-child) .image a {
    display: inline-block;
}

.homepage_blog_4.type-art .article .image {
    margin: 0;
    width: 100%;
}

.homepage_blog_4.type-art .article .image img {
    border-radius: 5px;
    width: 100%;
}

.homepage_blog_4.type-art .article .inner-article {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.homepage_blog_4.type-art .article .inner-article h3 {
    font-weight: bold;
    margin: 0 !important;
    width: 100%;
    order: 1;
}

.homepage_blog_4.type-art .article .inner-article h3 a {
    font-weight: bold;
}

.homepage_blog_4.type-art .article .inner-article .perex {
    width: 100%;
    margin-bottom: 1rem;
    font-size: .85em;
    order: 2;
}

.homepage_blog_4.type-art .article .inner-article .date {
    order: 3;
    opacity: .5;
    font-size: .85em;
}

.homepage_blog_4.type-art .article .inner-article .btn {
    display: flex;
    justify-content: flex-end;
    order: 4;
}

.homepage_blog_4.type-art .article .inner-article .date,
.homepage_blog_4.type-art .article .inner-article .btn {
    width: 50%;
}

.homepage_blog_4.type-art .article .inner-article .btn .detail-btn {
    margin: 0;
    padding: 0;
    background: transparent;
    color:#0d6efd;
    font-weight: normal;
    font-size: .85em;
}

.homepage_blog_4.type-art .article .inner-article .btn .detail-btn:hover {
    text-decoration: underline;
}

.homepage_blog_4.type-art .article:not(:first-child) .inner-article h3 {
    font-size: .9em;
}

@media only screen and (max-width: 1160px) {
    .homepage_blog_4.type-art {
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: initial;
        grid-template-rows: initial;
    }

    .homepage_blog_4.type-art .article {
        width: 100%;
    }
}

@media only screen and (max-width: 399px) {
    .homepage_blog_4.type-art .article:not(:first-child) {
        flex-wrap: wrap;
    }

    .homepage_blog_4.type-art .article:not(:first-child) .image a {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .homepage_blog_4.type-art .article:not(:first-child) {
        flex-wrap: wrap;
    }

    .homepage_blog_4.type-img .article:not(:first-child) .image a {
        width: 100%;
    }
}