/* ============================================================================
   The Savory Skillet — Legal & Text Pages Stylesheet
   ============================================================================ */

.recipe-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

/* Breadcrumbs (Consistent with main/recipe layout) */
.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-primary);
}

.breadcrumbs li.active {
    color: var(--text-primary);
    font-weight: 700;
}

/* Page Titles */
.recipe-main-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 10px;
    font-family: var(--font-accent);
    color: var(--text-primary);
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

/* Legal text styling */
.legal-text-body {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.legal-text-body p {
    margin-bottom: 20px;
}

.legal-text-body h2 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-primary);
    padding-left: 12px;
}

.legal-text-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-text-body li {
    margin-bottom: 10px;
}

.legal-text-body code {
    background-color: var(--background-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: var(--accent-primary);
}
