/* =========================
   BASE STYLES (DESKTOP)
   ========================= */

.Badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
}

.Badges_title {
    text-align: center;
}

.wrapper_Badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.left_Badges {
    max-width: 520px;
    color: #4a4a4a;
}

.right_Badges {
    max-width: 520px;
}

.Badges-img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   TITLES
   ========================= */

.Badges_title_h1,
.Badges_title_h2 {
    background: linear-gradient(
            145deg,
            #80E5FF 0px,
            #545C9E 40%,
            #545C9E 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 56px;
    letter-spacing: 2px;
    font-weight: 550;
}

.Badges_title_h1 {
    margin-top: 32px;
}

.Badges_title_h2 {
    margin: 0 0 16px;
}

/* =========================
   TEXT
   ========================= */

.Badges_description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #465478;
}

/* =========================
   LIST
   ========================= */

.Badges_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Badges_list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #465478;
}

.Badges_list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #6b7cff;
    font-size: 20px;
    line-height: 1;
}

/* =========================
   FOOTER BUTTON
   ========================= */

.Badges_footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   TABLET (768px – 1024px)
   ========================= */

@media (max-width: 1024px) {

    .Badges {
        margin: 30px;
    }

    .wrapper_Badges {
        flex-direction: column;
        gap: 30px;
        margin: 40px 0;
    }

    .left_Badges,
    .right_Badges {
        max-width: 90%;
        text-align: center;
    }

    .Badges_title_h1,
    .Badges_title_h2 {
        font-size: 42px;
        letter-spacing: 1.5px;
    }

    .Badges_description {
        font-size: 15px;
    }

    .Badges_list {
        text-align: left;
    }
}

/* =========================
   MOBILE (up to 768px)
   ========================= */

@media (max-width: 768px) {

    .Badges {
        margin: 20px 16px;
    }

    .wrapper_Badges {
        gap: 24px;
        margin: 24px 0;
    }

    .Badges_title_h1,
    .Badges_title_h2 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .Badges_description {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .Badges_list li {
        font-size: 14px;
    }

    .How_It_Works_footer {
        margin-top: 30px;
    }
}

/* =========================
   SMALL MOBILE (up to 480px)
   ========================= */

@media (max-width: 480px) {

    .Badges_title_h1,
    .Badges_title_h2 {
        font-size: 28px;
    }

    .Badges_list li {
        padding-left: 18px;
    }
}
