.rate-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
}

.rate-card {
    display: block;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.rate-card:hover {
    transform: translateY(-5px);
}

.rate-card__image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.rate-card__title {
    padding: 10px;
    font-size: 16px;
    color: #000;
    text-align: center;
}

@media (max-width: 998px) {
    .rate-cards-wrapper {
        justify-content: space-between;
    }
}

@media (max-width: 765px) {
    .rate-card {
        width: 48%;
    }
}

@media (max-width: 420px) {
    .rate-card {
        width: 100%;
    }
}
