/* product info */
#category_back {
    display: none;
}
#product_banner {
    background: linear-gradient(206deg, #000 0%, #191630 100%);
    padding: 32px 0;
}

#product_wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

#mobile_title {
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 114.286% */
}

#desktop_title {
    display: none;
}

#product_image {
    max-width: 366px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(50% 50% at 50% 50%, #505460 0%, #100F0F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#product_image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 250px;
}

#product_info {
    text-align: center;
}

#product_cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#qsg_link {
    color: var(--brand-colour, #ECE81A);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

#buy_button {
    display: flex;
    height: 48px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: var(--brand-colour, #ECE81A);
    color: #000;
    text-align: center;
    font-family: Saira;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (min-width: 960px) {
    #product_banner {
        background: linear-gradient(259deg, #000 15.51%, #191630 79.35%);
    }

    #product_wrapper {
        max-width: 806px;
        height: 366px;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    /* #product_wrapper img {
        width: 280px;
        aspect-ratio: 1 / 1;
        padding: 0;
    } */

    #mobile_title {
        display: none;
    }

    #desktop_title {
        display: block;
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        line-height: 40px; /* 111.111% */
    }

    #product_info {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: left;
        align-items: flex-start;
    }
}

@media screen and (min-width: 1280px) {
    #articles h2 {
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: 40px; /* 100% */
        border-bottom: 1px solid var(--Bright-Yellow, #ECE81A);
        padding-bottom: 16px;
    }
}