/* mobile */
@media screen and (max-width: 768px) {
    
    /* typo */
    h1 {
        font-weight: 400;
        font-size: 36px;
        line-height: 1.1em;
        color: var(--primary);
    }
    h2 {
        font-weight: 400;
        font-size: 36px;
        line-height: 1.1em;
        color: var(--primary);
    }
    h3 {
        font-weight: 400;
        font-size: 32px;
        line-height: 1.1em;
        color: var(--primary);
    }
    h4 {
        font-weight: 400;
        font-size: 28px;
        line-height: 1.1em;
        color: var(--primary);
    }
    h5 {
        font-weight: 400;
        font-size: 24px;
        line-height: 1.1em;
        color: var(--primary);
    }
    h6 {
        font-weight: 400;
        font-size: 20px;
        line-height: 1.1em;
        color: var(--primary);
    }
    p {
        font-weight: 300;
        font-size: 16px;
        color: var(--text);
        line-height: 1.4em;
    }
    .rs-text-l {
        font-size: 18px;
    }

    /* buttons */
    .rs-button {
        font-size: 14px;
    }

    /* header */
    .rs-header {
        padding: 24px 8px;
    }
    .rs-header .rs-logo-image {
        height: 20px;
    }

    .rs-nav-wrap {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        padding: 48px;
        background: var(--white);
        width: 100%;
        height: 100%;
        display: none;
        z-index: 9;
    }
    .rs-nav {
        flex-direction: column;
        gap: 48px;
        align-items: flex-start;
        position: relative;
    }
    .rs-nav-mobile-header {
        display: block;
        margin-bottom: 80px;
    }
    .rs-logo-mobile {
        display: block;
    }
    .rs-nav-mobile-close {
        position: absolute;
        top: 24px;
        right: 24px;
        padding: 16px;
        border-radius: 32px;
        display: flex;
        background: var(--light-background);
    }
    .rs-mobile-menu-open {
        padding: 16px;
        border-radius: 32px;
        display: flex;
        background: var(--light-background);
    }


    /* hero */
    .rs-hero .container {
        flex-direction: column;
    }
    .rs-hero-content {
        text-align: center;
        align-items: center;
    }
    .rs-hero-image {
        width: 80%;
        margin-left: 32px;
    }

    .rs-hero-cta-wrap {
        flex-direction: column;
        padding: 48px;
        gap: 16px;
    }

    .rs-newsletter-form {
        background: none;
        flex-direction: column;
        gap: 16px;
    }
    .rs-newsletter-form .rs-button {
        color: var(--accent);
        background: var(--white);
    }

    /* reasons */
    .rs-reasons {
        flex-direction: column;
    }

    /* bestsellers */
    .rs-bestsellers {
        flex-direction: column;
    }

    /* home blog */
    .rs-home-blog {
        grid-template-columns: minmax(0, 1fr);
    }
    .rs-home-blog .rs-article-item-featured {
        grid-column: 1;
    }
    .rs-article-item-featured .rs-article-image {
        aspect-ratio: 4/5;
    }

    /* testimonials */
    .rs-testimonials-nav {
        display: none;
    }

    /* cta-section */
    .rs-cta-section {
        padding-bottom: 80px;
        overflow-x: hidden;
        overflow-y: visible;
        margin-bottom: 0;
    }
    .rs-cta-box {
        display: flex;
        flex-direction: column-reverse;
        padding: 48px;
    }
    .rs-cta-image {
        position: static;
        height: auto;
        padding: 0;
        width: 150%;
        margin-left: -25%;
        margin-bottom: -128px;
    }
    .rs-cta-content {
        padding-left: 0;
        margin-bottom: 48px;
        text-align: center;
    }

}