.station-list-page-wrapper {
    margin: 4rem 0;
}

.station-list-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;

    @media (min-width: 768px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.station-list-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 10rem;
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.5);
    transition: all 0.1s linear;
    text-decoration: none;
    color: #404040;
    background: #e3e3e3;
    :hover {
        box-shadow: 15px 15px 15px 0px rgba(0,0,0,0.5);
        transform: scale(1.05);
        transition: all 0.1s linear;
    }
}

.station-list-image {
    width: 100%;
    height: 100%;
    min-height: 5rem;
    
    img {
        object-fit: cover;
        height: 100%;
    }
}

.station-list-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));

    h3 {
        color: var(--text-accent);
    }
}