.mr-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--md-default-fg-color--lightest);
    border-radius: 16px;

    text-decoration: none;
    color: inherit;

    transition: 0.2s ease;
    margin: 1rem 0;
}

.mr-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mr-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.mr-content {
    flex: 1;
}

.mr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mr-header h3 {
    margin: 0;
}

.mr-type {
    opacity: 0.75;
    font-size: 0.85rem;
}

.mr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.mr-tag {
    background: var(--md-primary-fg-color);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.mr-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0.8;
    font-size: 0.9rem;
}
