/* General Card Styles */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Image Hover Effect */
.card-img-top {
    transition: transform 0.3s ease-in-out;
}

.card-img-top:hover {
    transform: scale(1.05);
}

/* Post Category Text */
.text-primary.text-uppercase {
    font-weight: 600;
    letter-spacing: 1px;
}

/* Button Styles */
.btn-outline-primary {
    border-width: 2px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Title Styles */
.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
