* {
    margin: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body {
    font-family: Arial, sans-serif;
    direction: rtl;
}

.places-container {
    padding: 110px 0 20px;
}

.card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.cards-container {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.cards-container .card {
    width: 240px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.070);
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.card img {
    width: 100%;
    height: 140px;
    border: 7px solid white;
    object-fit: cover;
    border-radius: 14px}

.card h3 {
    padding: 5px 0 7px;
    font-size: 14px;

    text-align: center;
    font-family: 'noto sans arabic - text';
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.8;
}

.p-description {
    font-family: 'noto sans arabic - text';
    padding: 0 10px 2px;
    margin: 0;
    font-size: 11px;
    text-align: center;
    color: #777;
    flex-grow: 1;
}

.rating {
    text-align: center;
    padding-bottom: 10px;
    font-size: 11px;
    color: #ffc107;
    flex-grow: 1;
}
.btn {
    padding: 8px 20px;
    background-color: red;
    color: white;
    height: 40px;
    margin: 0 auto;
    width: 90%;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

a{
    cursor: pointer;
}


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