/* ===== Recipe cards =====
   Each recipe card shows a full crafting UI screenshot stored in
   /splinecartunlocked/assets/recipes/. To update a screenshot, just
   replace the PNG in that folder - no HTML changes needed. */

.recipe-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.recipe-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: -0.01em;
}

.recipe-card-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 18px;
}

.recipe-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}

.recipe-shot {
    max-width: 100%;
    width: min(720px, 100%);
    height: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-raised);
    display: block;
}

.recipe-notes {
    margin-top: 14px;
}

.recipe-notes p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.recipe-ing-list {
    margin: 10px 0 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}

.recipe-ing-list code {
    font-family: var(--font-mono);
    font-size: 12px;
    background: var(--bg-raised);
    padding: 1px 5px;
    border-radius: 3px;
    color: var(--text-primary);
    white-space: nowrap;
}

@media (max-width: 680px) {
    .recipe-layout {
        flex-direction: column;
        align-items: flex-start;
    }
}