.card-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 1140px;
    height: 100%;
    margin-bottom: 35px;
}

.card {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 330px;
    height: 450px;
    margin: 10px;
}

.card-photo {
    flex: 0 0 70%;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text {
    flex: 0 0 30%;
    padding: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.default-text .rank {
    margin-top: 5px;
    line-height: 1;
}

.default-text {
    font-size: 16px;
}