.macbookAir {
    position: relative;

    display: grid;
    grid-template-columns: 2fr 1fr;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    place-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-inline-end: 1.5rem;
}

.macbookAir img {
    max-width: 100%;
    height: auto;
}

.macbookAir .dropsLogo {
    transform: scale(0.5);
    position: absolute;
    right: .5rem;
    top: .5rem;
    transform-origin: top right;
}

.macbookAir__claim {
    background: linear-gradient(to bottom in lch, #daecf6, #f9f9f9);
    padding: 2rem;
    display: flex;
    gap: clamp(1.5rem, 5vw, 6.25rem);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.macbookAir__title {
    font-size: 3.25rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;

    background: linear-gradient(to right in lch, #022640,#5685aa);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.macbookAir__btn {
    display: block;
    background-color: #000;
    color: #fff;
    padding: .625rem 1.875rem;
    font-weight: 500;
    border-radius: 0 2rem 2rem 2rem;
    width: fit-content;
    margin: 0 auto .5rem;
    line-height: 1;
}

.macbookAir__text {
    font-size: 1.5rem;
    text-align: center;
}

.macbookAir__price {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.macbookAir__price span {
    font-size: 3.5rem;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .macbookAir__price {
        font-size: 1.5rem;
    }

    .macbookAir__price span {
        font-size: 2.5rem;
    }

    .macbookAir__claim {
        gap: 1.5rem;
        flex-direction: column;
    }

    .macbookAir__btn {
        font-size: 1.125rem;
    }

    .macbookAir__text {
        font-size: 1.25rem;
    }

    .macbookAir__title {
        font-size: 2.75rem;
    }
}

@media (max-width: 800px) {
    .macbookAir {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-inline-end: 0;
        margin-block-end: 2rem;
    }

    .macbookAir__images {
        padding: 1.5rem;
    }

    .macbookAir .dropsLogo {
        transform: scale(0.35);
    }
}

@media (max-width: 520px) {
    .macbookAir__price {
        font-size: 1.125rem;
    }

    .macbookAir__price span {
        font-size: 2rem;
    }
}