/* ==========================================================================
   PaverNet — landing /serwis-w-regionie (segment PODWYK)

   Ten plik DOPEŁNIA główny style.css, nie zastępuje go.
   Kolory, typografia, przyciski, formularz, siatka i stopka pochodzą z systemu
   strony głównej. Tutaj są wyłącznie komponenty, których w systemie nie ma:
   oś rozwoju, schemat zasięgu, karty z liczbami, moduł „zanim wypełnicie”.
   ========================================================================== */

/* --- Pasek nawigacji ------------------------------------------------------
   Menu obsługuje tę stronę, a nie cały portal. Kotwice prowadzą do sekcji,
   logo wraca na stronę główną. Klasy .navbar i .nav-logo pochodzą ze style.css.
   ------------------------------------------------------------------------- */

.sr-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sr-nav-section {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    padding-left: 12px;
    border-left: 1px solid var(--gray-200);
}

/* Kotwice do sekcji tej strony */
.sr-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sr-nav-menu a {
    display: block;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.sr-nav-menu a:hover {
    color: var(--text-primary);
    background: var(--gray-100);
}
.sr-nav-menu a.active {
    color: var(--accent);
    background: var(--accent-light);
    font-weight: 600;
}

.sr-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sr-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}
.sr-nav-phone:hover { color: var(--accent); }
.sr-nav-phone svg { width: 16px; height: 16px; }

.sr-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.sr-nav-cta svg { width: 16px; height: 16px; }

/* Hamburger. Na desktopie schowany. */
.sr-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.sr-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.sr-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sr-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sr-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Kotwica ma nie chować się pod przyklejonym paskiem */
section[id], header[id] { scroll-margin-top: 84px; }

/* --- Okruszki nawigacji (podstrony klas urządzeń) --------------------------
   Na podstronę wchodzi się z linku w cold mailu, więc odwiedzający nie
   przeszedł przez landing i nie wie, gdzie wylądował.
   ------------------------------------------------------------------------- */

.sr-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}
.sr-crumbs a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.sr-crumbs a:hover { color: #fff; text-decoration: underline; }
.sr-crumbs [aria-current] { color: #fff; font-weight: 600; }

/* Hero podstrony jest niższe od hero landingu. Podstrona nie jest wydarzeniem. */
.sr-hero-sub { padding: 120px 0 64px; }
.sr-hero-sub h1 { max-width: 22ch; }

/* Powrót do landingu. Nigdy „powrót" ani „strona główna", zawsze zakresem. */
.sr-back-link {
    margin-top: 22px;
    font-size: 16px;
    font-weight: 700;
}
.sr-back-link a { color: var(--accent); text-decoration: none; }
.sr-back-link a:hover { text-decoration: underline; }

/* --- Tabela usterek --------------------------------------------------------
   Objaw po lewej, to co sprawdzamy po prawej. Na wąskim ekranie przewija się
   w poziomie zamiast łamać wiersze.
   ------------------------------------------------------------------------- */

.sr-table-wrap {
    max-width: 860px;
    margin: 0 auto;
    overflow-x: auto;
}

.sr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.sr-table th {
    padding: 14px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    background: var(--gray-50, #f9fafb);
    border-bottom: 1px solid var(--gray-200);
}
.sr-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: top;
}
.sr-table tbody tr:last-child td { border-bottom: none; }
.sr-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}
.sr-table td:last-child { color: var(--text-secondary); }

/* --- Pasek mobilny ---------------------------------------------------------
   Przyklejony do dołu ekranu. Na desktopie nie istnieje.
   ------------------------------------------------------------------------- */

.sr-mobile-bar { display: none; }

.sr-mbar-call,
.sr-mbar-cta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
}
.sr-mbar-call {
    color: var(--text-primary);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}
.sr-mbar-call svg { width: 17px; height: 17px; }
.sr-mbar-cta {
    color: #fff;
    background: var(--accent);
}

/* --- Hero -----------------------------------------------------------------
   Ten sam gradient co hero strony głównej i podstron usług.
   ------------------------------------------------------------------------- */

.sr-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 50%, var(--blue-900) 100%);
    overflow: hidden;
}
.sr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.10) 0%, transparent 50%);
}
.sr-hero .container { position: relative; }

.sr-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    max-width: 18ch;
}

.sr-hero-body { max-width: 760px; }

.sr-hero-problem { color: var(--gray-300); font-size: 17px; line-height: 1.7; }
.sr-hero-problem strong { color: #fff; }

.sr-hero-value {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--gray-200);
}
.sr-hero-value strong { color: #fff; }

.sr-hero-effect {
    margin-top: 24px;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
}

.sr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
/* Wariant przycisku na ciemnym tle — jak .btn-outline, ale w bieli. */
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
    color: #fff;
}

