.single-receita {
    position: relative;
    padding: 4.06rem 0 5.33rem;
    background: linear-gradient(var(--grey), var(--grey)) no-repeat top center;
    background-size: 100% 528px;
}

.single-receita .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/.18958;
    background: url(../../assets/img/srecbg1.svg) no-repeat top left, url(../../assets/img/srecbg2.svg) no-repeat top right;
    background-color: var(--main);
}

.single-receita .bg::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -53px;
    width: 100%;
    height: 96px;
    background: url(../../assets/img/srecfx.svg) no-repeat center;
}

.single-receita .bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 10%;
    background-size: cover !important;
}

.single-receita .container {
    position: relative;
}

.single-receita .title,
.single-receita .backbtn {
    display: flex;
    align-items: center;
}

.single-receita .backbtn {
    justify-content: center;
    width: 45px;
    aspect-ratio: 1/1;
    border: none;
    border-radius: 50%;
    background-color: #ffffff59;
}

.single-receita .title {
    max-width: 980px;
    gap: 16px;
    color: var(--white);
    font-size: 32px;
    font-variation-settings: "wght" 800;
    line-height: 44px;
    letter-spacing: -0.96px;
    margin: 0 auto 2.53rem;
}

.single-receita .img {
    width: 100%;
    max-width: 980px;
    aspect-ratio: 1/.526530612244898;
    border: 7px solid var(--white);
    border-radius: 15px;
    background-color: #838383;
    margin: 0 auto 2.13rem;
}

.single-receita .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.single-receita .text {
    max-width: 778px;
    margin: 0 auto;
    color: var(--text);
    font-size: 18px;
    font-variation-settings: "wght" 400;
    line-height: 26px;
}

.single-receita .text h1,
.single-receita .text h2,
.single-receita .text h3,
.single-receita .text h4,
.single-receita .text h5,
.single-receita .text h6 {
    color: var(--dtext);
    font-size: 28px;
    font-variation-settings: "wght" 800;
    font-weight: 800;
    line-height: 28px;
    margin: 0 0 20px;
}

.single-receita .text p {
    margin-bottom: 1rem;
}

.single-receita .text .gallery {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin: 2rem 0 45px;
}

.single-receita .text .gallery * {
    display: block;
    width: fit-content;
    max-width: unset;
}

.single-receita .text .gallery img {
    min-width: 184px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5px;
}


/* MEDIA QUERIES */

@media(max-width:992px) {
    .single-receita {
        padding: 2rem 0;
    }
    .single-receita .bg {
        min-height: 364px;
        aspect-ratio: unset;
    }
}

@media(max-width:768px) {
    .single-receita .text .gallery {
        justify-content: center;
    }
    .single-receita .title {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:425px) {
    .single-receita .text .gallery img {
        min-width: unset;
        max-width: 130px;
    }
}


/* MEDIA QUERIES ! */