/* Blog Sync Block (ohne Geräte-Mockups) */
.blog-sync {
    position: relative;
    overflow: hidden;
}

.blog-sync-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(55, 85, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(234, 100, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.blog-sync-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.blog-sync-title {
    font-size: 36px;
    font-weight: 700;
    color: #37556b;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.blog-sync-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ea6463 0%, #f47776 100%);
    border-radius: 2px;
}

.blog-sync-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6!important;
    margin-top: 24px!important;
    margin-bottom: 0!important;
}

/* Sync Points */
.blog-sync-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-sync-point {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(55, 85, 107, 0.08);
    transition: all 0.3s ease;
}

.blog-sync-point-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-sync-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-sync-point-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(55, 85, 107, 0.08) 0%, rgba(55, 85, 107, 0.15) 100%);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.blog-sync-point:hover .blog-sync-point-icon {
    background: linear-gradient(135deg, #37556b 0%, #4a6b7c 100%);
}

.blog-sync-point-icon i {
    font-size: 24px;
    color: #37556b;
    transition: color 0.3s ease;
}

.blog-sync-point:hover .blog-sync-point-icon i {
    color: white;
}

.blog-sync-point-title {
    font-size: 18px;
    font-weight: 600;
    color: #37556b;
    margin: 0;
    line-height: 1.3;
}

.blog-sync-point-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6!important;
    margin: 0!important;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sync-points {
        grid-template-columns: 1fr;
    }

    .blog-sync-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .blog-sync-title {
        font-size: 26px;
    }

    .blog-sync-point {
        padding: 20px 18px;
        gap: 14px;
    }

    .blog-sync-point-icon {
        width: 48px;
        height: 48px;
    }

    .blog-sync-point-icon i {
        font-size: 20px;
    }

    .blog-sync-point-title {
        font-size: 16px;
    }

    .blog-sync-point-desc {
        font-size: 14px;
    }
}
