.recipes-mould-hub {
    padding: 12px 0 28px;
}

.recipes-mould-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.recipes-mould-card {
    display: grid;
    gap: 8px;
    min-height: 148px;
    padding: 23px;
    border: 1px solid var(--recipe-line, #eaded4);
    border-radius: 16px;
    background: #fff;
    color: var(--recipe-ink, #2d201c);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.recipes-mould-card:hover {
    transform: translateY(-3px);
    border-color: #d8a184;
    box-shadow: 0 16px 34px rgba(59, 35, 25, .1);
}

.recipes-mould-card span {
    color: var(--recipe-clay, #a84f32);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.recipes-mould-card strong {
    align-self: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.45rem;
    line-height: 1.12;
}

.recipes-mould-card b {
    color: var(--recipe-clay, #a84f32);
    font-size: 1.1rem;
}

@media (max-width: 860px) {
    .recipes-mould-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .recipes-mould-grid { grid-template-columns: 1fr; }
}
