/* Hilfedienst Beratungsschritte Designer */

.hd-bsd-wrap{
    background: linear-gradient(180deg, var(--hd-section), #ffffff);
    padding: var(--hd-vpad) 16px;
    margin: 0 auto;
}

.hd-bsd-inner{
    max-width: var(--hd-width);
    margin: 0 auto;
    color: var(--hd-text);
    text-align: center;
}

.hd-bsd-badge{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(216,87,87,.10);
    color: var(--hd-accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hd-bsd-title{
    margin: 0 0 28px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: var(--hd-text);
    font-weight: 800;
}

.hd-bsd-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    text-align: left;
    margin: 0 auto 28px;
}

.hd-bsd-item{
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--hd-card);
    border-radius: var(--hd-radius);
    padding: 22px 22px;
    box-shadow: 0 14px 40px rgba(26, 47, 67, 0.08);
    border: 1px solid rgba(41, 74, 95, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hd-bsd-item:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(26, 47, 67, 0.12);
}

.hd-bsd-icon{
    width: 66px;
    height: 66px;
    border-radius: 18px;
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hd-accent-dark), var(--hd-accent));
    color: #fff;
    box-shadow: 0 12px 24px rgba(155, 75, 91, 0.22);
}

.hd-bsd-icon .dashicons{
    font-size: 30px;
    width: 30px;
    height: 30px;
}

.hd-bsd-step{
    color: var(--hd-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hd-bsd-text{
    color: var(--hd-text);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.hd-bsd-button-row{
    margin-top: 10px;
}

.hd-bsd-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 18px 30px;
    border-radius: 999px;
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--hd-accent), #ee7474);
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    box-shadow: 0 14px 28px rgba(216, 87, 87, 0.25);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.hd-bsd-button:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(216, 87, 87, 0.32);
    opacity: .96;
}

@media (max-width: 900px){
    .hd-bsd-grid{
        grid-template-columns: 1fr;
    }

    .hd-bsd-title{
        margin-bottom: 22px;
    }

    .hd-bsd-text{
        font-size: 18px;
    }
}

@media (max-width: 600px){
    .hd-bsd-wrap{
        padding-left: 12px;
        padding-right: 12px;
    }

    .hd-bsd-item{
        gap: 14px;
        padding: 18px;
        border-radius: calc(var(--hd-radius) - 6px);
    }

    .hd-bsd-icon{
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        border-radius: 14px;
    }

    .hd-bsd-icon .dashicons{
        font-size: 24px;
        width: 24px;
        height: 24px;
    }

    .hd-bsd-text{
        font-size: 16px;
    }

    .hd-bsd-button{
        width: 100%;
        min-width: 0;
        padding: 16px 20px;
        letter-spacing: .08em;
    }
}


.hd-bsd-item-info{
    background: linear-gradient(180deg, #fffdf9, var(--hd-card));
    border: 1px dashed rgba(41, 74, 95, 0.18);
}

.hd-bsd-item-info .hd-bsd-icon{
    background: linear-gradient(135deg, #6b8192, var(--hd-text));
    box-shadow: 0 12px 24px rgba(41, 74, 95, 0.16);
}

.hd-bsd-step-info{
    color: var(--hd-text);
    opacity: .8;
}
