.cover__wrapper--alt {
    background-color: var(--gray_3);
}
.cover__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cover__buttons button,
.cover__buttons a {
    max-width: 100%;
    text-align: center;
}
.cover__wrapper {
    overflow: hidden;
}
.cover__content {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 90px;
    align-items: center;
}
.cover__content h1 {
    margin: 0 0 16px;
    color: var(--text_pr);
}
.cover__text > .text {
    margin: 0 0 40px;
    color: var(--text_sec);
}
.cover__image {
    max-width: 480px;
}
.cover__image img {
    width: 100%; 
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 1024px) {
    .cover__wrapper--ver1 .cover__content {
        display: flex;
        flex-direction: column-reverse;
    }
    .cover__wrapper--ver2 .cover__content {
        display: flex;
        flex-direction: column;
    }
    .cover__wrapper--ver3 .cover__content {
        display: flex;
        flex-direction: column;
    }
    .cover__wrapper--ver3 .cover__content .cover__image {
        display: none;
    }
    .cover__content img {
        width: 100%;
    }
    .cover__content .cover__image {
        display: flex;
        justify-content: center;
    }
}
@media screen and (max-width: 756px) {
    .cover__text p {
        margin: 0 0 32px;
    }
}
@media screen and (max-width: 440px) {
    .cover__buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}