.article_i {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    padding: 20px 0;
}

.article_i:hover {
    text-decoration: none !important;
    background: #F0F0F033;
    border-radius: 10px;
}

.article_i_img {
    display: block;
    width: calc(100% - 20px);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 300/230;
}

.article_i_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 345ms ease;
}

.article_i_img:hover img {
    transform: scale(1.1);
}

.article_i_attr {
    display: flex;
    width: calc(100% - 40px);
    align-items: center;
    margin: 16px 0 0 0;
}

.article_i_attr_cat {
    display: flex;
    border-radius: 4px;
    border: 2px solid #C80023;
    padding: 6px 10px;
    color: #C80023;
    line-height: 1;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    text-transform: uppercase;
}

.article_i_attr_dot {
    display: block;
    width: 5px;
    height: 5px;
    background: #838383;
    border-radius: 50%;
    margin: 0 10px;
}

.article_i_attr_date {
    display: flex;
    width: min-content;
    color: #8B8B8B;
    line-height: 1;
    font-family: "IBM Plex Sans", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
}

.article_i_title {
    display: block;
    width: calc(100% - 40px);
    line-height: 1.18;
    color: #000000;
    font-family: "IBM Plex Sans", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    margin-top: 10px;
}
