.kiemelt {
    position: relative;

    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;

    line-height: 1.32;
    letter-spacing: 0.01em;

    color: #0b2545;
    background: #ffffff;

    /* ❌ EZT KIVESSZÜK */
    /* border-left: 8px solid;
    border-image: linear-gradient(to bottom, #6c99ff, #4a6fe0) 1; */

    padding: 1rem 1.4rem 1rem 1.6rem; /* 🔥 kicsit több bal padding */
    margin: 1.4rem 0;

    border-radius: 6px;

    display: flex;
    flex-direction: column;
    gap: 0.3rem;

    max-width: 720px;
}

/* 🔵 EZ LESZ AZ ÚJ KÉK CSÍK */
.kiemelt::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 2.4rem; /* 🔥 levágjuk a captionnél */

    width: 5px;
    background: linear-gradient(to bottom, #6c99ff, #4a6fe0);
    border-radius: 4px;
}

/* 💣 quote marad */
.kiemelt::before {
    content: "“";
    position: absolute;
    left: 16px;
    top: -12px;
    font-size: 3.5rem;
    opacity: 0.06;
    font-family: serif;
}

/* ✍️ caption marad */
.kiemelt figcaption {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;

    line-height: 1.2;
    letter-spacing: 0.06em;

    text-transform: uppercase;
    text-align: right;

    color: #5a5a5a;

    border-top: 1px solid rgba(108,153,255,0.25);

    padding-top: 0.45rem;
    margin-top: 0.5rem;

    max-width: 85%;
    margin-left: auto;
}