/* ── CEW About Story ─────────────────────────────────────── */

.cew-about-story {
    width: 100%;
}

.cew-as-inner {
    display: flex;
    align-items: stretch;
    gap: 64px;
}

/* ── Image Column ──────────────────────────────────────────── */
.cew-as-image-col {
    flex: 0 0 43%;
    max-width: 43%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cew-as-image {
    width: 100%;
    flex: 1;
    min-height: 448px;
    border-radius: 20px;
    background-size: cover;
    background-position: center center;
    background-color: #e8e8e8;
}

/* ── Content Column ────────────────────────────────────────── */
.cew-as-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* ── Body ──────────────────────────────────────────────────── */
.cew-as-body {
    color: rgba(20, 20, 20, 0.65);
    font-family: "Instrument Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cew-as-body p {
    margin: 0;
    color: rgba(20, 20, 20, 0.50);
}

/* ── Trust Points ──────────────────────────────────────────── */
.cew-as-trust-list {
    list-style: none ;
    margin: 0 ;
    padding: 0;
    display: flex ;
    gap: 22px;
    max-width: 450px;
    width: 100%;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 33px;
}

.cew-as-trust-item {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(20, 20, 20, 0.55);
    font-family: "Instrument Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.5px; /* 150% */
}

.cew-as-trust-item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: #FF1F6E;
}

/* ── Info Card ─────────────────────────────────────────────── */
.cew-as-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: #F4F4F4;
    padding: 16px 20px;
}

.cew-as-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background-color: rgba(255, 31, 110, 0.10);
    color: #FF1F6E;
    font-size: 18px;
}

.cew-as-info-icon svg {
    width: 20px;
    height: 20px;
    fill: #FF1F6E;
}

.cew-as-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cew-as-info-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 22.5px;
    color: #141414;
    margin: 0;
}

.cew-as-info-subtitle {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    color: rgba(20, 20, 20, 0.50);
    margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .cew-as-inner {
        flex-direction: column;
        gap: 32px;
    }

    .cew-as-image-col {
        flex: unset;
        max-width: 100%;
        width: 100%;
    }

    .cew-as-image {
        min-height: 280px;
    }
}