.routes-hero {
    padding: 60px 0;
    text-align: center;
}

.routes-intro {
    font-size: 18px;
    color: #555;
    margin-top: -20px;
    margin-bottom: 30px;
}

.map-summary-block {
    background: white;
}

.map-container-routes {
    height: 500px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.map-placeholder-routes {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a4c4db 0%, #7496ad 100%); 
    color: white;
    font-size: 24px;
    padding: 20px;
    text-align: center;
}

.route-details-block {
    background: #f8f9fa;
}

.route-region {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #1e3c72;
}

.region-title {
    font-size: 30px;
    color: #ff6b35; 
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
}

.region-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.route-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.route-card {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.route-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.route-icon {
    font-size: 24px; 
}

.route-card strong {
    font-size: 16px;
    color: #1e3c72;
    flex-shrink: 0;
}

.route-card span:last-child {
    font-size: 14px;
    color: #777;
    flex-grow: 1;
    text-align: right;
}

@media (max-width: 600px) {
    .map-container-routes {
        height: 300px;
    }
    .route-cards-grid {
        grid-template-columns: 1fr;
    }
}