:root {
  --primary-color: #3b82f6;
  --secondary-color: #2563eb;
  --text-color: #1e293b;
  --background-color: #f9fafb;
  --button-color: #3b82f6;
}

/* Add your custom CSS below this line */

@media (min-width: 425px) and (max-width: 639px) {
  .main-banner-custom-pt {
    padding-top: 170px !important;
  }
  .max-w-sm {
    max-width: 24rem !important;
  }
}

/* Mobile only: cta-boxes image rotation, scaling, and top position */
@media (max-width: 767px) {
  .cta-boxes-mobile-style {
    transform: rotate(-57deg) scale(2.5) !important;
    top: 35% !important;
  }
}


.blogs-section {
  padding: 60px 0 40px 0;
  background: #fff;
}

.blogs-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}

.blogs-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.blogs-divider {
  flex: 1;
  border: none;
  border-top: 2px solid #eee;
  margin: 0 16px;
}

.view-all-btn {
  background: #ffc107;
  color: #222;
  padding: 8px 22px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}

.view-all-btn:hover {
  background: #ff9800;
}

.blogs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}

.blog-card {
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 260px;
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px) scale(1.03);
}

.blog-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.blog-meta {
  font-size: 0.9rem;
  color: #888;
  margin: 14px 18px 2px 18px;
}

.blog-title {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 18px 6px 18px;
  color: #222;
  min-height: 48px;
}

.blog-info {
  font-size: 0.92rem;
  color: #999;
  margin: 0 18px 18px 18px;
}

@media (max-width: 1100px) {
  .blogs-list {
    gap: 18px;
  }

  .blog-card {
    width: 220px;
    flex-basis: 220px;
  }
}

@media (max-width: 900px) {
  .blogs-list {
    flex-wrap: wrap;
    gap: 16px;
  }

  .blog-card {
    width: 48%;
    min-width: 180px;
  }
}

@media (max-width: 600px) {
  .blogs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .blogs-list {
    flex-direction: column;
    gap: 18px;
  }

  .blog-card {
    width: 100%;
    min-width: 0;
  }
}

.interest-pill {
  @apply px-4 py-1.5 rounded-full border transition font-medium text-sm outline-none cursor-pointer duration-150 shadow-none;
  border: 1.5px solid #FF8D25;
  color: #FF8D25;
  background: #fff;
  margin-bottom: 0.5rem;
}

.interest-pill.active {
  background: linear-gradient(to right, #FF8D25 ,#F0C040);
  color: #fff;
  border: none;
}

.interest-pill:hover:not(.active) {
  box-shadow: 0 2px 8px 0 rgba(255, 141, 37, 0.10);
  background: #FFF6ED;
}