.spb-52229488-container {
    background-color: #9E5A5A;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
}

.spb-52229488-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
}

/* Connector Line */
.spb-52229488-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 55px; /* Appx half of icon size + top offset */
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.spb-52229488-step:hover {
    transform: translateY(-4px);
}

.spb-52229488-label {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-style: italic;
    font-weight: 300;
}

.spb-52229488-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.25s ease;
    margin-bottom: 14px;
}

.spb-52229488-icon-wrapper i {
    font-size: 22px;
    color: #ffffff;
}

.spb-52229488-icon-wrapper svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.spb-52229488-step:hover .spb-52229488-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.6);
}

.spb-52229488-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 6px 0;
    transition: all 0.25s ease;
}

.spb-52229488-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.25s ease;
}

.spb-52229488-step:hover .spb-52229488-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Rules */
@media (max-width: 768px) {
    .spb-52229488-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    /* Reconfigure dividers for 2x2 grid */
    .spb-52229488-step:nth-child(2)::after,
    .spb-52229488-step:last-child::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .spb-52229488-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Remove all dividers on mobile stack */
    .spb-52229488-step::after {
        display: none !important;
    }
}