/* استایل شورت‌کد عمومی – مدرن پزشکی */
.deliari-public-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.public-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 1px solid #f0f4f9;
}

.public-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.1);
}

.public-card-image {
    height: 190px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.public-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-card-content {
    padding: 20px 22px 26px;
}

.public-card-content h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #0d2b4b;
    font-weight: 700;
}

.public-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    border-top: 1px solid #edf2f7;
    padding-top: 16px;
}

.public-prices .official {
    color: #0d47a1;
    background: #e3f2fd;
    padding: 4px 12px;
    border-radius: 30px;
}

.public-prices .deliari {
    color: #00897b;
    background: #e0f2f1;
    padding: 4px 12px;
    border-radius: 30px;
}

.no-image {
    color: #a0b3c9;
    font-size: 14px;
}

.no-services {
    text-align: center;
    padding: 60px 20px;
    color: #5a7184;
    font-size: 18px;
    background: #f8fafc;
    border-radius: 30px;
}