/* featured insights */
.featured-insight__section {
    padding: 2rem 0;
}

.featured-insight__section h2 {
    text-align: center;
    font-weight: 400;
    font-size: 2rem;
    line-height: 3rem;
}
.main-slider-wrapper {
    overflow: hidden;
    position: relative;
}
.main-slider-wrapper::after {
    position: absolute;
    content: "";
    height: 1.5px;
    width: var(--dynamic-width, 0%);
    bottom: 8px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: width cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}
.main-slider-wrapper::before {
    position: absolute;
    content: "";
    height: 1.5px;
    width: 100%;
    bottom: 8px;
    background-color: var(--border);
    border-radius: 4px;
}
.featured-insight__section .business-insight-items {
    display: flex;
    transition: all 1500ms cubic-bezier(0.25, 1, 0.5, 1);
    padding: 2rem 0;
    gap: 0.5rem;
}
.featured-insight__section .business-insight-items .business_insight-card {
    flex: 1 1 25%;
    min-width: 298px;
    max-width: 300px;
    border: 1px solid #797979;
}
.business_insight-card_img {
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.business_insight-card_content {
    padding: 1rem;
}
.business_insight-card_content span {
    padding-top: 2rem;
    font-weight: 400;
    font-size: 1rem;
    display: block;
    line-height: 1.8rem;
}

.business_insight-card_content span + a {
    font-weight: 400;
    font-size: 0.85rem;
    display: inline-block;
    line-height: 1.3rem;
    text-decoration: none;
    color: #54575e;
    padding: 1.5rem 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    white-space: normal;
}
.business_insight-card_content + a {
    padding: 3rem 1rem;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: 600;
}
.business_insight-card_content + a svg {
    transition: all 300ms linear;
}
.business_insight-card_content + a:hover {
    color: var(--primary);
    transition: all 300ms linear;
}
.business_insight-card_content + a:hover svg {
    margin-left: 10px;
    transition: all 300ms linear;
    color: var(--primary);
}
.featured-insight__section .controls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}
.featured-insight__section .controls button {
    border: 1px solid #797979;
    border-radius: 50%;
    color: #797979;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (min-width: 768px) {
    .featured-insight__section {
        padding: 4rem 0;
    }

    .featured-insight__section h2 {
        font-size: 2.625rem;
        line-height: 4.375rem;
    }
}
