/* ===== RECIPE PAGE — BEST-IN-CLASS COOKING EXPERIENCE ===== */

/* ── Layout ── */
.recipe-print-header {
    display: none;
}

.recipe-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}

.recipe-main {
    width: 100%;
}

/* ── Header ── */
.recipe-header {
    margin-bottom: 1.5rem;
}

.recipe-header-content {
    margin-bottom: 1.5rem;
}

.recipe-category-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.recipe-category-badge a {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
}

.recipe-category-badge a:hover {
    background: var(--primary-dark);
}

.recipe-difficulty {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1.5px solid;
    line-height: 1.2;
}

.recipe-difficulty-easy {
    color: #16a34a;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.recipe-difficulty-medium {
    color: #d97706;
    border-color: #fde68a;
    background: #fffbeb;
}

.recipe-difficulty-hard {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}

.recipe-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.recipe-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1rem;
    max-width: 640px;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #777;
}

.recipe-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.recipe-meta-item i {
    font-size: 0.75rem;
    color: var(--primary-color);
}

.recipe-meta-updated {
    font-style: italic;
}

/* ── Jump to Recipe button ── */
.recipe-jump-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 1rem;
    background: #f0fdf4;
    color: var(--primary-color);
    border: 1.5px solid #86efac;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition-fast);
}

.recipe-jump-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.recipe-jump-btn i {
    font-size: 0.78rem;
}

/* ── Hero Image ── */
.recipe-hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 0;
}

.recipe-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Action Bar ── */
.recipe-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.recipe-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 100px;
    background: #fff;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
}

.recipe-action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f0fdf4;
}

.recipe-action-btn i {
    font-size: 0.9rem;
}

/* ── At-a-Glance Info Bar ── */
.recipe-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 0;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.recipe-info-item {
    flex: 1 1 0;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-right: 1px solid #e5e7eb;
}

.recipe-info-item:last-child {
    border-right: none;
}

.recipe-info-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.recipe-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    margin-bottom: 0.15rem;
}

.recipe-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Body Grid (Ingredients + Instructions side-by-side on desktop) ── */
.recipe-body-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .recipe-body-grid {
        grid-template-columns: 300px 1fr;
        gap: 2.5rem;
    }
}

/* ── Ingredients ── */
.recipe-ingredients {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
    .recipe-ingredients {
        position: sticky;
        top: 5rem;
        align-self: start;
    }
}

.recipe-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.recipe-section-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-section-header h2 i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.recipe-clear-checks {
    background: none;
    border: none;
    color: #999;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    font-family: inherit;
}

.recipe-clear-checks:hover {
    color: var(--primary-color);
    background: #e8f5e9;
}

.recipe-ingredient-group {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.recipe-ingredient-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recipe-ingredient-item {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition-fast);
}

.recipe-ingredient-item:last-child {
    border-bottom: none;
}

.recipe-ingredient-item label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.recipe-ingredient-item.checked label span {
    text-decoration: line-through;
    color: #aaa;
}

.recipe-check {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* ── Instructions ── */
.recipe-instructions h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-instructions h2 i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.recipe-step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}

.recipe-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.recipe-step:hover {
    background: #f9fafb;
}

.recipe-step:last-child {
    border-bottom: none;
}

.recipe-step--done {
    opacity: 0.55;
}

.recipe-step--done .recipe-step-number {
    background: #9ca3af;
}

.recipe-step--done .recipe-step-text {
    color: #9ca3af;
    text-decoration: line-through;
    text-decoration-color: #9ca3af;
}

/* ── Step progress bar ── */
.recipe-step-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    padding: 0.6rem 0.75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.recipe-step-progress-bar {
    flex: 1;
    height: 5px;
    background: #e5e7eb;
    border-radius: 100px;
    overflow: hidden;
}

.recipe-step-progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 100px;
    transition: width 0.3s ease;
    width: 0%;
}

.recipe-step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
}

.recipe-step-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
    padding-top: 0.2rem;
}

/* ── Recipe Notes ── */
.recipe-notes {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.recipe-notes h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-notes h2 i {
    color: #d97706;
}

.recipe-notes-list {
    margin: 0;
    padding: 0 0 0 1.25rem;
}

.recipe-notes-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #78350f;
    margin-bottom: 0.35rem;
}

.recipe-notes-list li:last-child {
    margin-bottom: 0;
}

