.bookmark { display: grid; align-items: center; gap: 0px 0px; grid-template-areas: "title title" "description description" "href href" "date tags" "actions actions"; form & { grid-template-areas: "title" "description" "href" "tags" "actions"; } margin-bottom: 1em; padding: 0; border: 2px solid #540B0E; background-color: #FFF3B0; border-radius: 7px; overflow: hidden; a { &, &:active, &:visited { color: #9E2A2B; } &:hover { color: #000; } } &-title { margin: 0; padding: 1ex; background-color: #E09F3E; grid-area: title; font-weight: bold; } &-href, &-description, &-date, &-tags { padding: 1ex; margin: 0; } &-href, &-description, &-date { font-size: 0.9em; } &-href { grid-area: href; } &-description { grid-area: description; > p { border-left: 3px solid #9E2A2B; margin: 0; padding: 0.5ex 0 0.5ex 1ex; } } &-actions { grid-area: actions; } &-date { grid-area: date; } &-tags { grid-area: tags; font-size: 0.8em; text-align: right; form & { font-size: 0.9em; text-align: left; } } &-tag { display: inline-block; padding: 0.5ex 0.8ex; margin: 0 0 0.2ex 0; border-radius: 7px; background-color: #9E2A2B; color: #FFF3B0; } }