/* =========================================================
   🚲 RAIL TRAIL POINT MODAL (Airbnb Style)
   ========================================================= */

   #station-sheet {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 95vw;
    max-width: 600px;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
    z-index: 5500;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    overflow: hidden;
    color: #f1f5f9;
}

#station-sheet.station-sheet-active {
    transform: translateX(-50%) translateY(0);
}

.station-carousel {
    position: relative;
    height: 220px;
    background: #000;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel-track img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.station-details {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr; 
    gap: 10px;
    padding: 24px 15px;
    align-items: center;
}

/* Typography & Buttons */
.col-main h2 { margin: 0; font-size: 1.1rem; color: #ffd700; }
.line-tag { font-size: 0.65rem; text-transform: uppercase; color: #94a3b8; margin: 4px 0; }
.sponsor-logo { max-height: 50px; width: auto; filter: drop-shadow(0 0 5px rgba(255,255,255,0.1)); }
#station-sponsor-text { font-size: 0.85rem; font-style: italic; color: #cbd5e1; text-align: center; }

/* Navigation */
.nav-arrow {
    background: #ffd700;
    color: #1a202c;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drawer */
.description-drawer {
    max-height: 0;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.description-drawer.is-expanded {
    max-height: 400px;
}