.wwsf-wrapper-50da5ddc {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.wwsf-eyebrow-50da5ddc {
    text-align: center;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ED8B55;
    margin-bottom: 32px;
}

.wwsf-grid-50da5ddc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.wwsf-card-50da5ddc {
    background-color: #FFF8EF;
    border: 1px solid rgba(237, 139, 85, 0.18);
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    box-sizing: border-box;
    height: 100%;
}

.wwsf-icon-50da5ddc {
    flex-shrink: 0;
    color: #ED8B55;
    font-size: 48px; /* Desktop size between 44px and 52px */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwsf-icon-50da5ddc i {
    font-weight: 300; /* Thin style for Font Awesome */
}

.wwsf-icon-50da5ddc svg {
    width: 48px;
    height: 48px;
    fill: none; /* Line icon style */
    stroke: currentColor;
    stroke-width: 2; /* Ensure it looks like a line icon */
}

.wwsf-content-50da5ddc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wwsf-title-50da5ddc {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #151515;
    margin: 0;
    line-height: 1.3;
}

.wwsf-desc-50da5ddc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    margin: 0;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 1024px) {
    .wwsf-grid-50da5ddc {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .wwsf-grid-50da5ddc {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .wwsf-card-50da5ddc {
        padding: 20px;
        border-radius: 12px;
    }
    .wwsf-icon-50da5ddc {
        font-size: 40px; /* Mobile size between 36px and 42px */
    }
    .wwsf-icon-50da5ddc svg {
        width: 40px;
        height: 40px;
    }
    .wwsf-title-50da5ddc {
        font-size: 16px;
    }
    .wwsf-desc-50da5ddc {
        font-size: 14px;
    }
    .wwsf-eyebrow-50da5ddc {
        font-size: 12px;
        margin-bottom: 24px;
    }
}