.container h2 {
    font-size: 48px;
    font-family: "Lora", serif;
    font-weight: 700;
}

.card {
    transition: all 0.2s ease;
}

.card:hover {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.373);
}

.card .card-body .card-title {
    max-height: 192px;
    font-family: "Lora", serif;
    line-height: 28px; 
    font-weight: 600;
}

.card .card-body .star-system i {
    padding-top: 0.37rem;
    color: var(--brown-color);
    font-size: 0.8rem;
}

.card .card-footer .btn-primary {
    background-color: var(--primary-color)!important;
    border: none!important;
    border-radius: 0px 0px 6px 6px;
    font-weight: 500;
    transition: all ease-in-out 0.2s;
}

.card .card-footer button:hover {
    opacity: 0.9;
}

.card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding: 1rem!important;
    background-color: inherit!important;
}

.card .card-footer button:hover {
    opacity: 0.9;
}