.sr-hero-note { margin-top: 18px; font-size: 14px; color: var(--gray-400); }

/* --- Wspólne bloki treści -------------------------------------------------- */

.sr-alt { background: var(--bg-secondary); }

.sr-narrow { max-width: 780px; }

/* Akapit-problem otwierający sekcję. */
.sr-problem {
    border-left: 3px solid var(--gray-200);
    padding-left: 22px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
}
.sr-problem strong { color: var(--text-primary); }

.sr-value { margin-top: 24px; }

/* Zdanie-efekt domykające sekcję. */
.sr-effect {
    margin-top: 24px;
    padding: 18px 22px;
    background: var(--accent-light);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--gray-800);
}
.sr-effect::before {
    content: 'Efekt';
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

/* --- Trzy liczby jako odpowiedzi ------------------------------------------- */

.sr-answers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sr-answer {
    padding: 28px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.sr-answer:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.sr-answer-q {
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
}
.sr-answer-n {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--accent);
    margin: 10px 0 12px;
}
.sr-answer-n small {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}
.sr-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* --- Oś rozwoju ------------------------------------------------------------ */

.sr-timeline-intro { font-weight: 600; margin-bottom: 28px; }

.sr-timeline {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 1fr);
    overflow-x: auto;
    padding: 44px 2px 10px;
    list-style: none;
    scrollbar-width: thin;
}
.sr-timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-200), var(--blue-600));
}
.sr-tl-item { position: relative; padding: 34px 16px 0 0; }
.sr-tl-item::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 5px rgba(37,99,235,0.12);
}
.sr-tl-year {
    position: absolute;
    top: -26px;
    left: 0;
    font-size: 17px;
    font-weight: 800;
    color: var(--accent);
}
.sr-tl-label { font-size: 14px; line-height: 1.45; color: var(--text-secondary); font-weight: 600; }

/* Klasa z własną podstroną. Reszta pozycji na osi zostaje zwykłym tekstem. */
.sr-tl-label a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--blue-200);
}
.sr-tl-label a:hover { border-bottom-color: var(--accent); }

/* --- Siatka klas urządzeń --------------------------------------------------
   Oś wyżej odpowiada na pytanie OD KIEDY. Siatka odpowiada na CO DOKŁADNIE.
   Kafle bez własnej podstrony są zwykłymi blokami: bez cienia, bez strzałki,
   bez reakcji na kursor. Kafel z podstroną jest wyraźnie klikalny.
   ------------------------------------------------------------------------- */

.sr-class-head {
    margin: 48px 0 22px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.sr-class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.sr-class-card {
    display: block;
    padding: 22px 24px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
}

.sr-cc-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

/* Rok. Najtańszy dowód wiarygodności, jaki mamy, i spinacz z osią wyżej. */
.sr-cc-year {
    display: inline-block;
    margin-left: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--accent);
    background: var(--accent-light);
    border-radius: 100px;
    vertical-align: 2px;
    white-space: nowrap;
}

/* Podzespoły. Po nich rozmówca techniczny poznaje, że nie zgadujemy. */
.sr-cc-parts {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
}

.sr-cc-desc {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Kafel z własną podstroną. Odcina się od pozostałych, żeby było widać, że
   tylko on prowadzi dalej. */
.sr-class-card--link {
    background: #fff;
    border-color: var(--blue-200);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.sr-class-card--link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.sr-class-card--link .sr-cc-title { color: var(--accent); }

/* CTA nazwany konkretnie, nigdy „Czytaj więcej". */
.sr-cc-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}
.sr-cc-more svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}
.sr-class-card--link:hover .sr-cc-more { text-decoration: underline; }
.sr-class-card--link:hover .sr-cc-more svg { transform: translateX(4px); }

/* --- Model operacyjny ------------------------------------------------------ */

.sr-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    counter-reset: pwstep;
}
.sr-step {
    position: relative;
    padding: 26px 26px 26px 76px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}
.sr-step::before {
    counter-increment: pwstep;
    content: counter(pwstep);
    position: absolute;
    left: 26px;
    top: 26px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 15px;
    font-weight: 800;
}
.sr-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.sr-step p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* --- Zasięg ---------------------------------------------------------------- */

.sr-reach {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: center;
}
.sr-reach-figure {
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.sr-reach-figure figcaption {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}
.sr-reach-list { list-style: none; margin-top: 24px; border-top: 1px solid var(--gray-200); }
.sr-reach-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 2px;
    border-bottom: 1px solid var(--gray-200);
}
.sr-reach-city { font-weight: 700; }
.sr-reach-km { font-variant-numeric: tabular-nums; color: var(--text-secondary); font-weight: 600; }

