/* =======================================
# insight-list
========================================= */
.insight-list {
    background-color: #ffffff;
}

.insight-list h3 {
    margin: 2.5rem 0 1.5rem;
    font-weight: 400;
    color: #212121;
}

.insight-list .insight-box {
    position: relative;
    padding: 0;
    transition: 0.3s;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    min-height: 300px;
    color: #212121;
    background-color: #ffffff;
    border: 1px solid #234aff;
    ;
}

.insight-list .insight-box:hover {
    box-shadow: 5px 5px 0 #234aff;
    transform: translateY(-3px);
}

.insight-list .insight-box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.insight-list .insight-box img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
}

.insight-box-info {
    margin: 1rem 1.5rem;
}

.insight-box h5 {
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 2.4em;
}

.insight-box-brand {
    font-size: 14px;
    line-height: 20px;
    color: #606bff;
}


/* =======================================
# insight-page 
========================================= */
.insight-figure {
    margin-bottom: 2rem;
}

.insight-txt {
    color: #212121;
}

.insight-txt {
    color: #212121;
}

.figure-img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    box-shadow: 6px 7px 0 var(--light);
}


.insight-page h2 {
    color: var(--main);
    font-weight: 500;
    margin: 2rem 0;
}

.insight-page .btn-goback {
    position: absolute;
    left: -5rem;
    top: 1.5rem;
    font-size: 2.2rem;
}

.insight-page p {
    color: #464555;
}

.insight-page p a {
    text-decoration: none;
    color: var(--main);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.insight-page p a::before {
    content: "";
    background-color: var(--light);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.insight-page p a:hover::before {
    bottom: 0;
    height: 100%;
}