/* Optional: Add some basic styling if needed beyond Tailwind's prose */
.prose {
    line-height: 1.7; /* Adjust line height for readability */
}

/* Style for the archive list */
.archive-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem; /* p-3 */
    border-radius: 0.375rem; /* rounded-md */
    transition: background-color 0.2s ease-in-out;
}

.archive-list a:hover {
    background-color: #f1f5f9; /* slate-100 */
}

.archive-list span:first-child { /* Article title */
    color: #1e293b; /* slate-800 */
    font-weight: 500; /* font-medium */
}
.archive-list a:hover span:first-child {
     color: #2d545e; /* dialogus-dark */
}


.archive-list span:last-child { /* Date */
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* slate-500 */
}

.archive-list a:hover span:last-child {
    color: #475569; /* slate-600 */
}

