/* ==========================================================
   GB Badge — TE KOOP en SOLD labels onder de hoofdfoto
   op detailpagina's van Gerard Bes portfolio.
   ========================================================== */

/* Badges onder de hero foto (.gb-port__hero) */
.gb-badges--below {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 10px;
    pointer-events: none;
    user-select: none;
}

/* Basis badge */
.gb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border-radius: 3px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1;
}

/* TE KOOP — groen */
.gb-badge--tekoop {
    background: #fff;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

/* SOLD — rood */
.gb-badge--sold {
    background: #fff;
    color: #b71c1c;
    border: 2px solid #b71c1c;
}
