
:root {
    /*colors-clr */
    --clr-background: #eadfd4;
    --clr-card: white;
    --clr-prep: #fff5f9;
    --clr-sections: #8b4b2a;
    --clr-ingr-bullets: #8b4b2a;
    --clr-hr: #e6dcd8;
    --clr-text: #4f4039;
    --clr-prep-head: #8b2645;


    /* font-family-ff */
    --ff-outfit: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --ff-serif: "Young Serif", serif;

    /* spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;

    /* font-sizes-fs */
    --fs-prep: 1.3rem;
    --fs-header-max: 2.5rem;
    --fs-header-min: 1.5rem;
    --fs-section: 1.7rem;
    --fs-strongtag: 1.06rem;
    --fs-card: 1rem;


}


*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 1rem;
    box-sizing: border-box;
}

body {
    display: flex;
    font-family: var(--ff-outfit);
    background: var(--clr-background);
    color: var(--clr-text);
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
    min-height: 100vh;
}

.card {
    background-color: var(--clr-card);
    width: 100%;
    max-width: 46rem;
    padding: 1.9rem;
    font-size: var(--fs-card);
    line-height: 1.6;
    font-weight: 400;
    border-radius: 1rem;
    margin: 2.5rem auto;
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.08);
}

.prep {
    background-color: var(--clr-prep);
    padding: 1rem 0 0.5rem 1.8rem;
    border-radius: 0.5rem;
    margin-block-end: 1rem;
}

p {
    margin-block-end: 1rem;
}

.img {
    width: 100%;
    object-fit: cover;
    height: auto;
    border-radius: 0.75rem;
}

.prep_head {
    font-size: 1.3rem;
    font-family: var(--ff-outfit);
    font-weight: 600;
    color: var(--clr-prep-head);
}

.head_title {
    color:#201913;
    font-family: var(--ff-serif);
    font-size: clamp(var(--fs-header-min), 1.2rem + 3vw, var(--fs-header-max) );
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0 0.625rem 0;
}

.section {
    font-size: var(--fs-section);
    font-family: "Young Serif", serif;
    font-weight: 500;
    color: var(--clr-sections);
}

.prep_li {
    font-size: 0.875rem;
}

strong {
    font-size: var(--fs-strongtag);
}

ul {
    padding: var(--space-sm);
    padding-inline-start: 1.375rem;
}

ol {
    padding: 1rem;
    padding-inline-start: 1.3rem; 
    gap: 0.625rem;
}

ul li::marker {
    color: var(--clr-prep-head);
}

ol li::marker {
    color: var(--clr-ingr-bullets);
    font-weight: 700;
}

li {
    padding-left: 1rem;
}

.caption {
    margin-block-start: 0.9rem;
}

hr {
    height: 0.0625rem;
    background-color: var(--clr-hr);
    margin: 1.5rem 0;
}

.nutri_table {
    width: 100%;
    border-collapse: collapse;
}

tr {
    border-bottom: 0.0625rem solid #e6dcd8;
}

tr:last-child {
    border-bottom: none;
}

th {
    padding: 0.625rem 1.5625rem;
    font-weight: 400;
    text-align: left;
}

td {
    font-weight: 900;
    color: var(--clr-sections);
}

@media (min-width: 30em) { 
  .card{ padding:2rem; }
}

@media (min-width: 48em) { 
  .card{ padding:2.5rem; }
}







