﻿.fs-recipes-details-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-inline: auto;
    border: 3px solid var(--fs-deep-purple);
    margin-top: max(65px,8.5%);
    padding: clamp(15px,3vw,60px);
	    padding-bottom: 100px;

}

.fs-recipes-details-title{
    max-width:80%;
    font-weight:unset;
    color:var(--fs-dark-brown);
    text-align:center;
}

    .fs-recipes-details-title h1:first-child {
        font-family: roboto-bold;
        font-size: clamp(30px, 3vw, 60px);
        margin: 0;
    }

    .fs-recipes-details-title h1:last-child {
        font-family: roboto-light;
        font-size: clamp(25px, 2.5vw, 50px);
        margin: 0;
    }

.fs-recipes-details-container .fs-details-options{
    gap:15px;
}

.fs-recipes-details-container .fs-share-option img{
    width:100%;
}

.fs-recipes-details-img {
    width: 100%;
    margin-block: clamp(15px,2vw,40px);
}

.fs-recipes-specs{
    color:var(--fs-dark-brown);
    font-family:roboto-bold;
    font-size:clamp(16px,1.5vw,25px);
}

.fs-recipes-specs span{
    padding-inline:clamp(10px,1vw,20px);
    text-align:center;
    width:100%;
}

.fs-recipes-details-description {
    width: 100%;
    font-size: clamp(20px,2.5vw,40px);
    font-family: roboto-light;
    font-weight:bold;
    line-height:1.3;
    color: var(--fs-dark-purple);
    box-sizing: border-box;
    padding: clamp(20px,2.5vw,40px);
    text-align:center;
}

.fs-recipes-specs span:not(:last-child) {
    border-right: 1px solid var(--fs-dark-brown);
}

    .fs-recipe-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
    }

.fs-recipe-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.fs-recipe-wrapper {
    width: 70%;
    min-width: 260px;
    max-width: 1000px;
    color: var(--fs-dark-purple);
}

.fs-recipe-title {
    font-family: roboto-bold;
    text-decoration: underline;
    font-size: clamp(25px,2.5vw,45px);
}

.fs-recipe-description {
    font-family: roboto-light;
    font-size: clamp(18px,2.5vw,45px);
    font-weight: bold;
}

.recipe-cover-photo {
    max-height: 700px;
}


@media screen and (max-width:768px) {
    .fs-recipes-specs span:not(:last-child) {
        border-right: none;
    }

    .fs-recipes-specs span{
       text-align:start;
       margin-block:5px;
    }
}