/* ─── Rondreis Meta Bar ────────────────────────────────────────────────────────
   Shortcode: [rondreis_meta]
   ─────────────────────────────────────────────────────────────────────────── */

.rim-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ── Each item ─────────────────────────────────────────────────────────────── */

.rim-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ── Price badge (green circle with €) ─────────────────────────────────────── */

.rim-price-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #79a870;
    color: #f9f4ee;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Shared text ───────────────────────────────────────────────────────────── */

.rim-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    color: #364940;
    white-space: nowrap;
}

/* ── Rating (score + count on same baseline) ───────────────────────────────── */

.rim-rating-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.rim-rating {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #364940;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.rim-count {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #ab9472;
    letter-spacing: -0.28px;
    white-space: nowrap;
}

/* ── Icons ─────────────────────────────────────────────────────────────────── */

.rim-pin {
    width: 14px;
    height: 18px;
    flex-shrink: 0;
}

.rim-star {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .rim-bar {
        gap: 16px;
    }

    .rim-text,
    .rim-rating {
        font-size: 16px;
    }
}
