.match-promotion-wrapper {
    margin-bottom: 0.35rem;
    margin-top: 10px;
}

.match-promotion {
    position: relative;
    min-height: 3.5rem;
    overflow: hidden;
    background: #000;
    color: #fff;
    border-radius: 4px;
}

.match-promotion__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0.85rem;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(0.65rem);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.match-promotion__slide--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.match-promotion__label {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e30613;
}

.match-promotion__label .ico-dot {
    animation: match-promotion-pulse 1.2s ease-in-out infinite;
}

@keyframes match-promotion-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

.match-promotion__matchup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
}

.match-promotion__crest {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2rem;
    aspect-ratio: 1 / 1;
    padding: 0.15rem;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 3px;
    background: rgb(255 255 255 / 0.04);
    box-sizing: border-box;
}

.match-promotion__crest img.crest {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.match-promotion__team {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-promotion__abbreviation {
    font-size: 0.75rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-promotion__team:first-of-type {
    text-align: right;
}

.match-promotion__vs {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 800;
}

.match-promotion__countdown {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    flex-shrink: 0;
}

.match-promotion__countdown-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    min-width: 1.75rem;
}

.match-promotion__countdown-value {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.match-promotion__countdown-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.7);
}

.match-promotion__score {
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.match-promotion__datetime {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgb(255 255 255 / 0.8);
    white-space: nowrap;
}

.match-promotion--empty {
    padding: 0.75rem;
    background: var(--laola1-card-background, #f5f5f5);
    color: var(--laola1-text-secondary, #666);
    text-align: center;
}

.match-promotion--empty p {
    margin: 0;
    font-style: italic;
}

@media (max-width: 720px) {
    .match-promotion__slide {
        gap: 0.55rem;
        padding: 0.5rem 0.65rem;
    }

    .match-promotion__team {
        display: none;
    }

    .match-promotion__status {
        display: none;
    }

    .match-promotion__countdown {
        gap: 0.45rem;
        margin-left: auto;
    }

    .match-promotion__countdown-value {
        font-size: 0.95rem;
    }

    .match-promotion__datetime {
        display: none;
    }
}

@media (min-width: 721px) {
    .match-promotion__abbreviation {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .match-promotion__slide {
        transition: none;
        transform: none;
    }
}
