.story-grid {
    grid-auto-rows: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card:nth-child(n) {
    grid-area: auto;
    min-height: 430px;
}

.story-vow {
    background: url(./zone-2.png) center / cover no-repeat;
}

.story-taiwan {
    background: url(./history.png) center / cover no-repeat;
}

.story-education {
    background: url(./zone-3.png) center / cover no-repeat;
}

.story-culture {
    background: url(./zone-7.png) center / cover no-repeat;
}

.story-memorial {
    background: url(./zone-4.png) center / cover no-repeat;
}

.story-lamps {
    background: url(./zone-8.png) center / cover no-repeat;
}

@media (max-width: 1100px) {
    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-card:nth-child(n) {
        min-height: 390px;
    }
}