/* ── Nutrition Facts ── */
.recipe-nutrition {
    background: #f8faf9;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius, 12px);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.recipe-nutrition h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-nutrition h2 i {
    color: var(--primary-color, #198754);
}

.recipe-nutrition-note {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6b7280;
}

.recipe-nutrition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.recipe-nutrition-item {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    border: 1px solid #e5e7eb;
}

.recipe-nutrition-item--calories {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #e3f8ed 100%);
    border-color: #a7f3d0;
}

.recipe-nutrition-item--calories .recipe-nutrition-value {
    font-size: 2.75rem;
    line-height: 1;
    color: var(--primary-color, #198754);
    font-weight: 800;
}

.recipe-nutrition-item--calories .recipe-nutrition-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #166534;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

.recipe-nutrition-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
}

.recipe-nutrition-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0.15rem;
}

/* ── Narrative Content (About This Recipe) ── */
.recipe-narrative {
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.recipe-narrative h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-narrative h2 i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.recipe-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.recipe-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.75rem 0 0.75rem;
}

.recipe-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem;
}

.recipe-content p {
    margin: 0 0 1rem;
}

.recipe-content ul, .recipe-content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.recipe-content li {
    margin-bottom: 0.35rem;
}

.recipe-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.recipe-content a:hover {
    color: var(--primary-dark);
}

/* ── Tags ── */
.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.recipe-tags-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #777;
}

.recipe-tag-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    color: #555;
    font-size: 0.8rem;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.recipe-tag-pill:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ── Related Recipes ── */
.recipe-related {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.recipe-related h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
}

.recipe-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .recipe-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.recipe-related-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.recipe-related-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-2px);
}

.recipe-related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.recipe-related-card-body {
    padding: 0.75rem 1rem;
}

.recipe-related-card-type {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-color);
}

.recipe-related-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0.25rem 0;
    line-height: 1.3;
}

.recipe-related-card p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
    line-height: 1.45;
}

