.top-info-row {
    background: #111;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    text-align: center;
}

.top-info-row .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .top-info-row {
        font-size: 13px;
        padding: 6px 10px;
    }

    .top-info-row .container {
        flex-direction: column;
        gap: 2px;
    }
}

