/*************************
 insight & slide & report 共用樣式  
 *************************/
.slide,
.insight,
.report {
    background-image: url(../img/page.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* slide */

.slide h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.slide-img {
    overflow: hidden;
    border-radius: 20px;
}

.slide-img img,
.report-img img {
    width: 100%;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.slide-box a:hover .slide-img img,
.report-box a:hover .report-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.slide-box h5 {
    margin: 10px 0 20px;
    color: #212121;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    min-height: 48px;
}

.slide-box h5:hover,
.report-box h5:hover {
    color: #27cda7;
}


/* insight-inner */
.insight-inner {
    background-color: #ffffff;
    background-image: radial-gradient(#27CDA7 0.9px, #ffffff 0.9px);
    background-size: 20px 20px;
}

.insight-inner p {
    font-size: 18px;
}

.inner-img {
    width: 100%;
    margin-bottom: 2rem;
}

.inner-txt {
    background-color: #ffffff;
}

/* report */
.report {
    background-size: cover !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 37%, rgba(0,0,0,0.25) 100%), url(../img/report_bg.jpg) no-repeat center center scroll;
}
.report-box{
    position: relative;
    padding: 1.2rem;
    border-radius:0 0 15px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    min-height: 305px;
    transition: 0.2s;
    margin-bottom: 1.5rem;
}

.report-img::after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-weight: 900;
    color: #212121;
    position: absolute;
    color:  var(--main-color);
    right: 25px;
    bottom: 10px;
}

.report-box h5 { 
    color: #212121;
    margin: 0;
    padding: 15px 0 10px;
}

.report-img {
    overflow: hidden;
    height: 200px;
    border: 3px solid var(--main-color);
}