﻿.fs-diet-plans-details-container {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-inline: auto;
    border: 3px solid var(--fs-red);
    margin-top: max(65px,8.5%);
    padding: clamp(15px,2vw,40px);
    padding-bottom: 100px;
}

.fs-diet-plans-details-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(20px,3vw,60px);
}

.fs-diet-plans-details-title {
    width: 100%;
}

    .fs-diet-plans-details-title h1 {
        margin: unset;
        margin-inline: auto;
        max-width: 95%;
        text-align: center;
        color: var(--fs-red);
        font-size: clamp(25px, 4vw, 70px);
        font-weight: unset;
    }

        .fs-diet-plans-details-title h1:nth-child(1) {
            font-family: roboto-bold;
            font-weight: bolder;
        }

        .fs-diet-plans-details-title h1:nth-child(2) {
            font-family: roboto-thin;
        }

        .fs-diet-plans-details-title h1:nth-child(3) {
            font-family: roboto-light;
            font-weight: bold;
        }

.fs-diet-plans-details-description {
    width: max(260px,80%);
    font-family: roboto-light;
    font-weight: bold;
    font-size: clamp(18px, 2.5vw, 30px);
    color: var(--fs-dark-purple);
    text-align: center;
    box-sizing: border-box;
}

.fs-diet-plans-details-meals {
    width: max(220px,90%);
    font-family: roboto-light;
    font-weight: bold;
    font-size: clamp(20px, 2.5vw, 30px);
    border: clamp(2px, .3vw, 4px) solid var(--fs-red);
    color: var(--fs-dark-purple);
    text-align: start;
    line-height: 1.5;
    padding: clamp(15px, 1vw, 20px);
    box-sizing: border-box;
}

.fs-diet-plan-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 2%;
}

.fs-diet-plan-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 15px;
}

.fs-diet-plan-day {
    width: fit-content;
    padding: 15px;
    color: var(--fs-white);
    background-color: var(--fs-red);
    font-family: roboto-bold;
    font-size: clamp(20px, 3vw, 60px);
    margin: unset;
}

.fs-diet-plan-image {
    max-height: 500px;
    min-height: 100px;
    height: 100vw;
    width: clamp(565px, 40vw, 650px);
    border: 1px solid var(--fs-gray);
    margin-top: 30px;
}

.fs-diet-plan-meal-wrapper {
    width: 70%;
    min-width: 260px;
    max-width: 1000px;
    color: var(--fs-dark-purple);
}

.fs-diet-plan-meal-title {
    font-family: roboto-bold;
    text-decoration: underline;
    font-size: clamp(25px,2.5vw,45px);
}

.fs-diet-plan-meal-description, .fs-diet-plan-meal-macros {
    font-family: roboto-light;
    font-size: clamp(18px,2.5vw,45px);
    font-weight: bold;
}

.fs-diet-plan-meal-macros {
    font-weight: unset;
}

    .fs-diet-plan-meal-macros span {
        font-family: roboto-bold;
        font-weight: unset;
    }

.fs-diet-plan-meal-wrapper ul {
    list-style-position: inside;
}

.fs-diet-plan-meal-wrapper ol {
    padding-inline-start: unset;
    list-style-position: inside;
}

@media screen and (max-width:768px) {
    .fs-diet-plans-details-container {
        width: 90%;
    }

    .fs-diet-plan-image {
        width: 100%;
        max-height: fit-content;
    }

    .image-cover {
        object-fit: contain;
    }
}
