/* @group Download Apps
------------------------------------ */

.download-apps h2 {
    font-size: 2.5rem;
}
.download-apps ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    gap: 6rem;
}
.download-apps ul li {
    font-weight: var(--font-weight-medium);
    font-size: 2.2rem;
    line-height: 1.35em;
    letter-spacing: .03em;
    color: var(--greenery);
    position: relative;
}
.download-apps ul li:not(:last-of-type)::before {
    content: '•';
    color: var(--white);
    position: absolute;
    pointer-events: none;
}
.download-apps .wp-block-image {
    margin-inline: 1rem;
}
.download-apps .wp-block-image img {
    height: 9rem;
    width: auto;
}

@media only screen
and (min-width : 961px) {
    .download-apps h2 {
        font-size: 3.8rem;
    }
    .download-apps ul {
        gap: 15rem;
    }
    .download-apps ul li {
        font-size: 3rem;
        line-height: 1.2em;
    }
    .download-apps ul li:not(:last-of-type)::before {
        right: -7.5rem;
        top: 50%;
        transform: translate(0, -50%);
    }
    
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .download-apps .logos-wrapper {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .download-apps .wp-block-image img {
        height: 7rem;
    }
    .download-apps ul {
        flex-direction: column;
    }
    .download-apps ul li:not(:last-of-type)::before {
        bottom: -4.5rem;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

/* @end */
