.section-content {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-left: 20px;
    margin-right: 20px;
    flex-wrap: wrap;
}

.section-content .content {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: center;

    border-radius: 15px;
    background-color: var(--background-color);
}

.section-content .head-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.section-content .title {
    font-family: Poppins;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 330px;
    border-bottom: 2px solid var(--primary-color);
}
.section-content .img-article {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 10px;
}

.section-content .item-article {
    display: flex;
    justify-content: space-between;

    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.section-content ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-content .article {
    display: flex;
    padding: 10px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.section-content .article .title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-content .content-item {
    align-self: stretch;
}

.section-content .title-article {
    display: flex;
    font-size: 20px;
    max-width: 550px;
    flex-direction: column;
    justify-content: center;
    color: var(--black-color);
}

.section-content .icon-article {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;

}

.section-content .ic {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    padding-top: 12px;
    width: 46px;
    height: 46px;
}

@media (max-width: 1440px) { 
    .section-content .head-title {
        margin-left: 20px;
    }
}

@media (max-width: 768px) { 
    .section-content .head-title {
        margin-left: 30px;
    }

    .section-content .title-article {
        font-size: 16px;
    }

    .section-content .article {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .section-content .head-title{
        flex-direction: column;
        margin-left: 0px;
    }
    .section-content .title-article {
        font-size: 12px;
        text-align: center;
    }
    .section-content .title-wrapper {
        flex-direction: column;
    }
    .section-content .article {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
}