.blog-hero {
  position: relative;
  height: 320px;
  background: url('../media/Hero/blog.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  z-index:5;
}

.blog-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.blog-hero-content {
  position: relative;
  color: #fff;
}
@media (min-width:991px){
  .blog-hero-content {
    margin-left: 313px;
  }
}

.blog-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.blog-hero p {
  color: #ddd;
  font-size: 14px;
}

.breadcrumb {
  font-size: 13px;
  margin-bottom: 10px;
  color: #ccc;
}

.breadcrumb span {
  color: red;
}
.blog-section {
  padding: 60px 20px;
  background: #e9e9e9;;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.blog-content a {
  color: red;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-explore-hero-content {
  /* height:100%; */
  height: 320px;
  background: url('../media/blog/trade.webp') center/cover no-repeat;
  position: relative;
}

.blog-explore-hero-content .overlay {
  background: rgba(0, 0, 0, 0.75);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion button {
  width: 100%;
  text-align: left;
  padding: 12px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.accordion button:hover {
  color: #e63946;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 13px;
}

.contact-form textarea {
  height: 80px;
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.btn-submit:hover {
  background: #d62839;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 13px;
  color: #555;
}

.blog-explore-hero-content h1 {
  color: #fff;
  font-size: 28px;
  text-align: center;
}
.blog-container {
  display: flex;
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.blog-explore-content {
  width: 70%;
}

/* Better content readability */
.blog-explore-content h2 {
  margin-top: 25px;
  font-size: 22px;
}

.blog-explore-content p {
  line-height: 1.7;
  color: #111;
  font-size: 14px;
}

.blog-sidebar {
  width: 30%;
}

.featured-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {

  .blog-container {
    flex-direction: column;   /* stack vertically */
    padding: 20px;
  }

  .blog-explore-content {
    width: 100%;
  }

  .blog-sidebar {
    width: 100%;
  }

  .featured-img {
    height: auto;
  }

}