.wbl-four-column-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.wbl-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.wbl-top-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.wbl-columns-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.wbl-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-right: 1px solid #808080;
}

.wbl-column:last-child {
    border-right: none;
}

.wbl-column:hover {
    transform: translateY(-5px);
}

.wbl-column-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wbl-column-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.wbl-column-content {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .wbl-columns-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .wbl-column:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .wbl-columns-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wbl-column {
        border-right: none;
        border-top: none;
        padding-top: 2rem;
        position: relative;
    }

    .wbl-column::before {
        content: "";
        display: block;
        width: 120px;
        height: 2px;
        background: #808080;
        margin: 0 auto 1.5rem auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .wbl-column:first-child::before {
        display: none;
    }

    .wbl-column:first-child {
        padding-top: 1.5rem;
    }
}
