.svs-projects-showcase-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svs-project-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.svs-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #0073aa;
}

.svs-project-card-image-wrap {
    flex: 0 0 40%;
    overflow: hidden;
}

.svs-project-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    transition: transform 0.5s ease;
}

.svs-project-card:hover .svs-project-card-image {
    transform: scale(1.05);
}

.svs-project-card-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fff;
    z-index: 1;
}

.svs-project-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
}

.svs-project-card:hover .svs-project-card-title {
    color: #0073aa;
}

.svs-project-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.svs-project-card-arrow {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 20px;
    color: #0073aa;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.svs-project-card:hover .svs-project-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .svs-project-card {
        flex-direction: column;
    }
    .svs-project-card-image-wrap {
        flex: none;
        width: 100%;
    }
    .svs-project-card-image {
        min-height: 250px;
    }
    .svs-project-card-content {
        padding: 20px;
    }
    .svs-project-card-arrow {
        right: 20px;
        bottom: 20px;
    }
}
