.domain-list-section .domain-list-grid { column-count: 2; column-gap: 2rem; }
.domain-list-item { display: flex; flex-direction: row; align-items: flex-start; gap: 1rem; break-inside: avoid; margin-bottom: 1.25rem; }
.domain-list-item:last-child { margin-bottom: 0; }
.domain-list-thumbnail { flex-shrink: 0; width: 56px; height: 56px; display: block; border-radius: 4px; overflow: hidden; }
.domain-list-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }
.domain-list-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.domain-list-title { font-size: 1.05rem; font-weight: 600; margin: 0 0 0.25rem 0; line-height: 1.3; text-decoration: none; color: inherit; }
.domain-list-title:hover { text-decoration: underline; }
.domain-list-excerpt {
    font-size: 0.9rem; margin: 0; line-height: 1.4; color: #666;
    line-clamp: 2; display: -webkit-box; -webkit-line-clamp: 2;
    /* stylelint-disable-next-line property-no-vendor-prefix */
    -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 768px) { .domain-list-section .domain-list-grid { column-count: 1; } }