/* ── Print Styles ── */
@media print {
    /* Page setup */
    @page {
        margin: 0.6in 0.75in;
        size: auto;
    }

    /* Print header with source URL */
    .recipe-print-header {
        display: flex !important;
        justify-content: space-between;
        align-items: baseline;
        border-bottom: 2px solid #333;
        padding-bottom: 0.35rem;
        margin-bottom: 1rem;
        font-size: 0.75rem;
        color: #555;
    }

    .recipe-print-header strong {
        font-size: 0.8rem;
        color: #111;
    }

    /* Layout reset */
    .recipe-page {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .recipe-main {
        width: 100%;
    }

    /* Hide non-essential elements */
    .recipe-actions,
    .recipe-tags,
    .recipe-related,
    .blog-cta-section,
    .blog-header,
    .blog-footer,
    .breadcrumb-nav,
    .recipe-category-badge,
    .recipe-clear-checks,
    .recipe-narrative,
    .faq-section,
    .blog-collective-callout {
        display: none !important;
    }

    /* Title */
    .recipe-header {
        margin-bottom: 0.75rem;
    }

    .recipe-header h1 {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .recipe-lead {
        font-size: 0.85rem;
        color: #444;
        margin: 0.25rem 0 0.5rem;
        line-height: 1.4;
    }

    .recipe-meta {
        font-size: 0.75rem;
        color: #666;
        margin-bottom: 0.5rem;
    }

    .recipe-meta i {
        display: none;
    }

    /* Hero image — keep small or hide if none */
    .recipe-hero-image {
        max-height: 240px;
        overflow: hidden;
        margin-bottom: 0.75rem;
        border-radius: 0;
    }

    .recipe-hero-image img {
        width: 100%;
        height: auto;
        max-height: 240px;
        object-fit: cover;
    }

    /* Info bar — horizontal strip, compact */
    .recipe-info-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        border: 1px solid #999;
        border-radius: 0;
        margin-bottom: 1rem;
        background: none;
    }

    .recipe-info-item {
        flex: 1;
        text-align: center;
        padding: 0.35rem 0.5rem;
        border-right: 1px solid #ccc;
        font-size: 0.8rem;
    }

    .recipe-info-item:last-child {
        border-right: none;
    }

    .recipe-info-item i {
        display: none;
    }

    .recipe-info-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #666;
        display: block;
    }

    .recipe-info-value {
        font-weight: 600;
        font-size: 0.85rem;
        display: block;
    }

    /* Body grid — side by side for print */
    .recipe-body-grid {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 1.25rem;
        align-items: start;
    }

    /* Ingredients */
    .recipe-ingredients {
        position: static;
        top: auto;
        border: 1px solid #999;
        border-radius: 0;
        padding: 0.75rem;
        page-break-inside: avoid;
        background: none;
    }

    .recipe-section-header h2,
    .recipe-instructions h2 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .recipe-section-header h2 i,
    .recipe-instructions h2 i {
        display: none;
    }

    .recipe-ingredient-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .recipe-ingredient-item {
        padding: 0.2rem 0;
        font-size: 0.8rem;
        line-height: 1.35;
        border-bottom: none;
    }

    .recipe-ingredient-item label {
        display: flex;
        align-items: baseline;
        gap: 0.35rem;
    }

    .recipe-check {
        width: 10px;
        height: 10px;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        flex-shrink: 0;
    }

    .recipe-ingredient-group {
        font-size: 0.8rem;
        font-weight: 600;
        margin: 0.5rem 0 0.15rem;
    }

    /* Instructions */
    .recipe-instructions {
        page-break-inside: avoid;
    }

    .recipe-step-list {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .recipe-step {
        display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        padding: 0.35rem 0;
        font-size: 0.8rem;
        line-height: 1.45;
        page-break-inside: avoid;
        border-bottom: none;
    }

    .recipe-step-number {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 0.7rem;
        line-height: 22px;
        text-align: center;
        font-weight: 700;
        border: 1.5px solid #333;
        border-radius: 50%;
        background: none;
        color: #333;
        flex-shrink: 0;
    }

    /* Notes */
    .recipe-notes {
        page-break-inside: avoid;
        border: 1px solid #999;
        border-radius: 0;
        padding: 0.6rem 0.75rem;
        margin-top: 1rem;
        background: none;
    }

    .recipe-notes h2 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .recipe-notes h2 i {
        display: none;
    }

    .recipe-notes-list {
        margin: 0;
        padding-left: 1.25rem;
    }

    .recipe-notes-list li {
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 0.15rem 0;
    }

    /* Nutrition */
    .recipe-nutrition {
        page-break-inside: avoid;
        border: 1px solid #999;
        border-radius: 0;
        padding: 0.6rem 0.75rem;
        margin-top: 0.75rem;
        background: none;
    }

    .recipe-nutrition h2 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .recipe-nutrition h2 i {
        display: none;
    }

    .recipe-nutrition-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .recipe-nutrition-item {
        flex: 0 0 auto;
        text-align: center;
        padding: 0.25rem 0.6rem;
        border: 1px solid #ccc;
        border-radius: 0;
        background: none;
        box-shadow: none;
    }

    .recipe-nutrition-item--calories {
        grid-column: auto;
        flex-direction: column;
        background: none;
        border-color: #ccc;
        padding: 0.25rem 0.6rem;
    }

    .recipe-nutrition-item--calories .recipe-nutrition-value {
        font-size: 0.8rem;
        color: #000;
    }

    .recipe-nutrition-item--calories .recipe-nutrition-label {
        font-size: 0.6rem;
        color: #666;
    }

    .recipe-nutrition-value {
        font-size: 0.8rem;
        font-weight: 600;
        display: block;
    }

    .recipe-nutrition-label {
        font-size: 0.6rem;
        text-transform: uppercase;
        color: #666;
    }

    /* General print cleanup */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a[href] {
        color: inherit;
        text-decoration: none;
    }
}

/* ── Mobile Responsive ── */
@media (max-width: 767px) {
    .recipe-info-bar {
        flex-wrap: wrap;
    }

    .recipe-info-item {
        flex: 1 1 calc(33.333% - 1px);
        border-right: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
    }

    .recipe-info-item:nth-child(3n) {
        border-right: none;
    }

    .recipe-info-item:nth-last-child(-n+3):nth-child(3n+1),
    .recipe-info-item:nth-last-child(-n+3):nth-child(3n+1) ~ .recipe-info-item {
        border-bottom: none;
    }

    .recipe-actions {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .recipe-action-btn span {
        display: none;
    }

    .recipe-action-btn {
        padding: 0.5rem 0.75rem;
    }

    .recipe-action-btn i {
        font-size: 1rem;
    }
}
