.product-vendor {
    .product-vendor__container {
        display: flex;
        flex-direction: var(--mobile-layout);
        gap: var(--gap-mobile);
        padding-top: var(--padding-top);
        padding-bottom: var(--padding-bottom);

        @media screen and (min-width: 768px) {
            flex-direction: var(--desktop-layout);
            gap: var(--gap-desktop);
            justify-content: center;
            align-items: var(--align-items);
        }

        .product-vendor__image-container {
            width: 100%;
            position: relative;
            height: var(--image-height-mobile);

            @media screen and (min-width: 768px) {
                width: var(--image-width-desktop);
                height: var(--image-height-desktop);
            }

            .product-vendor__image-text {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: var(--image-text-width);
                color: var(--image-text-color);

                p,
                h2 {
                    margin: 0;
                    color: inherit
                }
            }

            .product-vendor__image {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }

        .product-vendor__text-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;

            @media screen and (min-width: 768px) {
                padding: 16px 32px;
                width: var(--text-width-desktop);
            }

            p,
            h2 {
                margin: 0;
            }

            .button {
                width: fit-content;

                @media screen and (min-width: 768px) {
                    align-self: center;
                }
            }
        }
    }
}