.getters-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 448px;
    gap: 40px;
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    margin-top: 100px;
    box-sizing: border-box;
}

.getters-section__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
    color: #000;
    grid-column: 1 / 2;
}

.getters-section__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    grid-column: 1 / 2;
}

.getters-section__text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
    color: #000000;
}

.getters-section__img {
    width: 448px;
    height: 364px;
    border-radius: 30px;
    object-fit: cover;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

@media screen and (max-width: 1024px) {
    .getters-section {
        grid-template-columns: 100%;
    }

    .getters-section__img {
        width: min(100%, 876px);
        height: auto;
        aspect-ratio: 876 / 489;
        justify-self: center;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .getters-section__title {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .getters-section__content {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
}

@media screen and (max-width: 575px) {
    .getters-section {
        padding: 20px;
        margin-top: 60px;
        gap: 20px;
    }

    .getters-section__title {
        font-size: 26px;
    }

    .getters-section__content {
        gap: 0;
    }
}
