section.dynamic--article-Component {
    padding: 30px 0px 80px;
}
.article--BoxWraper:hover .article--Image img {
    transition: all 0.9s;
    transform: scale(1.05);
}

.article--Image {
    overflow: hidden;
    height: 350px;
}
.article--Image img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: all 0.9s;
}

.article--Image {
    margin-bottom: 20px;
}

.article--Content h4 {
    overflow: hidden;
    color: var(--text-color);
    text-overflow: ellipsis;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 10px;
}

.article--Content p {
    overflow: hidden;
    color: #676767;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom:20px;
}
.article--Content a {
    text-decoration: none;
}
.article--Link h6 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
}

@media(max-width:768px){
    .article--Image img {
        height: 165px;
        object-fit: cover;
    }

    .article--Content h4 {
        font-size: 24px;
    }

    .article--Image {
        margin-bottom: 10px;
    }
    .article--Content p {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .article--Link a {
        font-size: 14px;
    }
}

@media(max-width:1024px) and (min-width:769px){
    .article--Image img{
        height: 215px;
        object-position: center;
    }
    .article--Content h4{
        font-size: 22px;
    }
    .article--Content p{
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .article--Link a{
        font-size: 14px;
    }
}