@charset "UTF-8";

.article-link_box {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
}

.article-link {
    padding: 25px;
    border: 2px solid #cde8fe;
}

.article-link-content {
    display: grid;
    gap: 5px;
    grid-template-rows: 200px 1fr;
}

.article-textarea {
    background-color: #fff;
    padding: 10px;
    display: grid;
    grid-template-rows: repeat(2,auto);
}

.article-link-img {
    text-align: center;
    position: relative;
}

.article-text-tittle {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    grid-row: 1 ;
    grid-column: 1;
}

.icon-article {
    font-size: 0.9em;
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: #0e3192;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 22px;
    padding-left: 2px;
    margin: auto;
}
.c-img--s2 img {
    max-width: 280px;
    max-height: 200px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.c-img--s1 img {
    max-width: 150px;
    max-height: 200px;
}

.c-img--s3 img {
    max-width: 130px;
    max-height: 200px;
}

@media screen and (max-width : 767px) {
    .c-img--s2 img {
    max-width: 100%;
    width: 300px;
    }

    .article-link_box {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: repeat(3,1fr);
    }
}

@media screen and (max-width : 599px) {
    .article-link_box {
        display: grid;
        gap: 15px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
}