/* =========================
BLOG PAGE
========================= */

.wiws-blog-page{
  padding:160px 0;
  padding-bottom: 60px;
  background:#050505;
  color:#fff;
}

.wiws-blog-container{
  width:92%;
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:240px 1fr;
  gap:70px;
  align-items:start;
}

/* =========================
SIDEBAR
========================= */

.wiws-blog-sidebar{
  position:sticky;
  top:120px;
}

.wiws-blog-side-title{
  font-size:15px;
  font-weight:700;
  margin-bottom:24px;
  color:#d4d4d4;
  text-transform:uppercase;
  letter-spacing:1px;
}

.wiws-blog-categories{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.wiws-blog-categories a{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  width:max-content;
  padding:12px 18px;
  border-radius:12px;
  background:#101010;
  border:1px solid rgba(255,255,255,.06);
  color:#d9d9d9;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.35s ease;
}

.wiws-blog-categories a:hover{
  background:#d4a91f;
  color:#000;
  border-color:#d4a91f;
}

.wiws-blog-categories a.active{
  background:#d4a91f;
  color:#000;
  border-color:#d4a91f;
}

/* =========================
MAIN
========================= */

.wiws-blog-main{
  width:100%;
}

/* =========================
PAGE HEADING
========================= */

.wiws-blog-heading{
  margin-bottom:60px;
  border-bottom:1px solid rgba(255,255,255,.06);
  padding-bottom:30px;
}

.wiws-blog-heading h1{
  font-size:55px;
  line-height:1;
  font-weight:700;
  color:#fff;
  letter-spacing:-2px;
}

/* =========================
LABEL
========================= */

.wiws-blog-label{
  font-size:15px;
  font-weight:700;
  color:#d4a91f;
  margin-bottom:26px;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* =========================
FEATURED WRAP
========================= */

.wiws-blog-feature-wrap{
  display:grid;
  grid-template-columns:1.2fr .7fr;
  gap:45px;
  padding-bottom:70px;
  border-bottom:1px solid rgba(255,255,255,.06);
  margin-bottom:70px;
}

/* =========================
FEATURED CARD
========================= */

.wiws-blog-feature-card{
  width:100%;
}

.wiws-blog-image{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  margin-bottom:28px;
  background:#111;
}

.wiws-blog-image img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
  transition:.6s ease;
}

.wiws-blog-image::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,0)
  );
  z-index:1;
}

.wiws-blog-image:hover img{
  transform:scale(1.06);
}

.wiws-blog-image span{
  position:absolute;
  right:18px;
  bottom:18px;
  padding:10px 16px;
  background:#d4a91f;
  border-radius:10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.5px;
  color:#000;
  z-index:2;
}

.wiws-blog-content h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:24px;
  color:#fff;
}

/* =========================
AUTHOR
========================= */

.wiws-blog-author{
  display:flex;
  align-items:center;
  gap:12px;
}

.wiws-blog-author img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
}

.wiws-blog-author p{
  font-size:14px;
  color:#bdbdbd;
  font-weight:600;
}

/* =========================
TRENDING
========================= */

.wiws-blog-trending{
  border-left:1px solid rgba(255,255,255,.06);
  padding-left:35px;
}

.wiws-trending-item{
  display:flex;
  gap:16px;
  text-decoration:none;
  padding-bottom:24px;
  margin-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.wiws-trending-item:last-child{
  margin-bottom:0;
}

.wiws-trending-item img{
  width:110px;
  height:90px;
  border-radius:16px;
  object-fit:cover;
  flex-shrink:0;
}

.wiws-trending-item h4{
  font-size:18px;
  line-height:1.5;
  color:#fff;
  transition:.3s ease;
}

.wiws-trending-item:hover h4{
  color:#d4a91f;
}

/* =========================
SECTION
========================= */

.wiws-blog-section{
  padding-bottom:70px;
  margin-bottom:70px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.wiws-blog-section-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:34px;
}

/* =========================
READ MORE
========================= */

.wiws-read-more{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 20px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:#101010;
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  transition:.35s ease;
}

.wiws-read-more:hover{
  background:#d4a91f;
  border-color:#d4a91f;
  color:#000;
}

/* =========================
GRID
========================= */

.wiws-blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:34px;
}

/* =========================
CARD
========================= */

.wiws-blog-card{
  width:100%;
}

.wiws-blog-card-image{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  margin-bottom:24px;
  background:#111;
}

.wiws-blog-card-image::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,0)
  );
  z-index:1;
}

.wiws-blog-card-image img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:.6s ease;
}

.wiws-blog-card:hover .wiws-blog-card-image img{
  transform:scale(1.06);
}

.wiws-blog-card-image span{
  position:absolute;
  right:16px;
  bottom:16px;
  background:#d4a91f;
  padding:10px 14px;
  border-radius:10px;
  font-size:11px;
  font-weight:700;
  color:#000;
  z-index:2;
}

.wiws-blog-card-content h3{
  font-size:34px;
  line-height:1.25;
  margin-bottom:22px;
  color:#fff;
  transition:.3s ease;
}

.wiws-blog-card:hover .wiws-blog-card-content h3{
  color:#d4a91f;
}

/* =========================
CTA
========================= */

.wiws-blog-cta{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  padding:80px;
  background:
  linear-gradient(
    135deg,
    #111111,
    #1a1a1a
  );
  border:1px solid rgba(255,255,255,.06);
}

.wiws-blog-cta::before{
  content:'';
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(212,169,31,.08);
}

.wiws-blog-cta-content{
  position:relative;
  z-index:2;
}

.wiws-blog-cta h2{
  font-size:52px;
  line-height:1.2;
  color:#fff;
  margin-bottom:18px;
}

.wiws-blog-cta p{
  max-width:650px;
  color:#bdbdbd;
  line-height:1.8;
  margin-bottom:32px;
}

.wiws-blog-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:56px;
  padding:0 34px;
  border-radius:14px;
  background:#d4a91f;
  color:#000;
  font-weight:700;
  text-decoration:none;
  transition:.35s ease;
}

.wiws-blog-cta a:hover{
  transform:translateY(-4px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .wiws-blog-container{
    grid-template-columns:1fr;
  }

  .wiws-blog-sidebar{
    position:relative;
    top:auto;
  }

  .wiws-blog-categories{
    flex-direction:row;
    flex-wrap:wrap;
  }

}

@media(max-width:991px){

  .wiws-blog-heading h1{
    font-size:62px;
  }

  .wiws-blog-feature-wrap{
    grid-template-columns:1fr;
  }

  .wiws-blog-trending{
    border-left:none;
    padding-left:0;
  }

}

@media(max-width:767px){

  .wiws-blog-page{
    padding:80px 0;
  }

  .wiws-blog-heading{
    margin-bottom:40px;
  }

  .wiws-blog-heading h1{
    font-size:42px;
  }

  .wiws-blog-grid{
    grid-template-columns:1fr;
  }

  .wiws-blog-image img{
    height:260px;
  }

  .wiws-blog-card-image img{
    height:240px;
  }

  .wiws-blog-content h2{
    font-size:28px;
  }

  .wiws-blog-card-content h3{
    font-size:26px;
  }

  .wiws-blog-cta{
    padding:45px 28px;
  }

  .wiws-blog-cta h2{
    font-size:34px;
  }

}