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

.spice-key-takeaway {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 22px;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 34px;
    background: #f4f4f4;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.02);
    font-family: inherit;
    overflow: hidden;
}

.spice-key-takeaway::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #3a3a3a;
}

.spice-key-takeaway .spice-key-takeaway__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-top: 2px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 50%;
    color: #343434;
    flex: 0 0 auto;
}

.spice-key-takeaway .spice-key-takeaway__quote {
    display: block;
    height: 31px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 39px;
    line-height: 1;
    font-weight: 400;
    transform: translateY(-2px);
}

.spice-key-takeaway .spice-key-takeaway__content {
    min-width: 0;
}

.spice-key-takeaway .spice-key-takeaway__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: #8f9193;
}

.spice-key-takeaway .spice-key-takeaway__title {
    display: block;
    margin: 0;
    padding: 0;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #2f2f2f;
}

.spice-key-takeaway .spice-key-takeaway__text {
    display: block;
    max-width: 820px;
    margin: 10px 0 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.72;
    font-weight: 450;
    color: #67696b;
}

@media (max-width: 580px) {
    .spice-key-takeaway {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
        padding: 26px 23px 26px 25px;
        border-radius: 13px;
    }

    .spice-key-takeaway .spice-key-takeaway__mark {
        width: 42px;
        height: 42px;
    }

    .spice-key-takeaway .spice-key-takeaway__quote {
        height: 27px;
        font-size: 33px;
    }

    .spice-key-takeaway .spice-key-takeaway__title {
        font-size: 20px;
    }

    .spice-key-takeaway .spice-key-takeaway__text {
        font-size: 14px;
    }
}
