.energetico-radar {
    --er-navy: #081b33;
    --er-navy-2: #0d2747;
    --er-cyan: #00aeea;
    --er-text: #ffffff;
    --er-muted: #a9bac9;
    width: 100%;
    background: var(--er-navy);
    color: var(--er-text);
    font-family: inherit;
    overflow: hidden;
}

.energetico-radar__inner {
    max-width: 1400px;
    min-height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.energetico-radar__brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: var(--er-cyan);
}

.energetico-radar__title {
    color: var(--er-navy);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    white-space: nowrap;
}

.energetico-radar__scroller {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
}

.energetico-radar__scroller::-webkit-scrollbar { display: none; }

.energetico-radar__item {
    position: relative;
    flex: 1 0 145px;
    min-width: 145px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 7px;
    padding: 7px 14px;
    border-right: 1px solid rgba(255,255,255,.11);
}

.energetico-radar__label {
    grid-column: 1 / -1;
    color: var(--er-muted);
    font-size: 9.5px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.energetico-radar__reading {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.energetico-radar__reading strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.05;
    font-weight: 800;
}

.energetico-radar__reading small {
    color: var(--er-muted);
    font-size: 9px;
    font-weight: 700;
}

.energetico-radar__hint {
    align-self: end;
    color: var(--er-cyan);
    font-size: 8.5px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.energetico-radar__meta {
    flex: 0 0 auto;
    min-width: 92px;
    padding: 7px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-align: right;
    background: var(--er-navy-2);
}

.energetico-radar__meta a {
    color: var(--er-cyan);
    font-size: 9px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.energetico-radar__updated {
    color: var(--er-muted);
    font-size: 8px;
    line-height: 1.1;
    white-space: nowrap;
}

.energetico-radar__empty {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--er-muted);
    font-size: 12px;
}

.energetico-radar__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .energetico-radar__inner {
        min-height: 48px;
    }

    .energetico-radar__brand {
        position: sticky;
        left: 0;
        z-index: 2;
        padding: 0 12px;
        box-shadow: 7px 0 12px rgba(8,27,51,.28);
    }

    .energetico-radar__title {
        max-width: 62px;
        white-space: normal;
        font-size: 10px;
        line-height: 1.05;
    }

    .energetico-radar__item {
        flex-basis: 118px;
        min-width: 118px;
        padding: 6px 10px;
    }

    .energetico-radar__label {
        font-size: 8.5px;
    }

    .energetico-radar__reading strong {
        font-size: 15px;
    }

    .energetico-radar__meta {
        min-width: 78px;
        padding: 6px 9px;
    }
}
