

/* Custom styles for communitu showcase */
#community-showcase .card {
border: none; /* Remove card border if needed */
border-radius: 8px; /* Optional: round the corners of the card */
overflow: hidden; /* Ensure the content doesn't overflow the card */
}

#community-showcase .card-img-top {
height: 100%;
object-fit: cover;
}

#community-showcase .card-body {
padding: 1rem;
background-color: #ffffff; /* Ensure the card background is white */
}

#community-showcase .card-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

#community-showcase .card-text {
font-size: 0.875rem;
color: #6c757d; /* Adjust color as needed */
margin-bottom: 1rem;
}

#community-showcase .btn-primary {
background-color: #fec524;
color: #0e2240;
border: none; /* Remove border if needed */
}

#community-showcase .btn-primary:hover {
background-color: #fec524; /* Slightly darker yellow for hover effect */
color: #0e2240;
text-decoration: none;
}

.card.shadow-sm {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}
