

/* =========================
   BASE
========================= */

.ql-insights,
.ql-insights *{
  box-sizing:border-box;

  font-family:
    "Montserrat-Light",
    "Montserrat",
    Arial,
    sans-serif;
}


.ql-insights{
  width:100%;

  padding:58px 0 64px;

  background:#f6f6f8;

  color:#151515;
}


.ql-insights__in{
  width:calc(100% - 36px);

  max-width:1440px;

  margin:0 auto;
}


/* =========================
   HEADER
========================= */

.ql-insights__head{
  max-width:900px;

  margin:0 0 38px;

  text-align:left;
}


.ql-insights__eyebrow{
  display:block;

  margin-bottom:10px;

  font-size:12px;
  line-height:1.2;
  font-weight:700;

  letter-spacing:1.5px;

  color:#0868e8;
}


.ql-insights__head h2{
  margin:0 0 16px;

  font-size:40px;
  line-height:1.2;
  font-weight:300;

  color:#111;
}


.ql-insights__head p{
  max-width:760px;

  margin:0;

  font-size:15px;
  line-height:1.7;
  font-weight:300;

  color:#666a72;
}


/* =========================
   GRID
========================= */

.ql-insights__grid{
  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap:18px;
}


/* =========================
   CARD
========================= */

.ql-insights__card{
  display:flex;
  flex-direction:column;

  overflow:hidden;

  background:#fff;

  border:1px solid #e5e6e9;

  border-radius:12px;

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}


.ql-insights__card:hover{
  transform:translateY(-3px);

  border-color:
    rgba(8,104,232,.25);

  box-shadow:
    0 10px 28px
    rgba(0,0,0,.055);
}


/* =========================
   IMAGE
========================= */

.ql-insights__image{
  display:block;

  width:100%;

  aspect-ratio:16 / 9;

  overflow:hidden;

  background:#eceef1;
}


.ql-insights__image img{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;

  transition:
    transform .45s ease;
}


.ql-insights__card:hover
.ql-insights__image img{
  transform:scale(1.035);
}


/* =========================
   CONTENT
========================= */

.ql-insights__body{
  flex:1;

  display:flex;
  flex-direction:column;

  padding:23px 23px 25px;
}


.ql-insights__meta{
  margin-bottom:11px;
}


.ql-insights__meta span{
  font-size:11px;
  line-height:1.2;
  font-weight:700;

  letter-spacing:.7px;

  color:#0868e8;
}


/* =========================
   TITLE
========================= */

.ql-insights__body h3{
  margin:0 0 12px;

  font-size:18px;
  line-height:1.4;
  font-weight:700;

  color:#1b1b1d;
}


.ql-insights__body h3 a{
  color:inherit;

  text-decoration:none;

  transition:
    color .2s ease;
}


.ql-insights__body h3 a:hover{
  color:#0868e8;
}


/* =========================
   DESCRIPTION
========================= */

.ql-insights__body p{
  margin:0 0 20px;

  font-size:15px;
  line-height:1.65;
  font-weight:300;

  color:#6b6e75;
}


/* =========================
   READ MORE
========================= */

.ql-insights__link{
  display:inline-flex;

  align-items:center;

  gap:6px;

  margin-top:auto;

  font-size:14px;
  line-height:1;

  font-weight:700;

  color:#0868e8;

  text-decoration:none;
}


.ql-insights__link span{
  transition:
    transform .2s ease;
}


.ql-insights__link:hover span{
  transform:
    translateX(3px);
}


/* =========================
   VIEW ALL
========================= */

.ql-insights__more{
  display:flex;

  justify-content:center;

  margin-top:34px;
}


.ql-insights__more-btn{
  min-height:46px;

  padding:0 25px;

  display:inline-flex;

  align-items:center;
  justify-content:center;

  gap:8px;

  border:1px solid #0868e8;

  border-radius:7px;

  background:#0868e8;

  color:#fff;

  font-size:14px;
  line-height:1;
  font-weight:700;

  text-decoration:none;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}


.ql-insights__more-btn:hover{
  background:#0759c8;

  border-color:#0759c8;

  transform:
    translateY(-1px);
}


.ql-insights__more-btn span{
  font-size:15px;

  transition:
    transform .2s ease;
}


.ql-insights__more-btn:hover span{
  transform:
    translateX(3px);
}


/* =========================
   TABLET
========================= */

@media(max-width:900px){

  .ql-insights{
    padding:48px 0 52px;
  }


  .ql-insights__grid{
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }


  .ql-insights__card:last-child{
    grid-column:1 / -1;
  }

}


/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .ql-insights{
    padding:38px 0 42px;
  }


  .ql-insights__in{
    width:calc(100% - 28px);
  }


  /* HEADER */

  .ql-insights__head{
    margin-bottom:28px;
  }


  .ql-insights__eyebrow{
    font-size:10px;

    letter-spacing:1.3px;
  }


  .ql-insights__head h2{
    font-size:30px;
  }


  .ql-insights__head p{
    font-size:14px;
    line-height:1.6;
  }


  /* GRID */

  .ql-insights__grid{
    grid-template-columns:1fr;

    gap:12px;
  }


  .ql-insights__card:last-child{
    grid-column:auto;
  }


  /* CARD */

  .ql-insights__card{
    border-radius:10px;
  }


  /* BODY */

  .ql-insights__body{
    padding:18px 17px 20px;
  }


  .ql-insights__meta span{
    font-size:10px;
  }


  .ql-insights__body h3{
    font-size:16px;
    line-height:1.4;
  }


  .ql-insights__body p{
    font-size:14px;
    line-height:1.6;
  }


  .ql-insights__link{
    font-size:13px;
  }


  /* BUTTON */

  .ql-insights__more{
    margin-top:24px;
  }


  .ql-insights__more-btn{
    min-height:44px;

    padding:0 22px;

    font-size:13px;
  }

}

