.stations-container {

    .station-text {
        color: var(--primary-text-color);
        font-weight: 400;
        font-size: 16px;
    }

    .stations-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;

        @media screen and (max-width: 500px) {
            grid-template-columns: 1fr;
        }

        .card-item {
            height: 56px;
            background: var(--card-background-color);
            display: flex;
            justify-content:  space-between;
            align-items: center;
            border-radius: 12px;
            border: 1px solid var(--card-border-color);
            cursor: pointer;
            padding: 0 15px;
            gap: 10px;

            &:hover {
                box-shadow:
                        0 4px 8px 0 rgba(8, 35, 48, 0.06),
                        0 0 4px 0 rgba(8, 35, 48, 0.04);
            }

            span:nth-child(1) {
                font-weight: 600;
                font-size: 16px;
                color: var(--primary-text-color);
            }

            span:nth-child(2) {
                font-weight: 400;
                font-size: 14px;
                color: var(--secondary-text-color);
                white-space: nowrap;
            }
        }
    }

    .map-details-block-top {
        font-weight: 700;
        font-size: 16px;
        color: var(--primary-text-color);
        display: flex !important;
        text-align: center;
    }

    .map-details-block-bottom {

        @media screen and (max-width: 500px) {
            height: 135px !important;
            align-items: flex-start !important;
        }
        .flex-block {
            @media screen and (max-width: 500px) {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }
        }
    }

    .stations-structure {
        display: flex;
        gap: 20px;

        @media screen and (max-width: 500px) {
            flex-direction: column;
            gap: 10px
        }

        img {
            width: 250px;
            @media screen and (max-width: 500px) {
                width: 100%;
            }
        }

        span {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-text-color);
        }
    }

}

/* Убираем подчеркивание у карточек сейсмостанций */
.stations-cards .card-item {
    text-decoration: none;

}

/* При наведении — лёгкий акцент, без подчёркивания */
.stations-cards .card-item:hover {
    background: #f0f7f8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    text-decoration: none;
}

