/*BLOG PAGE*/

.blog-hero-section{
  padding:0px 0 20px;
}

/*CARD*/

.blog-hero-card{
  width:100%;
  max-width:820px;
  margin:0 auto;
  overflow:hidden;
  background:#f2f2f3;
  border-radius:28px;
}

.blog-meta{
  margin-top:18px;
  margin-bottom:28px;
}

.blog-date{
  font-size:14px;
  color:#6e6e73;
  letter-spacing:0.2px;
}

/*IMAGE*/

.blog-hero-image-wrapper{
  width:100%;
  height:400px;
  overflow:hidden;
}

.blog-hero-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/*CONTENT*/

.blog-hero-content{
  padding:34px;
  background: #fff;
}

.blog-label{
  display:inline-block;
  margin-bottom:18px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.5px;
  color:#6e6e73;
}

.blog-title{
  margin-bottom:20px;
  font-size: clamp(34px, 5vw, 34px);
  line-height:1.0;
  font-weight:400;
  letter-spacing:-1.2px;
  color:#1d1d1f;
}

.blog-subtitle {
    margin-bottom: 20px;
    font-size: clamp(26px, 5vw, 26px);
    line-height: 1.0;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #1d1d1f;
}

.blog-description{
  margin:0;
  margin-bottom:24px;
  font-size:18px;
  line-height:1.4;
  color:#6e6e72;
}


/*BLOG BOTTOM NAVIGATION*/

.blog-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

.nav-btn{
  width: 120px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: #1d1d1f;
  font-size: 16px;
}

.home-btn{
  width: 44px;
  height: 44px;

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

  border-radius: 50%;
  background: #f2f2f3;
}

.home-btn img{
  width: 25px;
  height: 25px;
}

.nav-btn:hover,
.home-btn:hover{
  transform: translateY(-2px);
  transition: 0.2s ease;
}

/*SUGGESTED BLOG*/
.more-blogs{
  max-width: 820px;
  margin: 40px auto 0;
  padding-bottom: 30px;
}

.more-blogs h2{
  font-size: 18px;
  margin-bottom: 14px;
  color: #1d1d1f;
}


/*SHARE BUTTON*/

.blog-hero-image-wrapper{
  position: relative;
}

.share-btn{
  position: absolute;
  top: 16px;
  right: 16px;

  width: 46px;
  height: 46px;

  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

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

  cursor: pointer;
  z-index: 10;

  box-shadow: 0 4px 14px rgba(0,0,0,0.12);

  transition: all 0.25s ease;
}

.share-btn:hover{
  transform: scale(1.08);
  background: #fff;
}

.share-btn:active{
  transform: scale(0.96);
}

.share-btn img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}



/*RESPONSIVE*/

@media (max-width:768px){
    .blog-hero-section{
        padding: 20px clamp(16px, 4vw, 24px) 30px;
    }

    .blog-hero-content{
        padding:24px;
    }

    .blog-title{
        font-size:42px;
    }

    .blog-description{
        font-size:16px;
        line-height:1.7;
    }

    .blog-hero-image-wrapper{
        height:220px;
    }
    
    .more-blogs{
        padding-left: 16px;
        padding-right: 16px;
      }
    
    .share-btn{
      top: 12px;
      right: 12px;

      width: 42px;
      height: 42px;
    }

    .share-btn img{
      width: 18px;
      height: 18px;
    }
}

@media (max-width:480px){
    .blog-hero-card{
        border-radius:20px;
    }

    .blog-hero-content{
        padding:20px;
    }

    .blog-title{
        font-size:34px;
        letter-spacing:-1px;
    }

    .blog-description{
        font-size:17px;
    }
    
    .nav-btn{
      width: 100px;
      font-size: 13px;
    }

    .home-btn{
      width: 42px;
      height: 42px;
    }
    
    .blog-subtitle {
        margin-bottom: 20px;
        font-size: clamp(23px, 5vw, 23px);
        line-height: 1.0;
        font-weight: 400;
        letter-spacing: -1.2px;
        color: #1d1d1f;
    }
}
