/* ==========================================================================
   Fixtures ticker — sits above the navbar, before the hero
   ========================================================================== */

.fx-ticker-wrap {
    display: flex;
    align-items: center;
    background: #f7f8fa;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 16px;
    max-width: 1080px;
    margin: 0 auto;
}

.fx-ticker-scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    flex: 1;
}

.fx-ticker-scroll::-webkit-scrollbar {
    display: none;
}

.fx-ticker-card {
    flex-shrink: 0;
    width: 148px;
    margin-right: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none !important;
}

.fx-ticker-status {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 6px;
}

.fx-ticker-status--final {
    background: #16233c;
}

.fx-ticker-status--live {
    background: #e0141c;
}

.fx-ticker-status--upcoming {
    background: #0669ff;
}

.fx-ticker-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
}

.fx-ticker-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 44px;
}

.fx-ticker-crest {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 4px;
}

.fx-ticker-crest--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f1f3;
    border-radius: 50%;
    font-size: 12px;
}

.fx-ticker-code {
    font-size: 11px;
    font-weight: 700;
    color: #16233c;
}

.fx-ticker-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.fx-ticker-score {
    font-size: 15px;
    font-weight: 700;
    color: #16233c;
}

.fx-ticker-arrow {
    font-size: 10px;
    color: #9ca3af;
}

.fx-ticker-next,
.fx-ticker-prev {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: #16233c;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fx-ticker-next {
    margin-left: 10px;
}

.fx-ticker-prev {
    margin-right: 10px;
}

.fx-ticker-next:hover,
.fx-ticker-prev:hover {
    background: #f3f4f6;
}

@media (max-width: 640px) {
    .fx-ticker-wrap {
        padding: 8px 12px;
    }

    .fx-ticker-card {
        width: 132px;
    }
}
