/* .service-card-v1 {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
     
    gap: var(--cora-element-gap, 24px); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
 
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #0f172a;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
    width: fit-content;
    margin-bottom: 16px;
}

 
.service-title { margin: 0 !important; font-size: 32px; font-weight: 850; line-height: 1.2; color: #1e2b5e; }
.service-subtitle { margin: 0 !important; font-size: 18px; color: #475569; line-height: 1.5; }

 
.service-media-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-v1:hover .preview-img { transform: scale(1.03); } */