
.cov-resources{
  --navy:#0b2f57;
  --blue:#183d86;
  --green:#27c99a;
  --text:#172331;
  --muted:#667482;

  background:#fff;
  padding:85px 24px;
}

.cov-resources,
.cov-resources *{
  box-sizing:border-box;
}

.cov-resources-inner{
  max-width:1180px;
  margin:0 auto;
}

/* HEADER */

.cov-resource-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:40px;
}

.cov-resource-header > div{
  flex:1 1 52%;
  min-width:0;
}

.cov-resource-label{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--green)!important;
  font-size:12px;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.cov-resource-label:before{
  content:"";
  width:40px;
  height:1px;
  background:var(--green);
  flex:0 0 40px;
}

.cov-resource-header h2{
  margin:0!important;
  color:var(--navy)!important;
  font-family:Georgia,serif;
  font-size:clamp(40px,5vw,60px);
  font-weight:700;
  line-height:1.05;
  letter-spacing:normal;
}

.cov-resource-header h2 span{
  color:var(--green)!important;
}

.cov-resource-header p{
  flex:0 1 520px;
  max-width:520px;
  margin:0!important;
  color:var(--muted)!important;
  line-height:1.6;
  font-size:15px;
}

/* MAIN GRID */

.cov-resource-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
}

/* FEATURED ARTICLE */

.cov-featured-resource{
  position:relative;
  min-height:540px;
  border-radius:22px;
  overflow:hidden;
  background:var(--navy);
  box-shadow:0 20px 45px rgba(8,38,71,.15);
}

.cov-featured-resource img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.cov-featured-resource:hover img{
  transform:scale(1.04);
}

.cov-featured-resource:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(4,22,44,.96) 0%,
      rgba(4,22,44,.55) 45%,
      rgba(4,22,44,.08) 75%
    );
  z-index:1;
  pointer-events:none;
}

.cov-featured-content{
  position:absolute;
  z-index:2;
  left:0;
  right:0;
  bottom:0;
  padding:38px;
}

.cov-featured-tag{
  display:inline-block;
  background:var(--green);
  color:#05293f!important;
  padding:7px 12px;
  border-radius:100px;
  font-size:10px;
  font-weight:800;
  letter-spacing:1.3px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.cov-featured-content h3{
  margin:0 0 15px!important;
  color:#fff!important;
  font-family:Georgia,serif;
  font-size:34px;
  font-weight:700;
  line-height:1.15;
}

.cov-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:rgba(255,255,255,.74)!important;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.7px;
  margin-bottom:22px;
}

.cov-meta span{
  color:inherit!important;
}

.cov-read-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px;
  font-weight:700;
}

.cov-read-link span{
  color:#fff!important;
  transition:transform .2s ease;
}

.cov-read-link:hover span{
  transform:translateX(5px);
}

/* SIDE ARTICLES */

.cov-resource-side{
  display:grid;
  grid-template-rows:repeat(2,minmax(0,1fr));
  grid-auto-rows:minmax(255px,1fr);
  gap:22px;
}

.cov-small-resource{
  display:grid;
  grid-template-columns:42% 58%;
  min-height:255px;
  background:#f7f9fb;
  border:1px solid #e3e9ee;
  border-radius:18px;
  overflow:hidden;
  transition:.3s ease;
}

.cov-small-resource:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 35px rgba(8,38,71,.12);
}

.cov-small-image{
  overflow:hidden;
  min-height:255px;
}

.cov-small-image img{
  width:100%;
  height:100%;
  min-height:255px;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.cov-small-resource:hover img{
  transform:scale(1.05);
}

.cov-small-content{
  padding:27px 25px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.cov-small-category{
  color:var(--green)!important;
  font-size:10px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.cov-small-content h3{
  margin:0 0 12px!important;
  color:var(--navy)!important;
  font-family:Georgia,serif;
  font-size:23px;
  font-weight:700;
  line-height:1.15;
}

.cov-small-meta{
  color:#778491!important;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.6px;
  margin-bottom:17px;
}

.cov-small-link{
  color:var(--navy)!important;
  font-weight:700;
  font-size:13px;
  text-decoration:none!important;
}

.cov-small-link span{
  color:var(--green)!important;
  margin-left:5px;
}

/* BOTTOM CTA */

.cov-resource-bottom{
  margin-top:38px;
  padding-top:28px;
  border-top:1px solid #e3e9ee;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.cov-resource-bottom strong{
  display:block;
  color:var(--navy)!important;
  font-family:Georgia,serif;
  font-size:22px;
  line-height:1.2;
  margin-bottom:4px;
}

.cov-resource-bottom p{
  margin:0!important;
  color:var(--muted)!important;
  font-size:14px;
}

.cov-all-resources{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--green);
  color:#05293f!important;
  text-decoration:none!important;
  padding:14px 22px;
  border-radius:7px;
  font-weight:700;
  white-space:nowrap;
  transition:.25s ease;
}

.cov-all-resources span{
  color:#05293f!important;
}

.cov-all-resources:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(39,201,154,.22);
}

/* TABLET */

@media(max-width:1024px){

  .cov-resource-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .cov-resource-header p{
    flex:auto;
  }

  .cov-resource-grid{
    grid-template-columns:1fr;
  }

  .cov-featured-resource{
    min-height:480px;
  }

}

/* MOBILE */

@media(max-width:767px){

  .cov-resources{
    padding:55px 18px;
  }

  .cov-resource-header{
    margin-bottom:28px;
  }

  .cov-featured-resource{
    min-height:430px;
  }

  .cov-featured-content{
    padding:25px;
  }

  .cov-featured-content h3{
    font-size:28px;
  }

  .cov-small-resource{
    grid-template-columns:1fr;
  }

  .cov-small-image{
    height:210px;
    min-height:210px;
  }

  .cov-small-image img{
    height:210px;
    min-height:210px;
  }

  .cov-small-content{
    padding:22px;
  }

  .cov-resource-bottom{
    align-items:flex-start;
    flex-direction:column;
  }

}
