.vtr-wrap, .vtr-archive-wrap, .vtr-single-wrap { font-family: 'Inter', sans-serif; }

/* ═══════════════════════════════════
   OVERRIDE — контейнер транспорту
════════════════════════════════════ */
.vtr-single-wrap .container,
.vtr-archive-wrap .container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.vtr-single-wrap,
.vtr-archive-wrap {
    width: 100%;
}
/* VaroshUzh Transport — CSS */
:root {
    --vtr-green: #0057B7;
    --vtr-green-light: #eff6ff;
    --vtr-amber: #BA7517;
    --vtr-border: #e5e7eb;
    --vtr-shadow: 0 2px 12px rgba(0,0,0,.08);
    --vtr-radius: 14px;
}

/* HERO */
.vtr-hero {
    background: linear-gradient(135deg, #071a40 0%, #0d2d6b 40%, #0057B7 80%, #003F8A 100%);
    padding: 36px 0 32px;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
/* Паттерн — схема маршрутних ліній */
.vtr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        /* Горизонтальні лінії маршрутів */
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        /* Вертикальні */
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
        /* Діагональні — схема доріг */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,215,0,.04) 40px,
            rgba(255,215,0,.04) 41px
        );
    background-size: 60px 60px, 60px 60px, 80px 80px;
    pointer-events: none;
}
/* Кола-зупинки на схемі */
.vtr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,215,0,.12) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 30px 30px;
    pointer-events: none;
}
.vtr-hero .container { position: relative; z-index: 1; }
.vtr-breadcrumb { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.vtr-breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.vtr-hero-title { font-size: 32px; font-weight: 800; margin: 0 0 8px; font-family: 'Montserrat', sans-serif; }
.vtr-hero-sub   { font-size: 15px; color: rgba(255,255,255,.8); margin: 0 0 20px; }

/* ПОШУК */
.vtr-search-box { position: relative; max-width: 600px; }
.vtr-search-input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    box-sizing: border-box;
}
.vtr-search-results-box, .vtr-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    z-index: 100;
    overflow: hidden;
}
.vtr-search-item, .vtr-search-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 0.5px solid var(--vtr-border);
    text-decoration: none;
    color: #0d1f3c;
    transition: background .15s;
    font-size: 13px;
}
.vtr-search-item:hover, .vtr-search-result:hover { background: var(--vtr-green-light); }
.vtr-si-num, .vtr-result-num { font-weight: 700; background: var(--vtr-green); color: #fff; padding: 2px 10px; border-radius: 12px; font-size: 12px; flex-shrink: 0; }
.vtr-si-route, .vtr-result-route { flex: 1; font-weight: 600; }
.vtr-si-stop, .vtr-result-stop { font-size: 11px; color: #9ca3af; }
.vtr-no-result { padding: 14px 16px; color: #9ca3af; font-size: 13px; }

.vtr-stats { display: flex; gap: 10px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.7); align-items: center; }

/* ФІЛЬТРИ */
.vtr-filters-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--vtr-border);
    border-radius: var(--vtr-radius);
    align-items: center;
}
.vtr-filter-label { font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; }
.vtr-filter-group { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.vtr-filter-btn {
    padding: 5px 14px;
    border: 1.5px solid var(--vtr-border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
}
.vtr-filter-btn:hover { border-color: var(--vtr-green); color: var(--vtr-green); }
.vtr-filter-btn.active { background: var(--vtr-green); border-color: var(--vtr-green); color: #fff; }
.vtr-filter-cnt { background: rgba(0,0,0,.08); padding: 0 5px; border-radius: 8px; font-size: 10px; margin-left: 2px; }
.vtr-filter-btn.active .vtr-filter-cnt { background: rgba(255,255,255,.25); }

/* СІТКА КАРТОК */
.vtr-container { padding-bottom: 48px; }
.vtr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}
@media(max-width:860px) { .vtr-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .vtr-grid { grid-template-columns: 1fr; } }

/* КАРТКА МАРШРУТУ */
.vtr-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--vtr-border);
    border-radius: var(--vtr-radius);
    padding: 16px;
    text-decoration: none;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.vtr-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--vtr-green);
    transform: scaleX(0);
    transition: transform .2s;
}
.vtr-card:hover { box-shadow: var(--vtr-shadow); transform: translateY(-2px); }
.vtr-card:hover::before { transform: scaleX(1); }
.vtr-card--closed { opacity: .6; }

