/* ================================================
   Listing Info Box — Petite carte d'info réutilisable
   ================================================ */

.listing-info-box {
    width: 100%;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    border-radius: var(--border-radius-base);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Header ── */
.listing-info-box__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.listing-info-box__header > i {
    font-size: 20px;
    flex-shrink: 0;
    transition: font-weight 0.2s ease;
}

.listing-info-box:hover .listing-info-box__header > i {
    font-weight: 900;
}

.listing-info-box__header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.listing-info-box__title {
    color: var(--dark1);
    font-family: var(--font-helvetica);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-button);
}

.listing-info-box__subtitle {
    color: var(--dark1);
    font-family: var(--font-rubik);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

/* ── Badge ── */
.listing-info-box__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--light-green-bg);
    box-shadow: var(--shadow-card);
    border-radius: var(--border-radius-small);
}

.listing-info-box__badge i {
    font-size: 18px;
    color: var(--dark-green);
}

.listing-info-box__badge span {
    color: var(--dark1);
    font-family: var(--font-rubik);
    font-size: 16px;
    font-weight: var(--font-weight-regular);
}

/* ── Rows ── */
.listing-info-box__rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.listing-info-box__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listing-info-box__row-label {
    color: var(--dark1);
    font-family: var(--font-rubik);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

.listing-info-box__row-value {
    color: var(--dark1);
    font-family: var(--font-helvetica);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    text-align: right;
}

/* ── Link row ── */
.listing-info-box__link-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.listing-info-box__link-row .listing-info-box__row-label {
    font-size: 14px;
}

.listing-info-box__link-row .listing-info-box__row-value {
    color: var(--main-color);
    font-family: var(--font-rubik);
    font-weight: var(--font-weight-regular);
}
