.n-fa-box{
    display: flex;
    gap: 25px;
    justify-content: center;
}
.n-fa-card{
    width: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.n-fa-card-content{
    position: absolute;
    padding: 40px 24px;
    width: 100%;
    z-index: 2;
}
.n-fa-card img{
    width: 100%;
    transition: all 0.3s ease-out;
}
.n-fa-card:hover img{
    transform: scale(1.05);
}
.n-fa-card:hover .n-fa-more::after{
    transform: translateX(8px);
}
.n-fa-title{
    color: #0175E8;
    font-size: 22px;
    font-weight: 700;
    line-height: 150%; /* 33px */
    margin-bottom: 16px;
}
.n-fa-desc{
    color: #6A6B6D;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%; 
    margin-bottom: 16px;/* 22.5px */
}
.n-fa-more{
    margin-top: 16px;
    padding: 12px 0px;
    color: #0175E8;
    font-size: 16px;
    line-height: 150%; /* 24px */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.n-fa-more::after {
    content: '';
    background-image: url(link.svg);
    margin-left: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    transition: transform .16s linear;
}
.n-fa-tags{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}
.n-fa-tag{
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 400;
    border-radius: 16px;
    border: 1px solid var(--white-color);
    background: rgba(255, 255, 255, 0.80);
    line-height: 32px;
    padding: 0 20px;
}

@media screen and (max-width:1600px) {
    .n-fa-box{
        gap: 24px;
    }
    .n-fa-card{
        width: 384px;
    }
}
@media screen and (max-width:1280px) {
    .n-fa-box{
        gap: 24px;
    }
    .n-fa-card{
        width: 344px;
    }
    .n-fa-title{
        font-size: 20px;
        margin-bottom: 12px;
    }
    .n-fa-desc{
        font-size: 14px;
        margin-bottom: 12px;
    }
    .n-fa-tag {
        font-size: 12px;
        border-radius: 14px;
        line-height: 28px;
        padding: 0 16px;
    }
    .n-fa-card-content {
        padding: 32px 20px;
    }
}
@media screen and (max-width:768px) {
    .n-fa-box{
        gap: 24px;
        flex-wrap: wrap;
    }
    .n-fa-card{
        width: 100%;
    }
    .n-fa-title{
        font-size: 22px;
        margin-bottom: 12px;
    }
    
}