/**
 * DACTYLO Odomètre — front-end styles.
 *
 * @since 1.0.0
 */

.odo-odometer {
    display: inline-flex;
    align-items: stretch;
    background: #ffffff;
    border: 3px solid #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    line-height: 1;
    font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
}

.odo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6em;
    padding: 0.45em 0.35em;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #e03a3a;
    border-right: 2px solid #1a1a1a;
    background: #ffffff;
}

.odo-cell:last-child {
    border-right: none;
}

.odo-cell--suffix {
    min-width: 2.2em;
    letter-spacing: 0.02em;
}
