.service-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px; /* Modern, yuvarlak köşeler */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    height: 100%;
    margin-bottom: 20px; /* Alt boşluk */
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06); /* Hover'da yumuşak gölge */
    transform: translateY(-5px); /* Yukarı kalkma efekti */
    border-color: transparent;
}

.service-card-img-wrapper {
    position: relative;
    height: 220px; /* Görseller için sabit yükseklik */
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli bozmadan kutuya sığdır */
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.05); /* Hover'da resim hafif büyüsün */
}

/* Puan Rozeti - Resmin sol üstüne */
.rating-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.rating-badge svg {
    margin-right: 4px;
}

.service-card-body {
    padding: 20px;
    background-color: #4ce5ac;
}

.service-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Başlığı 2 satırla sınırla */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px; /* Hizalama için min yükseklik */
    text-decoration: none;
}

.service-card-author {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
    margin-top: 10px;
    border-top: 1px solid #fff;
    padding-top: 10px;
}

.service-card-author i {
    font-size: 16px;
    margin-right: 6px;
    color: #fff;
}