.paragraph--type--block-background-image {
    .imagen-fondo {
        position: relative;
        overflow: hidden;
        width: 100%;

        .field--name-field-media {
            margin: 0;
            position: absolute;
            width: 100%;
            height: 100%;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                margin: 0;
            }
        }

        .container__text-information {
            z-index: 2;
            position: relative;
            padding-top: 4.5rem;
            padding-bottom: 4.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;

            .field--name-field-label {
                width: 50%;
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--artemis-almost-white);
                line-height: 1.625rem;
            }

            .field--name-field-title {
                width: 50%;
                font-size: 2.5rem;
                font-weight: 500;
                color: var(--artemis-white);
                line-height: 2.75rem;
                h1,
                h2,
                h3,
                h4,
                h5,
                h6 {
                    font-size: 2.5rem;
                    font-weight: 500;
                    color: var(--artemis-white);
                    line-height: 2.75rem;
                }
            }

            .field--name-field-text {
                width: 50%;

                p {
                    color: var(--artemis-almost-white);
                    font-size: 1.125rem;
                    line-height: 1.6875rem;
                    margin: 0;
                    text-align: justify;
                }
            }

            .field--name-field-enlace {
                margin-top: 8px;
                
                a {
                    display: block;
                    width: fit-content;
                    background: var(--artemis-white);
                    padding: .75rem 1.25rem;
                    border-radius: 6.25rem;
                    text-decoration: none;
                }
            }
        }
    }
}

@media (max-width: 992px) {
    .paragraph--type--block-background-image {
        .imagen-fondo {
            .container__text-information {
                padding-top: 12.5rem;
                padding-bottom: 2rem;

                .field--name-field-label {
                    width: 100%;
                    font-size: 1.25rem;
                    line-height: 1.375rem;
                }

                .field--name-field-title {
                    width: 100%;
                    font-size: 2rem;
                    line-height: 2.1875rem;
                    h1,
                    h2,
                    h3,
                    h4,
                    h5,
                    h6 {
                        width: 100%;
                        font-size: 2rem;
                        line-height: 2.1875rem;
                    }
                }

                .field--name-field-text {
                    width: 100%;

                    p {
                        font-size: 1rem;
                        line-height: 1.5rem;
                    }
                }

                .field--name-field-enlace a {
                    width: 100%;
                    display: block;
                    text-align: center;
                }
            }
        }
    }
}