/* Blog Steps Block (ohne Screenshots) */
.blog-steps {
    position: relative;
}

.blog-steps-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.blog-steps-title {
    font-size: 36px;
    font-weight: 700;
    color: #37556b;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.blog-steps-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-steps-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 0 !important;
}

.blog-steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.blog-step:last-child {
    margin-bottom: 0;
}

.blog-step-connector {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    padding-top: 32px;
}

.blog-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #37556b 0%, #4a6b7c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(55, 85, 107, 0.3);
}

.blog-step-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(to bottom, #37556b 0%, rgba(55, 85, 107, 0.2) 100%);
    margin-top: 10px;
    border-radius: 1.5px;
}

.blog-step-content {
    flex-grow: 1;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(55, 85, 107, 0.08);
}

.blog-step-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.container h3.blog-step-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #37556b;
    margin-bottom: 12px;
    margin-top: 0 !important;
    line-height: inherit !important;
}

.blog-step-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.blog-step-desc p {
    margin-bottom: 10px;
    margin: inherit !important;
    display: inherit !important;
    line-height: inherit !important;
}

.blog-step-desc p:last-child {
    margin-bottom: 0!important;
}

/* Timeline Layout */
.blog-steps-layout-timeline .blog-steps-container {
    position: relative;
}

.blog-steps-layout-timeline .blog-steps-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #37556b 0%, rgba(55, 85, 107, 0.1) 100%);
    border-radius: 1.5px;
}

.blog-steps-layout-timeline .blog-step-line {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-steps-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .blog-step-connector {
        width: 40px;
        margin-right: 16px;
    }

    .blog-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .blog-step-content {
        padding: 20px;
    }

    .blog-step-title {
        font-size: 18px;
    }

    .blog-steps-title {
        font-size: 26px;
    }

    .blog-steps-layout-timeline .blog-steps-container::before {
        left: 20px;
    }
}
