.instagram {
    display: none;
}

.single-recetas {
    padding-bottom: 77px;
    padding-top: 37px;

    @media (max-width: 768px) {
        padding-top: 25px;
    }

    .row-primary {
        display: flex;
        justify-content: space-between;

        @media (max-width: 768px) {
            flex-direction: column-reverse;
        }

        .col-reduced {
            max-width: 550px;
            padding-top: 60px;

            @media (max-width: 768px) {
                padding-top: 24px;
            }
        }

        .col-image {
            @media (max-width: 768px) {
                padding: 0;
            }
        }

        .title {
            color: #000;
            font-family: Cormorant;
            font-size: 60px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 24px;

            * {
                color: #000;
                font-family: Cormorant;
                font-size: 60px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                margin: 0;
            }
        }

        .resumen {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;

            div {
                color: #272727;
                font-family: Cormorant;
                font-size: 18px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
            }

        }

        mark {
            color: #404040;
            font-family: Cormorant;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 28.8px;
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: auto;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
            background: transparent;
            margin-top: 10px;
            padding: 0;
        }

        .text {
            color: #404040;
            font-family: Cormorant;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 28.8px;

            /* 160% */
            * {
                color: #404040;
                font-family: Cormorant;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 28.8px;
                /* 160% */
            }
        }

        .image {
            max-width: 50vw;
            height: auto;
            min-width: 50vw;
            display: flex;
            justify-content: flex-end;
            position: relative;

            @media (max-width: 768px) {
                max-width: 100vw;
            }

            .image-wrapper {
                width: 100%;
                position: relative;
            }

            img {
                width: 100%;
                max-height: 768px;
                object-fit: cover;
            }

            .svg-container {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border-radius: 100%;
                cursor: pointer;
                z-index: 1;
            }

            .bg-dark {
                background: rgba(0, 0, 0, 0.3);
                position: absolute;
                z-index: 0;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
        }
    }

    .ingredientes {
        color: #404040;
        font-family: Cormorant;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 28.8px;
        margin-bottom: 24px;

        * {
            color: #404040;
            font-family: Cormorant;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 28.8px;
        }
    }

    .preparacion {
        color: #404040;
        font-family: Cormorant;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 28.8px;
        margin-bottom: 24px;

        * {
            color: #404040;
            font-family: Cormorant;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 28.8px;
            /* 144% */
        }
    }
}

/* Estilos del popup */
.popup {
    display: none;
    /* Ocultamos el popup por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo semitransparente */
    justify-content: center;
    align-items: center;
    z-index: 999999;
    margin-top: 35px;

    /* Aseguramos que esté por encima de otros elementos */
    video {
        width: 100%;
        height: 100%;
        max-height: 600px;
    }
}

/* Contenido del popup */
.popup-content {
    border-radius: 5px;
    width: 80%;
    text-align: center;
    max-height: 700px;
}

/* Botón de cerrar */
.popup-close {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    top: 85px;
    right: 56px;
    cursor: pointer;
}