.recipe-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white, white);
    border-radius: var(--radius-md, 12px);
    padding: clamp(25px, 5vw, 40px);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0, 0, 0, 0.1));
}

.recipe-intro {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gray-dark, #333);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent, #FDB515);
    line-height: 1.6;
}

.recipe-section {
    margin-bottom: 40px;
}

.recipe-section h2 {
    color: var(--primary, #0062B8);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent, #FDB515);
}

.recipe-section h3 {
    color: var(--primary-dark, #003057);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-top: 25px;
    margin-bottom: 15px;
}

.recipe-section ul,
.recipe-section ol {
    margin-left: 20px;
    line-height: 1.8;
}

.recipe-section li {
    margin-bottom: 10px;
    color: var(--gray-dark, #333);
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.recipe-section li strong {
    color: var(--primary, #0062B8);
}

.time-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid var(--accent, #FDB515);
}

.time-block {
    text-align: center;
    padding: clamp(15px, 3vw, 20px);
    background-color: var(--gray-light, #f8f9fa);
    border-radius: var(--radius-sm, 8px);
    border: 2px solid var(--primary, #0062B8);
}

.time-block h3 {
    color: var(--primary, #0062B8);
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.time-block p {
    color: var(--primary-dark, #003057);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

/* ========================================
   Responsive: Tablet Portrait (768px)
   ======================================== */
@media (max-width: 768px) {
    .recipe-content {
        padding: 25px;
    }

    .recipe-section {
        margin-bottom: 30px;
    }

    .recipe-section ul,
    .recipe-section ol {
        margin-left: 15px;
    }

    .time-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ========================================
   Responsive: Mobile (480px)
   ======================================== */
@media (max-width: 480px) {
    .recipe-content {
        padding: 20px 15px;
    }

    .recipe-intro {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .recipe-section {
        margin-bottom: 25px;
    }

    .recipe-section h2 {
        margin-bottom: 15px;
    }

    .recipe-section h3 {
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .recipe-section ul,
    .recipe-section ol {
        margin-left: 12px;
    }

    .recipe-section li {
        margin-bottom: 8px;
    }

    .time-info {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
        padding-top: 20px;
    }

    .time-block {
        padding: 15px;
    }

    .time-block h3 {
        font-size: 1rem;
    }

    .time-block p {
        font-size: 1.1rem;
    }
}
