.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 34px;
}

.insight-card {
    background: #1a1a2e;
    border: 1px solid rgba(39,89,178,0.2);
    overflow: hidden;
}

.insight-card-media{
    position:relative;
    overflow:hidden;
}

.insight-card-media a{
    display:block;
    width:100%;
    height:100%;
    position:relative;
}

.insight-card-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .5s ease;
}

.insight-card-media:hover .insight-card-image{
    transform:scale(1.05);
}

.insight-card-media .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.28);
    z-index:2;
    pointer-events:none;
}

.insight-card-body {
    padding: 32px 34px 36px;
}

.insight-card-cat,
.blog-article-kicker {
    display: block;
    margin-bottom: 12px;
    color: #4d82e0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.insight-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    line-height: 1.25;
    text-transform: uppercase;
}

.insight-card h3 a {
    color: #fff;
}

.insight-card p {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.64);
    font-size: 13px;
    line-height: 1.8;
}


.blog-hero-title h2 {
    font-size: 32px;
    line-height: 1.15;
}

.blog-article {
    background: #1a1a2e;
    border: 1px solid rgba(39,89,178,0.2);
    padding: 42px 46px;
    text-align: left;
}

.blog-article h3 {
    margin: 42px 0 18px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: left;
}

.blog-article h3:first-child {
    margin-top: 0;
}

.blog-article p {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
}

.blog-article ul {
    margin: 2px 0 28px 24px;
    padding: 0;
    list-style: disc outside;
    text-align: left;
}

.blog-article li {
    display: list-item;
    float: none;
    margin: 0 0 10px;
    padding: 0;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
}

.blog-article li:before {
    content: none;
}

.blog-article-cta {
    margin-top: 34px;
    padding: 28px 30px 30px;
    background: rgba(39,89,178,0.13);
    border-left: 3px solid #2759b2;
    text-align: left;
}

.blog-article-cta .btn {
    margin-top: 12px;
}

[data-pagetitle="Insights"] .section-number {
    display: none;
}

@media (max-width: 764px) {
    .blog-article {
        padding: 30px 24px;
    }

    .blog-hero-title h2 {
        font-size: 26px;
    }

    .insight-card-body {
        padding: 26px 24px 30px;
    }
}
/* Blog Hero Image */
.fixed-column-wrap-content .bg{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Hero Overlay */
.fixed-column-wrap-content .overlay{
    background: rgba(0,0,0,.35);
}

/* Hero Content */
.blog-hero-title{
    position: relative;
    z-index: 5;
    max-width: 680px;
}

.blog-hero-title h2{
    font-size: 46px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-hero-title p{
    color: rgba(255,255,255,.85);
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px){
    .blog-hero-title h2{
        font-size: 30px;
    }

    .blog-hero-title{
        max-width: 100%;
    }
}
/* ==========================================
   BLOG ARTICLE TYPOGRAPHY IMPROVEMENTS
   Add at the END of Blog.css
========================================== */

.blog-article{
    max-width:900px;
    margin:0 auto;
    padding:60px;
    text-align:left;
}

.blog-article *{
    text-align:left;
}

.blog-article h2{
    font-family:'Oswald',sans-serif;
    font-size:38px;
    line-height:1.2;
    color:#fff;
    margin:0 0 30px;
    text-transform:uppercase;
    font-weight:600;
}

.blog-article h3{
    font-family:'Oswald',sans-serif;
    font-size:28px;
    line-height:1.3;
    color:#fff;
    margin:55px 0 18px;
    font-weight:500;
    text-transform:none;
    border-left:4px solid #2759b2;
    padding-left:15px;
}

.blog-article h4{
    font-size:22px;
    color:#fff;
    margin:35px 0 15px;
    font-weight:600;
}

.blog-article p{
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.78);
    margin-bottom:24px;
}

.blog-article strong{
    color:#fff;
    font-weight:600;
}

.blog-article ul,
.blog-article ol{
    margin:20px 0 30px 28px;
    padding-left:18px;
}

.blog-article ul{
    list-style:disc;
}

.blog-article ol{
    list-style:decimal;
}

.blog-article li{
    font-size:17px;
    line-height:1.8;
    margin-bottom:12px;
    color:rgba(255,255,255,.78);
}

.blog-article blockquote{
    margin:40px 0;
    padding:22px 28px;
    border-left:4px solid #2759b2;
    background:rgba(39,89,178,.08);
    color:#fff;
    font-style:italic;
}

.blog-article img{
    width:100%;
    border-radius:8px;
    margin:40px 0;
}

.blog-article hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.1);
    margin:45px 0;
}

.blog-article a{
    color:#4d82e0;
    text-decoration:none;
}

.blog-article a:hover{
    text-decoration:underline;
}

.blog-article table{
    width:100%;
    border-collapse:collapse;
    margin:35px 0;
}

.blog-article th,
.blog-article td{
    padding:14px;
    border:1px solid rgba(255,255,255,.12);
}

.blog-article th{
    background:#2759b2;
    color:#fff;
}

.blog-article tr:nth-child(even){
    background:rgba(255,255,255,.03);
}

/* Better spacing between sections */

.blog-article > * + h3{
    margin-top:60px;
}

/* Mobile */

@media(max-width:768px){

.blog-article{
    padding:35px 24px;
}

.blog-article h2{
    font-size:30px;
}

.blog-article h3{
    font-size:24px;
}

.blog-article p,
.blog-article li{
    font-size:16px;
}

}