@charset "UTF-8";
/* public/css/blog.css */
/* Card transition effects */
.post-content h2 {
  font-size: 25px;
  font-weight: 700;
}

.post-content h3 {
  font-size: 25px;
  font-weight: 700;
}

.post-content strong {
  font-weight: 700;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Typography */
.font-serif {
  font-family: "Merriweather", Georgia, serif;
}

/* Blog specific styles */
.breadcrumb {
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 0.5rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

.post-content pre {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.25rem;
  overflow-x: auto;
}

.featured-image-caption {
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .d-flex.justify-content-between.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .d-flex.justify-content-between.align-items-center > div:last-child {
    width: 100%;
    margin-top: 1rem;
  }
}

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