/* EXPLORE BLOG PAGE STYLES */
.explore-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #fffdfb;
  }
  
  .explore-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  .explore-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  
  .category-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .category-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    transition: all 0.3s;
  }
  
  .category-menu a.active,
  .category-menu a:hover {
    background: #DE524C;
    color: #fff;
  }
.search-bar{z-index:-1;}
  
  .search-bar input[type="text"] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    min-width: 200px;
    outline: none;
  }
  
  /* Grid */
  .post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .post-card {
    background: #fdfdfd;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }
  
  .post-thumb img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .post-title a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
  }
  
  .post-excerpt {
    color: #555;
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
  }
  
  .read-more {
    align-self: flex-start;
    background: #DE524C;
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 10px;
    font-weight: bold;
    font-size:1em !important;
    transition: background 0.3s ease;
  }
  
  .read-more:hover {
    background: #caa38d;
  }
  
  .no-posts {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.1rem;
    color: #888;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .explore-nav {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .search-bar input[type="text"] {
      width: 100%;
    }
  }

  .blog-title {
    color: #2c2b28;
    font-size: 1.5em !important;
    padding: 1.5em 0;
}
.probox {
    background: #DE524C !important;
}
span.innericon {
    background-color:#DE524C !important;
}

.post-header-row {
	background-color: #f5f5f5; /* Choose any background color */
	padding: 40px 0;
	width: 100%;
}
.blog-excerpt p {
    font-size: 1.1em;
    line-height: 25px;
}

.post-header-row .flex-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.blog-img-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%; /* Ensures full height if column height increases */
}

.blog-img img {
	width: 75%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.post-header-row {
	background-color: #f5f5f5; /* Or any color you want */
	width: 100%;
	padding: 40px 0;
}
.blog-content p {
    font-size: 1.1em;
    line-height: 25px;
    text-align: justify;
    padding: 0.5em 1.5em 0.5em 0;
}
.blog-content ul li {
    list-style-type: none;
    font-size: 1.1em;
    line-height: 25px;
    padding: 0.2em 0;
}
.main-blog-title {
    color: #2c2b28;
    font-size: 1.5em !important;
    padding: 1.5em 0;
    text-align: center;
}
.blog-share ul {
    display: flex;
    list-style: none;
    gap: 1.5em;
    margin-top: 1.1em;
}
body .blog-page .blog-share h3{color: #c0392b; font-size: 1.3em;}
.blog-share ul li a {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 5px;
    color: #fff;
}
.blog-content ul li::before {
  content: "\f105"; /* Font Awesome angle-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
  color: #000;
}
.blog-content h1,
.blog-content h2,
.blog-content h3 {
    font-size: 1.5em;
    font-weight: 500;
    padding: 0.5em 0;
    line-height: 25px;
}
article.post-card img {
    width: 300px;
    height: 200px;
}
.blog-content a {
    color: black;
}
.blog-content ol li {
    padding: 0.35em !important;
    font-size: 1.11em;
}