.article2_wrapper {
    padding: 120px 0;
}
.article2_container {
    max-width: 1200px;
    margin: 0 auto;
}
.article2_title {
    text-align: center;
}
.article2_title > div {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.article2_title > h2 {
    font-size: 30px;
    margin-bottom: 30px;
}
.article2_nav_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 2px dashed #ccc;
    margin-bottom: 40px;
}
.article2_nav_flex > ul {
    display: flex;
    align-items: center;
}
.article2_nav_flex > ul > li a {
    padding: 8px 16px;
    color: black;
    text-decoration: underline;
    font-size: 18px;
}
.article2_content_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.article2_content {
    display: flex;
    justify-content: space-between;
    width: 580px;
    margin-bottom: 60px;
}
.article2_content > a > img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.article2_content_right {
    width: 280px;
    height: 200px;
    padding-left: 30px;
}
.article2_content_right h4 a {
    width: 250px;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 20px;
    color: black;
}
.article2_content_right h4 a:hover {
    color: black;
}
.article2_content_right p {
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

a:hover {
    color: black;
}
.article2_hvr-float-shadow {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    color: black;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 1);
}
.article2_hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(
        center,
        ellipse,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0) 80%
    );
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.article2_hvr-float-shadow:hover,
.article2_hvr-float-shadow:focus,
.article2_hvr-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    color: black;
    /* move the element up by 5px */
}
.article2_hvr-float-shadow:hover:before,
.article2_hvr-float-shadow:focus:before,
.article2_hvr-float-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
.article2_getMore_hide {
    display: none;
}
@media (max-width: 768px) {
    .article2_nav_flex {
        display: block;
        text-align: right;
    }
    .article2_nav_flex > ul {
        margin-bottom: 10px;
    }
    .article2_container {
        padding: 0 20px;
    }
    .article2_content {
        display: block;
    }
    .article2_content_right h4 a {
        width: 60%;
    }
    .article2_content > a > img {
        width: 100%;
        margin-bottom: 20px;
    }
    .article2_content_right{
        width: 100%;
    }
}
