/* Custom CSS for CEW Custom Box Widget */

.cew-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    border: var(--stroke-weight-1, 1px) solid var(--color-black-8, rgba(0, 0, 0, 0.08));
    background: var(--color-grey-97, #F6F7FA);
    padding: 30px 30px 50px 50px;
    min-height: 300px;
}
.cew-box-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cew-box-top-row {
    display: grid;
    grid-template-columns: auto auto;
}

@media screen and (max-width: 1024px) {
    .cew-box {
        padding: 40px;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .cew-box {
        padding: 20px;
        gap: 5px;
    }
}

@media screen and (max-width: 576px) {
    .cew-box-top-row {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 16px;
    }
}
.cew-box-icon {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 13px;
    background: var(--color-grey-95, #E5EEFF);

}
.cew-box-icon img {
    width: 22px;
    height: 22px;
}

.cew-box-number {
    color: rgba(28, 200, 216, 0.12);
    font-family: Manrope, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .cew-box-number {
        font-size: 56px;
    }
}

@media screen and (max-width: 576px) {
    .cew-box-number {
        text-align: left;
    }
}

.cew-box-heading {
    color: #0F1117;
    font-family: Manrope, sans-serif;
    font-size: 25.8px;
    font-style: normal;
    font-weight: var(--font-weight-800, 800);
    line-height: 29.12px;
    letter-spacing: -0.65px;
}

.cew-box-description {
    color: #3C424F;
    font-family: Instrument, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.8px;
    margin-right: 30px;
}

@media screen and (max-width: 1024px) {
    .cew-box-heading {
        font-size: 22px;
        line-height: 26px;
    }
}

@media screen and (max-width: 576px) {
    .cew-box-heading {
        font-size: 20px;
        line-height: 22px;
    }
    .cew-box-description {
        font-size: 14px;
        line-height: 22px;
    }
}