.custom-card {
    width: 100%;
    max-width: 18rem;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #8CB9BD !important;
    transition: transform 0.3s ease-in-out;
    margin: 0 auto;
}

.custom-card:hover {
    transform: scale(1.02);
}

.custom-card-img {
    width: 90%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.custom-card-body {
    padding: 1rem;
    text-align: left;
    width: 100%;
}

.custom-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.custom-card-date {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.custom-card-text {
    text-align: left;
}

.custom-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    width: auto;
    border-radius: 50px;
    border: 2px solid #040081;
    background-color: transparent;
    color: #040081;
}

.custom-button:hover {
    background-color: #040081;
    color: white;
}