body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.post-content {
    white-space: pre-line;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.img-fluid {
    max-height: 400px;
    object-fit: cover;
}

.badge {
    font-size: 0.9rem;
    font-weight: normal;
}

.custom-link {
  text-decoration: none;     /* Remove underline */
  color: inherit;            /* Use the parent text color */
  transition: color 0.3s ease;  /* Smooth hover transition (optional) */
}

.custom-link:hover {
  color: #007BFF;            /* Change color on hover */
  text-decoration: underline; /* Optional: underline only on hover */
}