/* Blog Styles */

/* Fonts */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #fafafa;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #222;
}

/* Blog Page Title */
#blog h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #cd55aa; /* brand pink */
  padding-top: 50px;;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #a659e2; /* brand purple for titles */
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

.card-body .small {
  font-size: 0.8rem;
  color: #888;
}
