/* Republic Past: klarer Ablauf der ersten Einschätzung */
.process-steps-section{
    max-width:1100px;
    margin:0 auto 48px;
    padding:44px 38px 38px;
    background:#fffaf0;
    border:1px solid #d4c5ad;
    border-top:4px solid #8c6a3f;
    box-shadow:0 14px 36px rgba(31,33,29,.09);
}
.process-steps-section .process-eyebrow{
    margin:0 0 8px;
    color:#8c6a3f;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    font-size:12px !important;
    font-weight:700;
    line-height:1.4 !important;
    letter-spacing:.13em;
    text-align:center;
    text-transform:uppercase;
}
.process-steps-section h2{
    margin:0;
    color:#24291f;
    font-size:34px;
    line-height:1.2;
    text-align:center;
    text-transform:none;
}
.process-steps-section .process-intro{
    max-width:720px;
    margin:14px auto 30px;
    color:#4b443a;
    font-size:18px !important;
    line-height:1.65 !important;
    text-align:center;
}
.process-steps-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.process-step{
    position:relative;
    min-height:250px;
    padding:30px 26px 26px;
    background:#fffdf8;
    border:1px solid #d9ccb7;
    box-shadow:0 8px 22px rgba(31,33,29,.06);
}
.process-step::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    left:0;
    height:3px;
    background:#8c6a3f;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .2s ease;
}
.process-step:hover::after{
    transform:scaleX(1);
}
.process-number{
    display:flex;
    width:42px;
    height:42px;
    margin:0 0 22px;
    align-items:center;
    justify-content:center;
    background:#24291f;
    border-radius:50%;
    color:#fff;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    font-size:17px;
    font-weight:700;
    line-height:1;
}
.process-step h3{
    margin:0 0 10px;
    color:#24291f;
    font-size:23px;
    font-weight:normal;
    line-height:1.25;
}
.process-steps-section .process-step p{
    margin:0;
    color:#4b443a;
    font-size:16px !important;
    line-height:1.65 !important;
}
.process-step a{
    color:#654a2d;
    font-weight:700;
    text-underline-offset:3px;
}
.process-details{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0;
    margin-top:22px;
    background:#f1e7d5;
    border:1px solid #d4c5ad;
}
.process-steps-section .process-detail{
    margin:0;
    padding:22px 24px;
    color:#403a31;
    font-size:15.5px !important;
    line-height:1.65 !important;
}
.process-detail + .process-detail{
    border-left:1px solid #d4c5ad;
}
.process-detail strong{
    display:block;
    margin-bottom:5px;
    color:#24291f;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    font-size:13px;
    line-height:1.4;
    letter-spacing:.08em;
    text-transform:uppercase;
}
@media(max-width:900px){
    .process-steps-grid{
        grid-template-columns:1fr;
    }
    .process-step{
        min-height:0;
    }
}
@media(max-width:700px){
    .process-steps-section{
        margin-bottom:36px;
        padding:34px 20px 24px;
    }
    .process-steps-section h2{
        font-size:29px;
    }
    .process-details{
        grid-template-columns:1fr;
    }
    .process-detail + .process-detail{
        border-top:1px solid #d4c5ad;
        border-left:0;
    }
}
