<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS for cards */
.card {
    border: 1px solid #ccc;
    padding: 0.75em;
    margin-bottom: 1em;
    border-radius: 4px;
    background-color: #fff;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-title a {
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.card-title a:hover {
    text-decoration: underline;
}

/* CSS for card tags */
.card-tags {
    margin-top: 0.5em;
}

.card-tags .tag {
    display: inline-block;
    background-color: #eee;
    color: #333;
    font-size: 0.8em;
    padding: 0.2em 0.5em;
    border-radius: 3px;
    margin-right: 0.3em;
    margin-bottom: 0.3em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
</pre></body></html>