/* ============================================================
   SPICE – HINWEISBOX
   Frontend + grundlegende Editor-Darstellung
   ============================================================ */

.spice-hint-box {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 28px 32px;
    background: #fbfbfb;
    border: 1px solid #dedede;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.018);
    font-family: inherit;
    overflow: hidden;
}

.spice-hint-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    width: 42px;
    height: 3px;
    background: #555555;
}

.spice-hint-box .spice-hint-box__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-top: 2px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 12px;
    color: #3a3a3a;
    flex: 0 0 auto;
}

.spice-hint-box .spice-hint-box__mark-letter {
    display: block;
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    font-style: normal;
    font-family: Georgia, "Times New Roman", serif;
    transform: translateY(-1px);
}

.spice-hint-box .spice-hint-box__content {
    min-width: 0;
}

.spice-hint-box .spice-hint-box__eyebrow {
    display: block;
    margin: 0 0 8px;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #9b9d9f;
}

.spice-hint-box .spice-hint-box__title {
    display: block;
    margin: 0;
    padding: 0;
    font-size: clamp(19px, 1.9vw, 25px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #303030;
}

.spice-hint-box .spice-hint-box__text {
    display: block;
    max-width: 820px;
    margin: 9px 0 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #7f8183;
}

@media (max-width: 580px) {
    .spice-hint-box {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 15px;
        padding: 25px 22px;
        border-radius: 13px;
    }

    .spice-hint-box::before {
        left: 22px;
    }

    .spice-hint-box .spice-hint-box__mark {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .spice-hint-box .spice-hint-box__mark-letter {
        font-size: 19px;
    }

    .spice-hint-box .spice-hint-box__title {
        font-size: 20px;
    }
}
