

.insights-item.imgLeft .img-wrap  {
    order: 1;
}

.insights-item.imgLeft .content {
    order: 2;
}
.insights-rows {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: 0px;
    grid-row-gap: 100px;
}

.insights-rows h2 {
    text-align: center;
}
.insights-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 55px;
}


.insights-item .img-wrap {
    width: 100%;
    max-width: 500px;
            flex: 0 0 auto;
}

.insights-item .img-wrap img {
    width: 100%;
    height: 100%;

}

.insights-item h3 {
    font-family: 'FAIRE Sprig Sans';
    font-weight: 300;
    font-size: 30px;
    position: relative;
    margin: unset;
    margin-bottom: 10px;
    padding-left: 20px;
    max-width: 68%;
    line-height: 1.2;
}

.insights-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: var(--e-global-color-primary);
}
.insights-item ul {
    margin-bottom: 10px;
}

.insights-item p {
    font-family: 'Overused Grotesk';
    font-weight: 300;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.insights-item p strong {
        font-weight: 500;
}
.insights-item li {
    font-family: 'Overused Grotesk';
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 1px;
    margin-bottom: unset !important;
}

.insights-item a {
    color: var(--e-global-color-primary);
    letter-spacing: 1.5px;
    transition: opacity 0.4s ease-out;
    font-size: 15px;
    font-weight: 600;
}

.insights-item a:hover {
   opacity: 0.5;
}



@media (max-width: 990px) {
    .insights-rows h2 {
    font-size: 28px;
}
.insights-item li {
    font-size: 16px;
}
.insights-item p br {
    display: none;
}
.insights-rows {
    grid-row-gap: 50px;
}
.insights-item {
    flex-direction: column;
}
.insights-item h3 {
    font-size: 20px;
    padding-left: 17px;
    max-width: unset;
}

.insights-item h3::after {
    width: 3px;
}
.insights-item p {
    font-size: 18px;
    margin-bottom: 10px;
}
.insights-item p br {
    display: none;
}

.insights-item .img-wrap {
    max-width: calc(100% - 20px);
}

.insights-item .img-wrap {
    order: 1 !important;   
}

.insights-item .content {
    order: 2 !important;
}
}