.ingredient-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
    gap: 32px;
    align-items: start;
}

.ingredient-detail-layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.ingredient-keyword {
    appearance: none;
    border: 0;
    border-bottom: 1px dashed #d42328;
    background: rgba(212, 35, 40, 0.08);
    color: #b51d22;
    font: inherit;
    font-weight: 700;
    line-height: inherit;
    padding: 0 2px;
    cursor: pointer;
    border-radius: 3px;
}

.ingredient-keyword:hover,
.ingredient-keyword:focus-visible,
.ingredient-keyword.is-active {
    background: #d42328;
    color: #fff;
    outline: none;
}

.ingredient-keyword:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 35, 40, 0.22);
}

.ingredient-explorer {
    position: sticky;
    top: 92px;
    border: 1px solid #ead8d8;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffafa 0%, #fff 100%);
    box-shadow: 0 12px 32px rgba(68, 18, 20, 0.08);
    padding: 22px;
    min-height: 280px;
}

.ingredient-explorer[hidden] {
    display: none;
}

.ingredient-explorer__eyebrow {
    color: #d42328;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.ingredient-explorer h3 {
    color: #1f1f1f;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
}

.ingredient-explorer__intro p,
.ingredient-explorer__content {
    color: #444;
    font-size: 15px;
    line-height: 1.65;
}

.ingredient-explorer__content.is-typing {
    white-space: pre-line;
}

.ingredient-explorer__content p {
    margin: 0 0 12px;
}

.ingredient-explorer__dose {
    background: #fff1f1;
    border-left: 3px solid #d42328;
    border-radius: 0 8px 8px 0;
    color: #681115;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
    padding: 10px 12px;
}

.ingredient-explorer__sources {
    border-top: 1px solid #eee;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 16px;
    padding-top: 12px;
}

.ingredient-explorer__sources ul {
    list-style: none !important;
    margin: 6px 0 0;
    padding: 0 !important;
}

.ingredient-explorer__sources a {
    color: #8f171b;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .ingredient-detail-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .ingredient-explorer {
        position: static;
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ingredient-keyword {
        transition: none;
    }
}
