.blog-header-section {
  padding: 96px 0 96px;
}

.blog-header-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-btn);
  display: block;
  margin-bottom: 12px;
}

.blog-header-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 20px;
}

.blog-header-subtitle {
  font-size: 20px;
  color: var(--label-color);
  margin-bottom: 48px;
}

.search-svg {
  margin-right: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
  right: 20px;
}


.blog-search-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.blog-search-wrapper .input-group {
  position: relative;
}

.blog-search-input {
  border: none;
  box-shadow: none;
  font-size: 15px;
}

.blog-search-input:focus {
  box-shadow: none;
}

.blog-search-input[type="search"]:focus-visible {
  outline-offset: 1px;
  outline-color: var(--blue-btn);
}

.blog-search-wrapper .input-group-text {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #6c757d;
}

.blog-container {
  padding: 0 20px 80px 20px;
}

.featured-post .featured-img {
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}

.featured-post {
  margin-bottom: 64px;
}

.featured-post-info {
  text-align: left;
}

.post-thumbnail-img {
  border-radius: 16px;
  height: 256px;
  transition: 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-link:hover {
  color: var(--primary-black);
}


.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 14px;
  color: var(--blue-btn);
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-black);
}

.blog-link {
  color: var(--primary-black);
  ;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.blog-card-content {
  color: var(--label-color);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}


.blog-search-input {
  height: 44px;
  width: 480px;
  border: 1px solid var(--border-primary);
  border-radius: 8px !important;
  padding-left: 45px;
}


/* Pagination start */
.blog-pagination-wrapper {
  padding: 20px 0;
  border-top: 1px solid var(--color-border-light);
}

.blog-pagination .page-link {
  border: none;
  color: #4A4A4A;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  justify-content: center;
}

.blog-pagination .page-item.active .page-link {
  background-color: var(--color-page-bg);
  color: var(--color-text-secondary);
}

.blog-pagination .page-item.disabled .page-link {
  background: transparent;
}

.blog-nav-btn {
  border: 1px solid var(--border-primary);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-top: 1px;
}

.blog-nav-btn:hover {
  background: var(--color-section-bg);
  color: var(--color-text-secondary);
}

.blog-nav-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.previous-icon {
  margin-right: 6px;
}

.next-icon {
  margin-left: 6px;
}


/* Pagination end */


/* Blog detail start */
.blog-detail-section {
  padding-top: 32px; 
}

.blog-goback-wrapper {
    margin-bottom: 16px;
}

.blog-detail-date {
  font-size: 16px;
  color: var(--blue-btn);
  font-weight: 600;
  margin-bottom: 0;
}

.blog-detail-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 24px;
}


.blog-detail-image-wrapper {
  text-align: center;
}

.blog-detail-image {
  border-radius: 16px;
  max-height: 520px;
  object-fit: cover;
}

.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--label-color);
}

.blog-detail-content h2,
.blog-detail-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--primary-black);
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-author-share-section {
  border-top: 1px solid #e6e6e6;
  margin-top: 48px;
  padding-top: 24px;
}

/* Author Image */
.author-img img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

/* Author Text */
.author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.author-designation {
  font-size: 15px;
  color: var(--label-color);
}

/* Copy Button */
.copy-link-btn {
  padding: 8px 14px;
  border: 1px solid #d1d5db;
  background: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: 0.3s ease;
}

.copy-link-btn:hover {
  background: var(--color-soft-bg);
}


.view-all-posts-btn {
  background-color: var(--color-brand-primary);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.view-all-posts-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-brand-primary-hover);
}



/* Blog detail end */





.blog-search-resultrow {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  align-items: flex-start;
  max-width: 600px;
  width: 100%;
}

.blogsearch-image {
  width: 130px;
}

.blogsearch-content {
  flex: 1;
}

.blogsearch-detail-title {
  color: var(--secondary-blue);
  font-size: 18px
}

.blogsearch-title {
  margin-bottom: 4px;
}

.blogsearch-detail-content {
  color: var(--text-black);
}

.blog-search-resultrow .blogsearch-image .wp-post-image {
  border-radius: 8px;
}

.search-result-list {
  margin: 0 auto;
  max-width: 500px;
}

/* No Result found */
/* Custom Animations & Refinements */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.icon-circle {
  width: 128px;
  height: 128px;
  background-color: #e0e7ff;
  /* matches indigo-100 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.decoration-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-yellow {
  width: 16px;
  height: 16px;
  background-color: #facc15;
  top: -8px;
  right: -8px;
}

.dot-pink {
  width: 12px;
  height: 12px;
  background-color: #f472b6;
  bottom: 8px;
  left: -16px;
}

 

 

 
 