.vtr-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.vtr-card-num {
    background: var(--vtr-green);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
}
.vtr-card-type { font-size: 11px; color: #9ca3af; font-weight: 600; }
.vtr-card-status { font-size: 11px; font-weight: 600; margin-left: auto; }

.vtr-card-route { margin-bottom: 10px; }
.vtr-card-from, .vtr-card-to { font-size: 14px; font-weight: 700; color: #0d1f3c; }
.vtr-card-arrow { color: #9ca3af; margin: 0 4px; font-size: 12px; }

.vtr-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.vtr-meta-item {
    font-size: 11px;
    background: #f9fafb;
    border: 0.5px solid var(--vtr-border);
    padding: 3px 8px;
    border-radius: 20px;
    color: #374151;
}
.vtr-card-stops-preview {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
    border-top: 0.5px solid var(--vtr-border);
    padding-top: 8px;
    margin-top: auto;
}
.vtr-more { color: var(--vtr-green); font-weight: 600; }

/* SINGLE PAGE */
.vtr-single-hero {
    background: linear-gradient(135deg, #071a40 0%, #0d2d6b 40%, #003F8A 100%);
    padding: 36px 0 32px;
    color: #fff;
    margin-bottom: 32px;
}
.vtr-single-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.vtr-single-num {
    font-size: 48px;
    font-weight: 800;
    background: rgba(255,255,255,.15);
    width: 80px; height: 80px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vtr-single-title { font-size: 26px; font-weight: 700; margin: 0 0 10px; font-family: 'Montserrat', sans-serif; }
.vtr-single-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.vtr-badge {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.vtr-badge--link { text-decoration: none; transition: background .15s; }
.vtr-badge--link:hover { background: rgba(255,255,255,.25); }

.vtr-params-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.vtr-param {
    background: rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    min-width: 100px;
}
.vtr-param-icon { font-size: 20px; margin-bottom: 4px; }
.vtr-param-val { font-size: 18px; font-weight: 700; }
.vtr-param-label { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ТІЛО СТОРІНКИ */
.vtr-single-body { max-width: 860px; }
.vtr-block { background: #fff; border: 1px solid var(--vtr-border); border-radius: var(--vtr-radius); padding: 24px 28px; margin-bottom: 20px; }
.vtr-block-title { font-size: 18px; font-weight: 700; color: #0d1f3c; margin: 0 0 18px; font-family: 'Montserrat', sans-serif; }

/* ЗУПИНКИ */
.vtr-stops-list { position: relative; }
.vtr-stop {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    position: relative;
}
.vtr-stop-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}
.vtr-stop--first .vtr-stop-dot { background: var(--vtr-green); border-color: var(--vtr-green); width: 18px; height: 18px; }
.vtr-stop--last  .vtr-stop-dot { background: #ef4444; border-color: #ef4444; width: 18px; height: 18px; }
.vtr-stop-line {
    position: absolute;
    left: 6px; top: 18px; bottom: -10px;
    width: 2px;
    background: #e5e7eb;
}
.vtr-stop:last-child .vtr-stop-line { display: none; }
.vtr-stop-content { flex: 1; }
.vtr-stop-name { font-size: 14px; font-weight: 600; color: #0d1f3c; }
.vtr-stop-street { font-size: 12px; color: #6b7280; margin-top: 2px; }
.vtr-stop-time { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.vtr-stop-num { font-size: 11px; color: #9ca3af; background: #f3f4f6; padding: 2px 6px; border-radius: 8px; flex-shrink: 0; }

/* РОЗКЛАД */
.vtr-schedule-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #f9fafb;
    border-radius: 8px;
}
.vtr-schedule-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.vtr-time {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: monospace;
}
.vtr-time--morning { background: #fef9c3; color: #92400e; }
.vtr-time--day     { background: #e0f2fe; color: #0369a1; }
.vtr-time--evening { background: #ede9fe; color: #6d28d9; }
.vtr-schedule-note { font-size: 13px; color: #6b7280; margin: 8px 0 0; }

/* ЯК ПРОЇХАТИ */
.vtr-howto { background: var(--vtr-green-light); border-color: #bfdbfe; }
.vtr-howto-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:560px) { .vtr-howto-steps { grid-template-columns: 1fr; } }
.vtr-howto-step { display: flex; gap: 12px; align-items: flex-start; }
.vtr-howto-num {
    width: 32px; height: 32px;
    background: var(--vtr-green);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}
.vtr-howto-step strong { display: block; font-size: 14px; margin-bottom: 4px; color: #0d1f3c; }
.vtr-howto-step p { font-size: 13px; color: #6b7280; margin: 0; }

/* ТАБЛИЦЯ ІНФО */
.vtr-info-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 12px; }
.vtr-info-table td { padding: 8px 12px; border-bottom: 0.5px solid var(--vtr-border); }
.vtr-info-table td:first-child { color: #6b7280; width: 140px; }
.vtr-info-table td:last-child { font-weight: 600; }
.vtr-notes { font-size: 13px; color: #6b7280; }

/* SEO БЛОК */
.vtr-seo-block {
    background: #f9fafb;
    border: 1px solid var(--vtr-border);
    border-radius: var(--vtr-radius);
    padding: 24px 28px;
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
}
.vtr-seo-block h2 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: #0d1f3c; margin: 0 0 12px; }
.vtr-seo-block h3 { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: #0d1f3c; margin: 20px 0 8px; }
.vtr-seo-block p  { font-family: 'Inter', sans-serif; font-size: 14px; color: #4b5563; line-height: 1.75; margin: 0 0 10px; }
.vtr-seo-block a { color: var(--vtr-green); }

@media(max-width:600px) {
    .vtr-single-header { flex-direction: column; }
    .vtr-single-num { width: 60px; height: 60px; font-size: 32px; }
    .vtr-block { padding: 16px; }
}

/* ═══════════════════════════════════
   SINGLE PAGE — НОВИЙ ДИЗАЙН
════════════════════════════════════ */

/* Hero grid */
.vtr-hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}
@media(max-width:960px) { .vtr-hero-grid { grid-template-columns: 1fr; } }

.vtr-hero-num-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: .5px;
}
.vtr-single-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}
.vtr-title-route {
    display: block;
    font-size: 18px;
    font-weight: 600;
    opacity: .85;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}
.vtr-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.vtr-status-badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}
.vtr-type-badge {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.vtr-dir-badge {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.2);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: background .15s;
}
.vtr-dir-badge:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Маршрут — візуальний */
.vtr-route-visual {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 14px 18px;
}
.vtr-route-point { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.vtr-rp-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #4ade80;
    border: 3px solid rgba(255,255,255,.5);
    flex-shrink: 0;
}
.vtr-rp-dot--end { background: #f87171; }
.vtr-rp-label { color: #fff; font-size: 14px; font-weight: 600; }
.vtr-route-line {
    flex: 1;
    position: relative;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vtr-route-line-inner {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #f87171);
    opacity: .5;
}
.vtr-route-duration {
    position: absolute;
    top: -20px;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

/* Параметри — права колонка hero */
.vtr-hero-params {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
@media(max-width:960px) { .vtr-hero-params { grid-template-columns: repeat(4, 1fr); } }
@media(max-width:560px) { .vtr-hero-params { grid-template-columns: 1fr 1fr; } }
.vtr-param-card {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: background .15s;
}
.vtr-param-card:hover { background: rgba(255,255,255,.15); }
.vtr-param-card--wide { grid-column: 1 / -1; }
.vtr-pc-icon { font-size: 22px; margin-bottom: 4px; }
.vtr-pc-val  { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; }
.vtr-pc-label{ font-size: 11px; color: rgba(255,255,255,.7); margin-top: 3px; }

/* Content grid */
.vtr-content-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 48px;
}
@media(max-width:960px) { .vtr-content-grid { grid-template-columns: 1fr; } }

/* Block header */
.vtr-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.vtr-block-header .vtr-block-title { margin-bottom: 0; }
.vtr-block-count {
    background: #eff6ff;
    color: var(--vtr-green);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Зупинки */
.vtr-stop {
    display: grid;
    grid-template-columns: 24px 1fr 28px;
    gap: 12px;
    align-items: flex-start;
    padding: 8px 0;
}
.vtr-stop-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}
.vtr-stop-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: 2px solid #9ca3af;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.vtr-stop--first .vtr-stop-dot { background: #4ade80; border-color: #16a34a; width: 16px; height: 16px; }
.vtr-stop--last  .vtr-stop-dot { background: #f87171; border-color: #dc2626; width: 16px; height: 16px; }
.vtr-stop-line { width: 2px; flex: 1; background: #e5e7eb; margin-top: 4px; min-height: 24px; }
.vtr-stop-name  { font-size: 14px; font-weight: 600; color: #0d1f3c; }
.vtr-stop-street{ font-size: 12px; color: #6b7280; margin-top: 2px; }
.vtr-stop-time  { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.vtr-stop-index { font-size: 11px; color: #9ca3af; background: #f3f4f6; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Розклад */
.vtr-sched-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.vtr-sched-info-item {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    flex: 1;
    min-width: 140px;
}
.vtr-sched-day   { font-size: 11px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.vtr-sched-times { font-size: 14px; font-weight: 700; color: #0d1f3c; }
.vtr-schedule-legend {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 11px;
}
.vtr-schedule-legend .vtr-time { font-size: 11px; padding: 3px 8px; cursor: default; }
.vtr-sched-note {
    margin-top: 10px;
    padding: 10px 14px;
    background: #fef9c3;
    border-radius: 8px;
    font-size: 13px;
    color: #92400e;
}

/* Як проїхати */
.vtr-howto-block { background: #eff6ff; border-color: #bfdbfe; }
.vtr-howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media(max-width:560px) { .vtr-howto-grid { grid-template-columns: 1fr; } }
.vtr-howto-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    position: relative;
}
.vtr-howto-num {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 24px;
    background: var(--vtr-green);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.vtr-howto-icon { font-size: 28px; margin: 10px 0 6px; }
.vtr-howto-card strong { display: block; font-size: 13px; color: #0d1f3c; margin-bottom: 4px; }
.vtr-howto-card p { font-size: 12px; color: #6b7280; margin: 0; }

/* Нотатки */
.vtr-notes-box {
    background: #fef9c3;
    border-left: 3px solid #fbbf24;
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 12px;
}
.vtr-post-content { font-size: 14px; color: #374151; line-height: 1.7; }

/* САЙДБАР WIDGETS */
.vtr-widget {
    background: #fff;
    border: 1px solid var(--vtr-border);
    border-radius: var(--vtr-radius);
    padding: 18px;
    margin-bottom: 16px;
}
.vtr-widget-title {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}
.vtr-widget-links {
    list-style: none;
    margin: 0; padding: 0;
}
.vtr-widget-links li { margin-bottom: 2px; }
.vtr-widget-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all .15s;
}
.vtr-widget-links a:hover { background: #eff6ff; color: var(--vtr-green); padding-left: 12px; }
.vtr-widget-links a span { font-size: 11px; color: #9ca3af; }

/* Графік */
.vtr-widget--schedule { background: #f9fafb; }
.vtr-ws-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 0.5px solid #e5e7eb; font-size: 13px; }
.vtr-ws-row:last-child { border-bottom: none; }
.vtr-ws-day  { color: #6b7280; font-weight: 600; }
.vtr-ws-time { color: #0d1f3c; font-weight: 700; }

/* Схожі маршрути */
.vtr-related-list { display: flex; flex-direction: column; gap: 6px; }
.vtr-related-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    transition: all .15s;
    border: 1px solid transparent;
}
.vtr-related-item:hover { background: #eff6ff; border-color: #bfdbfe; }
.vtr-rel-num   { font-size: 12px; font-weight: 700; color: var(--vtr-green); }
.vtr-rel-route { font-size: 12px; color: #6b7280; }

/* ════ КАТЕГОРІЇ ТРАНСПОРТУ (archive) ════ */
.vtr-type-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0 20px;
}
@media(max-width:700px){ .vtr-type-cats { grid-template-columns: repeat(2,1fr); } }

.vtr-type-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px 14px 18px;
    background: color-mix(in srgb, var(--tc, #0057B7) 8%, #fff);
    border: 2px solid color-mix(in srgb, var(--tc, #0057B7) 20%, transparent);
    border-radius: 16px;
    text-decoration: none;
    text-align: center;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.vtr-type-cat::before {
    content:'';position:absolute;top:0;left:0;right:0;height:4px;
    background:var(--tc,#0057B7);transform:scaleX(0);transition:.2s;
    border-radius:16px 16px 0 0;
}
.vtr-type-cat:hover, .vtr-type-cat--active {
    background: color-mix(in srgb, var(--tc, #0057B7) 14%, #fff);
    border-color: var(--tc,#0057B7);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--tc, #0057B7) 20%, transparent);
    transform: translateY(-3px);
}
.vtr-type-cat:hover::before, .vtr-type-cat--active::before { transform:scaleX(1); }
.vtr-tc-icon {
    font-size:36px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}
.vtr-tc-name {
    font-size:13px;
    font-weight:700;
    color:#0d1f3c;
}
.vtr-tc-cnt {
    font-size:11px;
    color: var(--tc, #0057B7);
    background: color-mix(in srgb, var(--tc, #0057B7) 12%, #fff);
    padding:2px 10px;
    border-radius:10px;
    font-weight:600;
}

/* ════ HERO TITLE — білий ════ */
.vtr-hero-title { color: #ffffff !important; }
.vtr-hero-sub   { color: rgba(255,255,255,.85) !important; }

/* ════ TYPE BADGE кліковний ════ */
.vtr-type-badge--link {
    text-decoration: none;
    transition: background .15s;
    cursor: pointer;
}
.vtr-type-badge--link:hover { background: rgba(255,255,255,.25); }

/* ════ STOP NAME посилання ════ */
.vtr-stop-name--link {
    color: #0d1f3c;
    text-decoration: none;
    border-bottom: 1px dashed #bfdbfe;
    transition: color .15s, border-color .15s;
}
.vtr-stop-name--link:hover {
    color: var(--vtr-green);
    border-color: var(--vtr-green);
}

/* ════ SIBLINGS в taxonomy ════ */
.vtr-tax-siblings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--vtr-border);
    border-radius: 12px;
}

/* ════ STOP ROUTES GRID ════ */
.vtr-stop-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media(max-width:760px){ .vtr-stop-routes-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .vtr-stop-routes-grid { grid-template-columns: 1fr; } }

/* ════ АДАПТИВ hero — фіксуємо overflow ════ */
@media(max-width:700px) {
    .vtr-route-visual { flex-wrap: wrap; gap: 8px; }
    .vtr-route-line   { display: none; }
    .vtr-hero-params  { grid-template-columns: 1fr 1fr; }
    .vtr-param-card   { padding: 10px; }
    .vtr-pc-val       { font-size: 16px; }
    .vtr-single-title { font-size: 22px; }
    .vtr-title-route  { font-size: 14px; }
    .vtr-hero-num-badge { font-size: 13px; }
}

/* ============================================================
   БЛОК ЗУПИНОК — архів транспорту
   ============================================================ */
.vtr-stops-cloud-section {
    margin: 32px 0 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--vtr-border);
}
.vtr-stops-cloud-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0d1f3c;
    margin: 0 0 16px;
}
.vtr-stops-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.vtr-stop-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #0057B7;
    text-decoration: none;
    transition: all .15s;
}
.vtr-stop-pill::before {
    content: '🚏';
    font-size: 11px;
}
.vtr-stop-pill:hover {
    background: #0057B7;
    border-color: #0057B7;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Пагінація */
.vtr-pagination { margin: 32px 0; text-align: center; }
.vtr-pagination .page-numbers {
    display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: center;
}
.vtr-pagination .page-numbers li a,
.vtr-pagination .page-numbers li span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 12px;
    border: 1.5px solid var(--vtr-border); border-radius: 8px;
    font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
    color: #374151; text-decoration: none; transition: all .15s;
}
.vtr-pagination .page-numbers li a:hover { border-color: #0057B7; color: #0057B7; }
.vtr-pagination .page-numbers li span.current {
    background: #0057B7; border-color: #0057B7; color: #fff;
}
.vtr-pagination .page-numbers li span.dots { border: none; }

/* Таблетки районів */
.vtr-district-pill {
    background: #f0fdf4 !important;
    border-color: #bbf7d0 !important;
    color: #15803d !important;
}
.vtr-district-pill:hover {
    background: #15803d !important;
    border-color: #15803d !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.vtr-pill-cnt {
    font-size: 11px;
    opacity: .7;
    margin-left: 3px;
}