/* ===========================
   PRESS TICKER
   =========================== */

.press-ticker {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    height: 44px;
    overflow: hidden;
}

.press-ticker-inner {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.press-ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-right: 1px solid #333;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #00b4a0;
    white-space: nowrap;
    flex-shrink: 0;
}

.press-ticker-dot {
    width: 7px;
    height: 7px;
    background: #00b4a0;
    border-radius: 50%;
    animation: ticker-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes ticker-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.press-ticker-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.press-ticker-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.press-ticker-fade-left {
    left: 0;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

.press-ticker-fade-right {
    right: 0;
    background: linear-gradient(to left, #1a1a1a, transparent);
}

.press-ticker-track {
    display: flex;
    align-items: center;
    height: 44px;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px 0 0;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.ticker-item:hover {
    opacity: 0.75;
}

.ticker-item::before {
    content: '·';
    color: #444;
    margin-right: 32px;
    font-size: 20px;
}

.ticker-item:first-child::before {
    display: none;
}

.ticker-ref {
    font-size: 11px;
    font-weight: 700;
    color: #00b4a0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.ticker-text {
    font-size: 13px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

.ticker-pause-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: #00b4a0;
    cursor: pointer;
    border-left: 1px solid #333;
    transition: color 0.2s ease;
}

.ticker-pause-btn:hover {
    color: white;
}

.ticker-pause-btn:focus-visible {
    outline: 2px solid #00b4a0;
    outline-offset: -2px;
}

.hidden-mobile { display: inline; }
.visible-mobile { display: none; }

@media (max-width: 768px) {
    .hidden-mobile { display: none; }
    .visible-mobile { display: inline; }
    .ticker-text { font-size: 12px; }
}
