/******************** 
    insight-list
 *********************/
.insight-list h3 {
    text-align: center;
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    font-weight: 700;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.insight-list .insight-box {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    min-height: 300px;
    border: 1px solid #333;
    transition: transform 0.3s ease-in-out;
}

.insight-list .insight-box:hover {
    transform: scale(1.03);
}

.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-brand {
    font-size: 14px;
    line-height: 20px;
    color: var(--C2);
}

.insight-box:hover .insight-brand {
    color: var(--C4);
}

/******************** 
    insight-page 
 *********************/
.insight-page .page-box{
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 3rem;
box-shadow: rgba(153, 153, 153, 0.2) 0px 2px 8px 0px;
}
.figure-img {
    border-radius: 10px;
    box-shadow: rgba(97, 97, 97, 0.1) 0px 3px 8px;
}

.insight-page h2 {
    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(--C2);
    font-weight: 700;
}

.insight-page p a:hover {
    color: var(--C4);
}