/* Основной блок вокзалов */
.stations-block {
    padding: 50px 20px;
    min-width: 800px;
}

.stations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stations-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.stations-title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.stations-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    text-align: center;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Таблица */
.stations-table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.stations-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.stations-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
}

.stations-table thead th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #1e3a8a;
}

.stations-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.stations-table tbody tr:hover {
    background-color: #f1f5f9;
}

.stations-table tbody tr:last-child {
    border-bottom: none;
}

.stations-table tbody td {
    padding: 16px 12px;
    color: #334155;
    line-height: 1.5;
    vertical-align: top;
}

.stations-table tbody td strong {
    color: #1e40af;
    font-weight: 600;
    font-size: 15px;
}

/* Адаптивность для планшетов */
@media screen and (max-width: 1024px) {
    .stations-table {
        font-size: 13px;
    }
    
    .stations-table thead th,
    .stations-table tbody td {
        padding: 12px 8px;
    }
}

/* Адаптивность для минимальной ширины 800px */
@media screen and (max-width: 900px) {
    .stations-block {
        min-width: 800px;
        overflow-x: auto;
    }
    
    .stations-title {
        font-size: 28px;
    }
    
    .stations-intro {
        font-size: 15px;
    }
}

/* Акцентные элементы */
.stations-table tbody td:first-child {
    background: linear-gradient(90deg, #eff6ff 0%, transparent 100%);
}