/**
 * Section 1 — Announcement Bar
 * .tnk-s1 scoped styles
 */

.tnk-s1 {
    --tnk-red: #E31E24;
    --tnk-black: #131313;
    --tnk-white: #ffffff;

    background: var(--tnk-black);
    color: var(--tnk-white);
    height: 36px;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    z-index: 110;
    width: 100%;
    box-sizing: border-box;
}

.tnk-s1 *, .tnk-s1 *::before, .tnk-s1 *::after {
    box-sizing: border-box;
}

.tnk-s1__inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    gap: 16px;
}

.tnk-s1__spacer { display: block; }

.tnk-s1__track-wrap {
    position: relative;
    height: 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.tnk-s1__track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tnk-s1__msg {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--tnk-white);
}

.tnk-s1__msg strong {
    font-weight: 700;
    color: var(--tnk-white);
}

.tnk-s1__msg-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--tnk-red);
    flex-shrink: 0;
    display: inline-block;
}

.tnk-s1__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tnk-white) !important;
    text-decoration: none !important;
    padding: 4px 0;
    border-bottom: 1.5px solid var(--tnk-red);
    transition: color 0.2s ease, gap 0.2s ease;
    white-space: nowrap;
}

.tnk-s1__cta:hover,
.tnk-s1__cta:focus {
    color: var(--tnk-red) !important;
    gap: 10px;
}

.tnk-s1__cta-arrow {
    font-size: 13px;
    transition: transform 0.2s ease;
}

@media (max-width: 720px) {
    .tnk-s1 { height: 34px; }
    .tnk-s1__inner { padding: 0 14px; grid-template-columns: 1fr auto; gap: 10px; }
    .tnk-s1__spacer { display: none; }
    .tnk-s1__track-wrap { height: 34px; justify-content: flex-start; }
    .tnk-s1__msg { height: 34px; font-size: 10.5px; letter-spacing: 0.05em; gap: 8px; }
    .tnk-s1__cta { font-size: 10px; padding: 3px 0; }
    .tnk-s1__cta-arrow { font-size: 11px; }
}

@media (max-width: 480px) {
    .tnk-s1__msg { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .tnk-s1__track { transition: none !important; }
    .tnk-s1__cta { transition: none !important; }
}
