.blog-hero {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
  padding: 140px 0 80px;
  border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.12);
  border-color: rgba(13, 110, 253, 0.15);
}
.blog-card .card-img-top {
  height: 240px;
  object-fit: cover;
}
.blog-card .blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[data-bs-theme=dark] .blog-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}
[data-bs-theme=dark] .blog-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

[data-bs-theme=dark] .sidebar-widget {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 3px;
}

/*# sourceMappingURL=blogs.css.map */
