*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#0f2027;
  color:white;
  overflow-x:hidden;
}

/* NAV */
.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  padding:20px 8%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(10,15,20,0.55);
  backdrop-filter:blur(14px);

  z-index:1000;
}

.logo img{
  height:52px;
}

.nav nav{
  display:flex;
  gap:35px;
}

.nav a{
  color:white;
  text-decoration:none;
  font-weight:500;
  position:relative;
}

.nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;

  width:0;
  height:2px;

  background:#2bb3b1;

  transition:0.3s;
}

.nav a:hover::after{
  width:100%;
}

/* HERO */
.blog-hero{
  padding:
  200px 20px
  140px;

  text-align:center;

  background:
  linear-gradient(rgba(15,32,39,0.82),
  rgba(15,32,39,0.95)),
  url('https://images.unsplash.com/photo-1496171367470-9ed9a91ea931?q=80&w=1600');

  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:850px;
  margin:auto;
}

.hero-tag{
  display:inline-block;

  background:#2bb3b1;

  padding:8px 16px;

  border-radius:30px;

  font-size:12px;
  font-weight:600;

  margin-bottom:25px;
}

.hero-content h1{
  font-size:56px;
  line-height:1.2;

  margin-bottom:25px;
}

.hero-content p{
  color:#d1d1d1;

  font-size:18px;
  line-height:1.9;

  max-width:700px;
  margin:auto;
}

/* BLOG PAGE */
.blog-page{
  padding:90px 8%;
}

.blog-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:35px;
}

/* CARD */
.blog-card{
  background:#17252e;

  border-radius:20px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,0.05);

  transition:0.35s ease;
}

.blog-card:hover{
  transform:translateY(-10px);
}

.blog-card img{
  width:100%;
  height:240px;

  object-fit:cover;
}

.blog-content{
  padding:30px;
}

.blog-meta{
  color:#7fa0a7;
  font-size:14px;

  margin-bottom:16px;
}

.blog-content h2{
  font-size:28px;
  line-height:1.4;

  margin-bottom:18px;
}

.blog-content p{
  color:#d1d1d1;

  line-height:1.8;

  margin-bottom:25px;
}

.blog-btn{
  display:inline-block;

  background:#2bb3b1;
  color:white;

  text-decoration:none;

  padding:12px 22px;

  border-radius:10px;

  font-weight:600;

  transition:0.3s;
}

.blog-btn:hover{
  transform:translateY(-3px);
}

/* CTA */
.blog-cta{
  text-align:center;

  padding:100px 20px;
}

.blog-cta h2{
  font-size:46px;
  margin-bottom:20px;
}

.blog-cta p{
  color:#d1d1d1;
  margin-bottom:35px;
}

.hero-btn{
  display:inline-block;

  background:#2bb3b1;
  color:white;

  text-decoration:none;

  padding:15px 34px;

  border-radius:12px;

  font-weight:600;
}

/* FOOTER */
.footer{
  padding:35px 20px;

  background:#09151b;

  text-align:center;
}

.social-icons{
  margin-top:20px;

  display:flex;
  justify-content:center;
  gap:20px;
}

.social-icons img{
  width:26px;
}

/* MOBILE */
@media(max-width:768px){

  .hero-content h1{
    font-size:38px;
  }

  .blog-content h2{
    font-size:24px;
  }

}

/* =========================================
   SINGLE BLOG ARTICLE PAGES
========================================= */

.single-blog-page{
  background:#0f2027;
  min-height:100vh;
}

/* MINI HERO */
.single-hero{
  padding:160px 20px 90px;
  text-align:center;

  background:
  linear-gradient(rgba(15,32,39,0.82),
  rgba(15,32,39,0.94)),
  url('https://images.unsplash.com/photo-1496171367470-9ed9a91ea931?q=80&w=1600');

  background-size:cover;
  background-position:center;
}

.single-hero .hero-inner{
  max-width:760px;
  margin:auto;
}

.single-tag{
  display:inline-block;

  background:#2bb3b1;

  color:white;

  padding:8px 18px;

  border-radius:30px;

  font-size:12px;
  font-weight:600;

  margin-bottom:22px;
}

.single-hero h1{
  font-size:52px;
  line-height:1.2;

  margin-bottom:22px;
}

.single-hero p{
  color:#d4d4d4;

  line-height:1.9;

  font-size:18px;
}

.single-meta{
  margin-top:25px;

  color:#8ca0a7;

  font-size:14px;
}

/* MAIN ARTICLE */
.single-article{
  max-width:860px;
  margin:auto;

  padding:80px 20px 100px;
}

/* COVER IMAGE */
.single-article-image{
  width:100%;

  height:420px;

  object-fit:cover;

  border-radius:24px;

  margin-bottom:55px;

  display:block;
}

/* CONTENT */
.single-article-content{
  max-width:760px;
  margin:auto;
}

.single-article-content h2{
  font-size:34px;

  margin-top:55px;
  margin-bottom:20px;

  color:#2bb3b1;

  line-height:1.3;
}

.single-article-content p{
  color:#d4d4d4;

  line-height:2;

  font-size:17px;

  margin-bottom:24px;
}

.single-article-content ul{
  padding-left:22px;

  margin-top:10px;
}

.single-article-content li{
  color:#d4d4d4;

  margin-bottom:15px;

  line-height:1.9;
}

/* CTA */
.single-blog-cta{
  margin-top:90px;

  background:#17252e;

  border-radius:24px;

  padding:60px 35px;

  text-align:center;
}

.single-blog-cta h2{
  font-size:40px;

  margin-bottom:16px;
}

.single-blog-cta p{
  color:#d4d4d4;

  margin-bottom:30px;
}

.single-blog-cta .blog-btn{
  display:inline-block;

  background:#2bb3b1;
  color:white;

  text-decoration:none;

  padding:14px 32px;

  border-radius:12px;

  font-weight:600;

  transition:0.3s ease;
}

.single-blog-cta .blog-btn:hover{
  transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:768px){

  .single-hero{
    padding:140px 20px 75px;
  }

  .single-hero h1{
    font-size:34px;
  }

  .single-hero p{
    font-size:16px;
  }

  .single-article{
    padding:60px 18px 80px;
  }

  .single-article-image{
    height:240px;
  }

  .single-article-content h2{
    font-size:28px;
  }

  .single-blog-cta{
    padding:45px 24px;
  }

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

}