/* ─────────────────────────────────────────────
   HDS Sub-Header — Frontend
   ───────────────────────────────────────────── */

#hds-subheader {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 999;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Static (non-scrolling) layout */
#hds-subheader:not([data-scroll="1"]) .hds-sh-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
    padding: 0 16px;
}

/* Scrolling marquee layout */
#hds-subheader[data-scroll="1"] .hds-sh-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

/* Items */
.hds-sh-item-fe {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .2s;
}

a.hds-sh-item-fe:hover {
    opacity: .8;
}

.hds-sh-item-txt {
    vertical-align: middle;
}

.hds-sh-item-img {
    display: inline-block;
    object-fit: cover;
}
