.doitac-heading {
    color: #3f3f3f;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.61; /* 161.111% */
    text-transform: uppercase;
    margin-bottom: 32px;
    width: 100%;
    text-align: center;
}
.doitac-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.doitac-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    .item-doitac-thumnail {
        height: 195px;
        border-radius: 10px;
        object-fit: cover;
    }
    .item-doitac-date {
        margin-top: 16px;
        margin-bottom: 8px;
        color: #333;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 1.71; /* 171.429% */
    }
    .item-doitac-title {
        color: #019444;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.5; /* 150% */
    }
}
@media screen and (max-width: 849px) {
    .doitac-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
