.eb-process-widget {
    background: var(--eb-white);
    /* padding: 96px 52px; */
    /* font-family: 'DM Sans', sans-serif; */
}

.eb-process-dark 
.eb-process-widget {
    background: var(--eb-dark);
    position: relative;
    overflow: hidden;
}

.eb-process-dark 
.eb-process-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.eb-process-dark 
.eb-process-widget .eb-section-tag {
    color: var(--eb-gold-lt);
}

.eb-process-dark 
.eb-process-widget .eb-section-tag::before {
    background: var(--eb-gold-lt);
}

.eb-process-dark 
.eb-process-widget .eb-process-title {
    color: white;
}

.eb-process-dark 
.eb-process-widget .eb-process-title em {
    color: var(--eb-gold-lt);
}

.eb-process-dark 
.eb-process-widget .eb-process-desc {
    color: rgba(255, 255, 255, .4);
}

.eb-process-dark 
.eb-process-widget .eb-ps-circle {
    background: transparent;
    border-color: var(--eb-gold);
    background: rgba(222,170,87,.1);
}

.eb-process-dark 
.eb-process-widget .eb-ps-num {
    color: var(--eb-gold);
}

.eb-process-dark 
.eb-process-widget .eb-ps-title {
    color: rgba(255, 255, 255, .8);
}

.eb-process-dark 
.eb-process-widget .eb-ps-text {
    color: rgba(255, 255, 255, .38);
}

.eb-process-header {
    text-align: left;
    margin-bottom: 64px;
}

.eb-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--eb-gold-dk);
    margin-bottom: 14px;
}

.eb-section-tag::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--eb-gold);
    border-radius: 2px;
}

.eb-process-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.01em;
    margin-bottom: 14px;
    color: var(--eb-txt);
}

.eb-process-title em {
    font-style: normal;
    color: var(--eb-blue);
}

.eb-process-desc {
    color: var(--eb-txt-mid);
    font-size: 16px;
    line-height: 1.78;
    /* max-width: 560px; */
    font-weight: 400;
}

.eb-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 0;
    margin-top: 64px;
}

.eb-process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--eb-gold) 0%, var(--eb-blue-lt) 100%);
    z-index: 1;
}

.eb-ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 14px;
    position: relative;
    z-index: 2;
}

.eb-ps-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--eb-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--eb-white);
    transition: background .3s;
}

.eb-ps:hover .eb-ps-circle {
    background: var(--eb-gold-pale);
}

.eb-ps-num {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--eb-gold-dk);
}

.eb-ps-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--eb-txt);
    margin-bottom: 8px;
}

.eb-ps-text {
    font-size: 16px;
    color: var(--eb-txt-muted);
    line-height: 1.65;
    font-weight: 400;
}

.eb-process-cta {
    text-align: center;
    margin-top: 52px;
}

@media (max-width: 1100px) {
    .eb-process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .eb-process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .eb-process-widget {
        /* padding: 64px 20px; */
    }
    .eb-process-steps {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }
    .eb-process-header{
        margin-bottom: 30px;
    }
    .eb-ps {
        padding: 14px 14px;
    }
}
