/* ============================================================
 * CTA banner — [velemeny_cta] és [velemeny_cta_inline]
 *
 * Színvilág a tervezeti mintákból:
 *   háttér:        #f6f4ee
 *   border:        #e7e5df
 *   sötét szöveg:  #26331f
 *   másodlagos:    #54544a
 *   csillag:       #c19b5f
 *   gomb gradiens: linear-gradient(135deg, #d9bd86, #c19b5f)
 * ============================================================ */

.velemeny-cta {
    background: #ffffff;
    border: 1px solid #e7e5df;
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: rgba(46, 42, 32, 0.5) 0px 24px 50px -40px;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.velemeny-cta__body {
    flex: 1 1 0%;
    min-width: 220px;
}

.velemeny-cta__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.velemeny-cta__stars {
    display: flex;
    gap: 2px;
}

.velemeny-cta__score {
    font-weight: 700;
    font-size: 14px;
    color: #26331f;
}

.velemeny-cta__text {
    font-weight: 600;
    font-size: 15px;
    color: #54544a;
    margin-top: 4px;
}

.velemeny-cta__text strong {
    color: #26331f;
      font-weight: 700;
}

.velemeny-cta__button {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #d9bd86, #c19b5f);
    color: #3a2d05;
    font-weight: 800;
    font-size: 14.5px;
    padding: 14px 26px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.velemeny-cta__button:hover,
.velemeny-cta__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(193, 155, 95, 0.35);
    color: #3a2d05;
}

.velemeny-cta--inline {
    border-radius: 16px;
    padding: 26px 30px;
    align-items: center;
    box-shadow: rgba(46, 42, 32, 0.5) 0px 24px 50px -40px;
    background-color: white;
}

.velemeny-cta__line {
    flex: 1 1 0%;
    margin: 0;
    font-weight: 500;
    font-size: 16.5px;
    line-height: 1.75;
    color: #54544a;
}

.velemeny-cta__line strong {
    color: #26331f;
        font-weight: 800;
}

.velemeny-cta__stars-inline {
    display: inline-flex;
    gap: 1px;
    vertical-align: middle;
    white-space: nowrap;
}

.velemeny-cta__inline-link {
    color: #a37f43;
    font-weight: 700;
    border-bottom: 1.5px solid #c19b5f;
    padding-bottom: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease;
}

.velemeny-cta__inline-link:hover,
.velemeny-cta__inline-link:focus {
    color: #8a6a32;
}

/* ---------- Responsive: mobilon függőleges elrendezés ---------- */
@media (max-width: 600px) {
    .velemeny-cta,
    .velemeny-cta--inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 20px 22px;
    }

    .velemeny-cta__button {
        width: 100%;
        text-align: center;
    }
}
