.poem-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.poem-list a {
    min-height: 56px;
    padding: 10px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1.45;
}

.poem-list a:nth-child(4n + 1),
.poem-list a:nth-child(4n + 2) {
    background: #f7f8fb;
}

.poem-list a:hover {
    color: var(--accent);
    background: var(--accent-soft);
}

.option-card h3 a {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 7px 14px;
    border: 1px dashed var(--line-strong);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
}

.option-card h3 a.active {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 760px) {
    .poem-list {
        grid-template-columns: 1fr;
    }
}
