.custom-card {
    height: 350px;
    overflow: hidden;
}

.custom-card.d-flex {
    display: flex;
    flex-direction: column;
}

.custom-card.justify-content-center {
    justify-content: center;
}

.custom-card.align-items-center {
    align-items: center;
}

.custom-card img {
    max-height: 150px;
    max-width: 100%;
}

.custom-card .card-title {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-card .card-text {
    font-size: 0.875rem;
    max-height: 2.5rem;
    overflow: hidden;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}