/* ================= BLOG BANNER ================= */
/* ================= BLOG SECTION ================= */
.blog-section {
  padding: 80px 8%;
  background: transparent !important;
}

.blog-container {
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* ================= BLOG CARD ================= */
.blog-card {
  background: #fff;
  width: 32%;
  border-radius: 0px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

/* Image */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Category */
.category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #7BAF42;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 0px;
  font-weight: 500;
  font-family: 'Jost';
}

/* Author Icon */
.author-icon {
  position: absolute;
  top: 200px;
  left: 30px;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  font-size: 20px;
  color: #999;
}

/* Content */
.blog-content-main {
  padding: 50px 30px 30px;
 
}

.blog-content-main h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-decoration: underline;
  cursor: pointer;
  font-family: 'Prosto One' !important;
}

.blog-content-main p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Jost';
}

/* Read More */
.read-more {
  color: #7BAF42;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Jost';
}

.read-more:hover {
  text-decoration: underline;
}

/* Footer */
.blog-footer {
  border-top: 1px solid #eee;
  padding: 15px 30px;
  font-size: 13px;
  color: #888;
  display: flex;
  justify-content: space-between;
  font-family: 'Jost';
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px){
  .blog-container{
    flex-direction: column;
  }

  .blog-card{
    width: 100%;
  }
}



/* Section spacing */
.single-blog {
  padding: 80px 0;
  top: 90%;
  
}

/* Center container */
.blog-detail-container {
  width: 700px;
  max-width: 90%;
  margin: auto;
  text-align: center;
  margin-top: 3%;
  color: #000;
  
}
/* Main Title */
.blog-main-title {
  color: #ba5b17;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: 'Prosto One';
}

/* Main Image */
.blog-main-image img {
  width: 470px;
  max-width: 100%;
  display: block;
  margin: 0 auto 30px;
 
}

/* Text content */
.blog-text-content {
  text-align: left;
}

/* Paragraph styling */
.blog-text-content p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  font-family: 'Jost';
}

/* Headings */
.blog-text-content h2 {
  color: #2f373b;
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0 10px;
  font-family: 'Prosto One';
}

/* List styling */
.blog-text-content ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.blog-text-content li {
  color: #cfcfcf;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
  font-family: 'Jost';
}

/* Bold inside list */
.blog-text-content strong {
  color: #ffffff;
}

.blog-text-content p,
.blog-text-content li,
.blog-text-content strong,
.blog-main-title {
  color: #000 !important;
}

.single-blog {
  background: transparent !important;
}

@media(max-width: 992px){
.blog-container{
flex-direction: column;
}
.blog-card{
width: 100%;
}
}

/* ===== RESPONSIVE: 768px ===== */
@media(max-width:768px){
  .blog-section{
    padding:50px 5%;
  }

  .single-blog{
    padding:40px 0;
  }

  .blog-detail-container{
    width:90%;
    margin-top:80px;
  }

  .blog-main-title{
    font-size:16px;
  }

  .blog-main-image img{
    width:100%;
  }

  .blog-text-content p{
    font-size:14px;
  }

  .blog-text-content h2{
    font-size:16px;
  }
}

@media(max-width:480px){
  .blog-section{
    padding:40px 4%;
  }

  .blog-content-main{
    padding:40px 20px 20px;
  }

  .blog-content-main h3{
    font-size:15px;
  }

  .blog-content-main p{
    font-size:13px;
  }

  .blog-detail-container{
    width:95%;
    margin-top:70px;
  }

  .blog-main-title{
    font-size:14px;
  }

  .blog-text-content p{
    font-size:13px;
    line-height:1.6;
  }
}