/* ===== Station Page - Card Style ===== */

        /* Lead Section */
        .stn-lead {
            padding: 56px 0 0;
            text-align: center;
        }
        .stn-lead .container {
            max-width: 820px;
        }
        .stn-lead__text {
            font-size: 16px;
            line-height: 2;
            color: var(--thm-gray);
        }

        /* Quick Navigation Cards */
        .stn-nav {
            padding: 40px 0 48px;
        }
        .stn-nav .container {
            max-width: 1100px;
        }
        .stn-nav__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .stn-nav__card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #c5cdd8;
            text-decoration: none;
            transition: all .3s;
        }
        .stn-nav__card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,.08);
            border-color: var(--thm-primary-color);
            transform: translateY(-2px);
        }
        .stn-nav__card-num {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--thm-primary-color);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
        }
        .stn-nav__card-body {
            flex: 1;
            min-width: 0;
        }
        .stn-nav__card-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--thm-black);
            margin-bottom: 2px;
        }
        .stn-nav__card-sub {
            font-size: 12px;
            color: var(--thm-gray);
        }
        .stn-nav__card-arrow {
            flex-shrink: 0;
            font-size: 14px;
            color: var(--thm-primary-color);
        }

        /* Station Card Block */
        .stn-card {
            padding: 80px 0;
        }
        .stn-card:nth-child(even) {
            background: #f7f9fc;
        }
        .stn-card .container {
            max-width: 1100px;
        }

        /* Section Header */
        .stn-card__header {
            margin-bottom: 32px;
        }
        .stn-card__sub {
            font-size: 12px;
            font-weight: 600;
            color: var(--thm-primary-color);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .stn-card__title {
            font-size: 26px;
            font-weight: 700;
            color: var(--thm-black);
            line-height: 1.4;
            margin: 0;
        }

        /* Image */
        .stn-card__img {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 32px;
        }
        .stn-card__img img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }

        /* Body: 2 columns - Info + Map */
        .stn-card__body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: stretch;
        }

        /* Left: Description + Info */
        .stn-card__catch {
            font-size: 20px;
            font-weight: 700;
            color: var(--thm-black);
            margin: 0 0 12px;
            line-height: 1.5;
        }
        .stn-card__desc {
            font-size: 15px;
            line-height: 1.9;
            color: var(--thm-gray);
            margin-bottom: 24px;
        }

        /* Info Table */
        .stn-card__info {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #c5cdd8;
        }
        .stn-card:nth-child(even) .stn-card__info {
            background: #fff;
        }
        .stn-card__info-row {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            border-bottom: 1px solid #f0f2f5;
        }
        .stn-card__info-row:last-child {
            border-bottom: none;
        }
        .stn-card__info-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--thm-primary-color);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            margin-right: 14px;
        }
        .stn-card__info-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--thm-black);
            min-width: 72px;
            margin-right: 12px;
        }
        .stn-card__info-value {
            font-size: 14px;
            color: var(--thm-gray);
            flex: 1;
            line-height: 1.5;
        }
        .stn-card__info-value a {
            color: var(--thm-primary-color);
            font-weight: 600;
            text-decoration: none;
        }

        /* Right: Map */
        .stn-card__map {
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #c5cdd8;
            display: flex;
        }
        .stn-card__map iframe {
            width: 100%;
            height: 100%;
            min-height: 320px;
            border: none;
            display: block;
            flex: 1;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .stn-card {
                padding: 56px 0;
            }
            .stn-card__img img {
                height: 300px;
            }
            .stn-card__body {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .stn-card__map iframe {
                min-height: 280px;
            }
        }
        @media (max-width: 767px) {
            .stn-card {
                padding: 40px 0;
            }
            .stn-nav__grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .stn-card__title {
                font-size: 22px;
            }
            .stn-card__img img {
                height: 240px;
            }
            .stn-card__map iframe {
                min-height: 240px;
            }
        }