/* --- Uprawnienia ------------------------------------------------------------ */

.sr-checks { list-style: none; display: grid; gap: 14px; }
.sr-checks li { position: relative; padding-left: 34px; color: var(--text-secondary); }
.sr-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 2px solid var(--accent);
}
.sr-checks li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 0.62em;
    width: 6px;
    height: 10px;
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -2px);
}
.sr-checks strong { color: var(--text-primary); }

/* --- Karty parami ----------------------------------------------------------- */

.sr-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sr-pair-card {
    padding: 30px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}
.sr-pair-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }

.sr-aside {
    margin-top: 32px;
    padding: 24px 28px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-secondary);
}
.sr-aside h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }

/* --- Kwalifikacja dostawcy --------------------------------------------------- */

.sr-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 4px; list-style: none; }
.sr-facts li {
    padding: 7px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* --- Moduł „zanim wypełnicie” + formularz ------------------------------------ */

.sr-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.sr-before-send {
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.sr-before-send h3 { font-size: 19px; font-weight: 700; margin-bottom: 22px; }
.sr-bs-list { display: grid; gap: 18px; }
.sr-bs-list dt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}
.sr-bs-list dd { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.sr-bs-list dd strong { color: var(--text-primary); }

.sr-ask { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.sr-ask > p { font-weight: 700; margin-bottom: 10px; font-size: 15px; }
.sr-ask ul { list-style: none; display: grid; gap: 8px; }
.sr-ask li { position: relative; padding-left: 20px; color: var(--text-secondary); font-size: 14px; }
.sr-ask li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.sr-under-form {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.sr-under-form strong { color: var(--text-primary); }
.sr-under-form a { color: var(--accent); text-decoration: none; font-weight: 700; }
.sr-under-form a:hover { text-decoration: underline; }

/* Honeypot */
.sr-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Stopka ----------------------------------------------------------------
   Jedno zdanie o części lokalnej. Bez linków do cennika i usług IT-LOK.
   ------------------------------------------------------------------------- */

.sr-foot-cross {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
}
.sr-foot-cross a { color: var(--blue-400); text-decoration: none; font-weight: 600; }
.sr-foot-cross a:hover { text-decoration: underline; }

/* --- Wejście w kadr. Ta sama konwencja co na stronie głównej: [data-animate]. */

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s var(--transition), transform 0.55s var(--transition);
}
[data-animate].animate-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* --- Responsywność ----------------------------------------------------------- */

@media (max-width: 1024px) {
    .sr-answers { grid-template-columns: 1fr; }
    .sr-reach { grid-template-columns: 1fr; }
    .sr-reach-figure { max-width: 420px; margin: 0 auto; }
    .sr-contact-grid { grid-template-columns: 1fr; }

    /* Kotwice chowają się w hamburgerze. Przycisk zostaje na wierzchu. */
    .sr-nav-toggle { display: flex; order: 3; }
    .sr-nav-actions { order: 2; margin-left: auto; margin-right: 4px; }
    .sr-nav-phone { display: none; }

    .sr-nav-menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 8px 0 16px;
        border-top: 1px solid var(--gray-200);
    }
    .sr-nav-menu.open { display: flex; }
    .sr-nav-menu a { padding: 12px 4px; font-size: 15px; }

    .nav-container { flex-wrap: wrap; height: auto; min-height: 72px; }
    .sr-nav-brand { order: 1; }

    /* Pasek przyklejony do dołu ekranu */
    .sr-mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: flex;
        gap: 10px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    }
    body { padding-bottom: 78px; }
}

@media (max-width: 380px) {
    .sr-nav-section { display: none; }
}

@media (max-width: 768px) {
    .sr-hero { padding: 120px 0 64px; }
    .sr-steps, .sr-pair { grid-template-columns: 1fr; }
    .sr-hero-actions .btn { width: 100%; }
    .sr-nav-phone span { display: none; }

    /* Oś rozwoju: pionowa lista zamiast przewijania w bok */
    .sr-timeline {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        overflow-x: visible;
        padding: 8px 0 0 26px;
    }
    .sr-timeline::before {
        top: 8px;
        bottom: 8px;
        left: 6px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, var(--blue-200), var(--blue-600));
    }
    .sr-tl-item { padding: 0 0 22px 22px; }
    .sr-tl-item::before { top: 0.3em; left: -26px; }
    .sr-tl-year { position: static; display: block; margin-bottom: 2px; }
}
